cli-lsp-client 1.20.0 → 1.22.0

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/package.json +6 -6
  2. package/postinstall.mjs +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-lsp-client",
3
- "version": "1.20.0",
3
+ "version": "1.22.0",
4
4
  "description": "CLI tool supporting claude code hooks for fast LSP diagnostics with background daemon and multi-project support",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,10 +19,10 @@
19
19
  "postinstall": "node ./postinstall.mjs"
20
20
  },
21
21
  "optionalDependencies": {
22
- "cli-lsp-client-windows-x64": "1.20.0",
23
- "cli-lsp-client-linux-arm64": "1.20.0",
24
- "cli-lsp-client-linux-x64": "1.20.0",
25
- "cli-lsp-client-darwin-x64": "1.20.0",
26
- "cli-lsp-client-darwin-arm64": "1.20.0"
22
+ "cli-lsp-client-windows-x64": "1.22.0",
23
+ "cli-lsp-client-linux-arm64": "1.22.0",
24
+ "cli-lsp-client-linux-x64": "1.22.0",
25
+ "cli-lsp-client-darwin-x64": "1.22.0",
26
+ "cli-lsp-client-darwin-arm64": "1.22.0"
27
27
  }
28
28
  }
package/postinstall.mjs CHANGED
@@ -97,9 +97,8 @@ async function regenerateWindowsCmdWrappers() {
97
97
  async function stopExistingDaemons() {
98
98
  try {
99
99
  const { spawn } = require("child_process")
100
- const child = spawn("cli-lsp-client", ["stop-all"], { stdio: "inherit" })
101
- child.on("error", () => {})
102
- } catch (error) {
100
+ spawn("cli-lsp-client", ["stop-all"], { stdio: "ignore" })
101
+ } catch {
103
102
  // Ignore errors - daemon might not be running
104
103
  }
105
104
  }