@kerebron/extension-lsp 0.4.31 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -26,9 +26,17 @@ number of output npm modules.
|
|
|
26
26
|
|
|
27
27
|
**Work in progress**
|
|
28
28
|
|
|
29
|
-
|
|
30
29
|
## Build
|
|
31
30
|
|
|
31
|
+
###
|
|
32
|
+
|
|
33
|
+
Update git submodules
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
git submodule init
|
|
37
|
+
git submodule update
|
|
38
|
+
```
|
|
39
|
+
|
|
32
40
|
### Build static examples and `.wasm` files
|
|
33
41
|
|
|
34
42
|
```sh
|
|
@@ -72,12 +80,12 @@ docker run -it -p 8000:8000 -v $PWD:/usr/src/app editor-test
|
|
|
72
80
|
|
|
73
81
|
Install deno
|
|
74
82
|
|
|
75
|
-
```
|
|
83
|
+
```sh
|
|
76
84
|
npm install -g deno
|
|
77
85
|
```
|
|
78
86
|
|
|
79
87
|
Install rust
|
|
80
88
|
|
|
81
|
-
```
|
|
89
|
+
```sh
|
|
82
90
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
83
91
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kerebron/extension-lsp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./esm/mod.js",
|
|
6
6
|
"exports": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"src"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kerebron/editor": "0.
|
|
24
|
-
"@kerebron/extension-autocomplete": "0.
|
|
25
|
-
"@kerebron/extension-markdown": "0.
|
|
23
|
+
"@kerebron/editor": "0.5.1",
|
|
24
|
+
"@kerebron/extension-autocomplete": "0.5.1",
|
|
25
|
+
"@kerebron/extension-markdown": "0.5.1",
|
|
26
26
|
"prosemirror-state": "1.4.3",
|
|
27
27
|
"prosemirror-view": "1.40.0",
|
|
28
28
|
"vscode-languageserver-protocol": "3.17.5"
|