emacs-lsp-proxy 0.5.7 → 0.5.8
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 +1 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -64,14 +64,7 @@ You can download the prebuilt binary from [releases](https://github.com/jadestro
|
|
|
64
64
|
- Recommend
|
|
65
65
|
``` elisp
|
|
66
66
|
(package! lsp-proxy :recipe (:host github :repo "jadestrong/lsp-proxy"
|
|
67
|
-
:files ("
|
|
68
|
-
```
|
|
69
|
-
- Manually
|
|
70
|
-
```elisp
|
|
71
|
-
|
|
72
|
-
(package! lsp-proxy :recipe (:host github :repo "jadestrong/lsp-proxy"
|
|
73
|
-
:files ("lsp-proxy.el" "emacs-lsp-proxy")
|
|
74
|
-
:pre-build (("cargo" "build" "--release") ("cp" "./target/release/emacs-lsp-proxy" "./"))))
|
|
67
|
+
:files ("*.el"))
|
|
75
68
|
```
|
|
76
69
|
|
|
77
70
|
``` elisp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emacs-lsp-proxy",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node ./install.js"
|
|
6
6
|
},
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
],
|
|
18
18
|
"author": "jadestrong",
|
|
19
19
|
"optionalDependencies": {
|
|
20
|
-
"@emacs-lsp-proxy/darwin-x64": "0.5.
|
|
21
|
-
"@emacs-lsp-proxy/darwin-arm64": "0.5.
|
|
22
|
-
"@emacs-lsp-proxy/linux-x64": "0.5.
|
|
23
|
-
"@emacs-lsp-proxy/linux-arm64": "0.5.
|
|
24
|
-
"@emacs-lsp-proxy/win32-x64": "0.5.
|
|
20
|
+
"@emacs-lsp-proxy/darwin-x64": "0.5.8",
|
|
21
|
+
"@emacs-lsp-proxy/darwin-arm64": "0.5.8",
|
|
22
|
+
"@emacs-lsp-proxy/linux-x64": "0.5.8",
|
|
23
|
+
"@emacs-lsp-proxy/linux-arm64": "0.5.8",
|
|
24
|
+
"@emacs-lsp-proxy/win32-x64": "0.5.8"
|
|
25
25
|
},
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"description": "An LSP client for Emacs implemented in Rust."
|