You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- For the native analysis binary tests: `cd analysis && make test`.
43
53
44
54
### Change the Grammar
45
55
@@ -157,5 +167,6 @@ Currently the release is vetted and done by @chenglou.
157
167
158
168
- Bump the version properly in `package.json` and lockfile and make a new commit.
159
169
- Make sure @ryyppy is aware of your changes. He needs to sync them over to the vim plugin.
170
+
- Download and unzip the 3 platforms' production binaries from the Github CI. Put them into `server/analysis_binaries`. Name them `darwin-run.exe`, `linux-run.exe` and `win32-run.exe`.
160
171
- Use `vsce publish` to publish. Official VSCode guide [here](https://code.visualstudio.com/api/working-with-extensions/publishing-extension). Only @chenglou has the publishing rights right now.
161
172
- Not done! Make a new manual release [here](https://github.com/rescript-lang/rescript-vscode/releases); use `vsce package` to package up a standalone `.vsix` plugin and attach it onto that new release. This is for folks who don't use the VSCode marketplace.
This subfolder builds a private command line binary used by the plugin to power a few functionalities such as jump to definition, hover and autocomplete.
4
+
5
+
The binary reads the `.cmt` and `.cmti` files and analyses them.
6
+
7
+
For installation & build instructions, see the main CONTRIBUTING.md.
8
+
9
+
## Overview
10
+
11
+
See main CONTRIBUTING.md's repo structure. Additionally, `examples/` is a convenience debugging repo. Check out `test.sh` (invoked through `make test`) to see the snapshots testing workflow stored in `tests/`.
12
+
13
+
## Usage
14
+
15
+
```sh
16
+
run.exe --help
17
+
```
18
+
19
+
## History
20
+
21
+
This project is based on a fork of [Reason Language Server](https://github.com/jaredly/reason-language-server).
0 commit comments