@github/copilot-language-server 1.312.0 → 1.313.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.
- package/dist/main.js +379 -382
- package/dist/main.js.map +3 -3
- package/native/darwin-arm64/copilot-language-server +0 -0
- package/native/darwin-x64/copilot-language-server +0 -0
- package/native/linux-arm64/copilot-language-server +0 -0
- package/native/linux-x64/copilot-language-server +0 -0
- package/native/win32-x64/copilot-language-server.exe +0 -0
- package/package.json +2 -23
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -11,20 +11,7 @@
|
|
|
11
11
|
"url": "git+https://github.com/github/copilot-language-server-release.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features",
|
|
14
|
-
"version": "1.
|
|
15
|
-
"pkg": {
|
|
16
|
-
"assets": [
|
|
17
|
-
"../dist/language-server.js.map",
|
|
18
|
-
"../dist/main.js*",
|
|
19
|
-
"../dist/tree-sitter*.wasm",
|
|
20
|
-
"../dist/compiled/**/*",
|
|
21
|
-
"../dist/bin/**/*",
|
|
22
|
-
"../dist/resources/*",
|
|
23
|
-
"../dist/debugServer.html",
|
|
24
|
-
"../dist/crypt32.node",
|
|
25
|
-
"../dist/api/types.d.ts"
|
|
26
|
-
]
|
|
27
|
-
},
|
|
14
|
+
"version": "1.313.0",
|
|
28
15
|
"bin": {
|
|
29
16
|
"copilot-language-server": "../dist/language-server.js"
|
|
30
17
|
},
|
|
@@ -44,14 +31,6 @@
|
|
|
44
31
|
"dependencies": {
|
|
45
32
|
"vscode-languageserver-protocol": "^3.17.5"
|
|
46
33
|
},
|
|
47
|
-
"
|
|
48
|
-
"pkg": "npm-run-all pkg:*",
|
|
49
|
-
"pkg:win32-x64": "tsx updateAssets.ts all-platforms win32-x64 && pkg --public --no-native-build -t win32-x64 --compress GZip --output native/win32-x64/copilot-language-server.exe . && tsx updateAssets.ts win32-x64 all-platforms",
|
|
50
|
-
"pkg:linux-x64": "tsx updateAssets.ts all-platforms linux-x64 && pkg --public --no-native-build -t linux-x64 --compress GZip --output native/linux-x64/copilot-language-server . && tsx updateAssets.ts linux-x64 all-platforms",
|
|
51
|
-
"pkg:linux-arm64": "tsx updateAssets.ts all-platforms linux-arm64 && pkg --public --no-native-build -t linux-arm64 --compress GZip --output native/linux-arm64/copilot-language-server . && tsx updateAssets.ts linux-arm64 all-platforms",
|
|
52
|
-
"pkg:darwin-x64": "tsx updateAssets.ts all-platforms darwin-x64 && pkg --public --no-native-build -t darwin-x64 --compress GZip --output native/darwin-x64/copilot-language-server . && tsx updateAssets.ts darwin-x64 all-platforms",
|
|
53
|
-
"pkg:darwin-arm64": "tsx updateAssets.ts all-platforms darwin-arm64 && pkg --public --no-native-build -t darwin-arm64 --compress GZip --output native/darwin-arm64/copilot-language-server . && tsx updateAssets.ts darwin-arm64 all-platforms"
|
|
54
|
-
},
|
|
55
|
-
"build": "1540",
|
|
34
|
+
"build": "1542",
|
|
56
35
|
"buildType": "prod"
|
|
57
36
|
}
|