@ruby-fast/lsp 0.2.1 → 0.2.2

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/bin/ruby-fast-lsp CHANGED
@@ -35,6 +35,11 @@ function getBinaryPath() {
35
35
  process.exit(1);
36
36
  }
37
37
 
38
+ // npm strips execute permissions from published files
39
+ if (process.platform !== "win32") {
40
+ fs.chmodSync(binPath, 0o755);
41
+ }
42
+
38
43
  return binPath;
39
44
  } catch {
40
45
  console.error(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruby-fast/lsp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "A fast Language Server Protocol implementation for Ruby",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -15,9 +15,9 @@
15
15
  "README.md"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "@ruby-fast/lsp-darwin-arm64": "0.2.1",
19
- "@ruby-fast/lsp-darwin-x64": "0.2.1",
20
- "@ruby-fast/lsp-linux-x64": "0.2.1",
21
- "@ruby-fast/lsp-win32-x64": "0.2.1"
18
+ "@ruby-fast/lsp-darwin-arm64": "0.2.2",
19
+ "@ruby-fast/lsp-darwin-x64": "0.2.2",
20
+ "@ruby-fast/lsp-linux-x64": "0.2.2",
21
+ "@ruby-fast/lsp-win32-x64": "0.2.2"
22
22
  }
23
23
  }