@github/copilot-language-server 1.364.0 → 1.366.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/README.md CHANGED
@@ -17,15 +17,28 @@ To integrate with the Copilot Language Server, download the latest release from
17
17
  npm install @github/copilot-language-server
18
18
  ```
19
19
 
20
- To run the language server, platform-specific binaries are available in the `native` directory of the npm package. For
20
+ To run the language server, platform-specific binaries are available as separate
21
+ packages included as optional dependencies. For example, [`@github/copilot-language-server-darwin-arm64`](https://www.npmjs.com/package/@github/copilot-language-server-darwin-arm64), for macOS on arm64:
21
22
  example, for macOS on arm64:
22
23
 
23
24
  ```sh
24
- ./node_modules/@github/copilot-language-server/native/darwin-arm64/copilot-language-server --version
25
+ ./node_modules/@github/copilot-language-server-darwin-arm64/copilot-language-server --version
26
+ ```
27
+
28
+ If repackaging the language server, all platform-specific binaries are available
29
+ in the releases: https://github.com/github/copilot-language-server-release/releases
30
+ For example, to download a zip of all of the binaries together:
31
+
32
+ ```
33
+ gh release download -R github/copilot-language-server-release -p 'copilot-language-server-native-*'
25
34
  ```
26
35
 
27
36
  Or you can use [Node.js](https://nodejs.org/en/download/) version 20.8 or later:
28
37
 
38
+ ```sh
39
+ npx @github/copilot-language-server --version
40
+ ```
41
+
29
42
  ```sh
30
43
  node ./node_modules/@github/copilot-language-server/dist/language-server.js --version
31
44
  ```