openplanet-lsp 0.2.6 → 0.2.7

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -25,7 +25,8 @@ openplanet-lsp update
25
25
 
26
26
  `update` reads the latest version from the npm registry, writes status to
27
27
  `~/.config/openplanet-lsp/update-status.json`, and (without `--check`) runs the
28
- install-method-specific upgrade command when one is known.
28
+ install-method-specific upgrade command when one is known (npm / pnpm / yarn /
29
+ bun global or local, or cargo).
29
30
 
30
31
  ## Supported platforms
31
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openplanet-lsp",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
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.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"
40
+ "openplanet-lsp-darwin-arm64": "0.2.7",
41
+ "openplanet-lsp-darwin-x64": "0.2.7",
42
+ "openplanet-lsp-linux-arm64": "0.2.7",
43
+ "openplanet-lsp-linux-x64": "0.2.7",
44
+ "openplanet-lsp-win32-arm64": "0.2.7",
45
+ "openplanet-lsp-win32-x64": "0.2.7"
46
46
  }
47
47
  }