Skip to content

Commit bb87e70

Browse files
committed
Release 1.365.0
1 parent daea7e0 commit bb87e70

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,28 @@ To integrate with the Copilot Language Server, download the latest release from
1717
npm install @github/copilot-language-server
1818
```
1919

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:
2122
example, for macOS on arm64:
2223

2324
```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-*'
2534
```
2635

2736
Or you can use [Node.js](https://nodejs.org/en/download/) version 20.8 or later:
2837

38+
```sh
39+
npx @github/copilot-language-server --version
40+
```
41+
2942
```sh
3043
node ./node_modules/@github/copilot-language-server/dist/language-server.js --version
3144
```

0 commit comments

Comments
 (0)