@t1ckbase/vscode-langservers-extracted 2.0.2 → 2.0.4
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 +7 -5
- package/dist/cssServerMain.js +38 -40
- package/dist/htmlServerMain.js +59 -56
- package/dist/jsonServerMain.js +39 -39
- package/package.json +11 -11
- package/upstream.json +7 -0
package/README.md
CHANGED
|
@@ -3,16 +3,18 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@t1ckbase/vscode-langservers-extracted)
|
|
4
4
|
[](https://github.com/T1ckbase/vscode-langservers-extracted/actions/workflows/release.yaml)
|
|
5
5
|
|
|
6
|
-
A drop-in replacement for [@hrsh7th's `vscode-langservers-extracted`](https://github.com/hrsh7th/vscode-langservers-extracted).
|
|
6
|
+
A drop-in replacement for [@hrsh7th's `vscode-langservers-extracted`](https://github.com/hrsh7th/vscode-langservers-extracted), with special thanks for creating the original project.
|
|
7
7
|
|
|
8
8
|
The HTML, CSS, and JSON language servers are extracted from [VS Code](https://github.com/microsoft/vscode), while the ESLint language server is extracted from the [VS Code ESLint extension](https://github.com/microsoft/vscode-eslint). Markdown language server uses the official [`vscode-markdown-languageserver`](https://www.npmjs.com/package/vscode-markdown-languageserver) package.
|
|
9
9
|
|
|
10
|
+
Note that [`@zed-industries/vscode-langservers-extracted`](https://github.com/zed-industries/vscode-langservers-extracted) is tailored specifically for Zed and currently only includes the HTML language server.
|
|
11
|
+
|
|
10
12
|
## Patches
|
|
11
13
|
|
|
12
|
-
- HTML language server
|
|
13
|
-
- Fixed hardcoded TypeScript lib path.
|
|
14
|
-
-
|
|
15
|
-
-
|
|
14
|
+
- HTML language server:
|
|
15
|
+
- Fixed embedded JavaScript IntelliSense by replacing hardcoded TypeScript `lib` path with runtime resolution.
|
|
16
|
+
- Fixed Go to Definition by replacing VS Code's virtual TypeScript libs URI with `file` URI.
|
|
17
|
+
- Updated `lib` target to `ESNext`.
|
|
16
18
|
|
|
17
19
|
## Usage
|
|
18
20
|
|