openplanet-lsp 0.2.0 → 0.2.6
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 +6 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -19,8 +19,14 @@ npm install --save-dev openplanet-lsp
|
|
|
19
19
|
openplanet-lsp # stdio LSP server
|
|
20
20
|
openplanet-lsp --version
|
|
21
21
|
openplanet-lsp check <path>
|
|
22
|
+
openplanet-lsp update --check
|
|
23
|
+
openplanet-lsp update
|
|
22
24
|
```
|
|
23
25
|
|
|
26
|
+
`update` reads the latest version from the npm registry, writes status to
|
|
27
|
+
`~/.config/openplanet-lsp/update-status.json`, and (without `--check`) runs the
|
|
28
|
+
install-method-specific upgrade command when one is known.
|
|
29
|
+
|
|
24
30
|
## Supported platforms
|
|
25
31
|
|
|
26
32
|
| Platform package | OS | Arch |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openplanet-lsp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Language Server Protocol implementation for OpenPlanet AngelScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openplanet",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"postinstall": "node ./lib/check-platform.js"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"openplanet-lsp-darwin-arm64": "0.2.
|
|
41
|
-
"openplanet-lsp-darwin-x64": "0.2.
|
|
42
|
-
"openplanet-lsp-linux-arm64": "0.2.
|
|
43
|
-
"openplanet-lsp-linux-x64": "0.2.
|
|
44
|
-
"openplanet-lsp-win32-arm64": "0.2.
|
|
45
|
-
"openplanet-lsp-win32-x64": "0.2.
|
|
40
|
+
"openplanet-lsp-darwin-arm64": "0.2.6",
|
|
41
|
+
"openplanet-lsp-darwin-x64": "0.2.6",
|
|
42
|
+
"openplanet-lsp-linux-arm64": "0.2.6",
|
|
43
|
+
"openplanet-lsp-linux-x64": "0.2.6",
|
|
44
|
+
"openplanet-lsp-win32-arm64": "0.2.6",
|
|
45
|
+
"openplanet-lsp-win32-x64": "0.2.6"
|
|
46
46
|
}
|
|
47
47
|
}
|