@@ -60,14 +60,14 @@ arguments when launching code-server with Docker. See
60
60
### Build
61
61
62
62
See
63
- [ VS Code prerequisites] ( https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites )
63
+ [ VS Code's prerequisites] ( https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites )
64
64
before building.
65
65
66
66
``` shell
67
67
export OUT=/path/to/output/build # Optional if only building. Required if also developing.
68
68
yarn build ${vscodeVersion} ${codeServerVersion} # See travis.yml for the VS Code version to use.
69
69
# The code-server version can be anything you want.
70
- node ~ /path/to/output/build/out/vs/server/main.js # You can run the built JavaScript with Node.
70
+ node /path/to/output/build/out/vs/server/main.js # You can run the built JavaScript with Node.
71
71
yarn binary ${vscodeVersion} ${codeServerVersion} # Or you can package it into a binary.
72
72
```
73
73
@@ -135,7 +135,7 @@ data collected to improve code-server.
135
135
### Development
136
136
137
137
See
138
- [ VS Code prerequisites] ( https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites )
138
+ [ VS Code's prerequisites] ( https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites )
139
139
before developing.
140
140
141
141
``` shell
@@ -155,8 +155,7 @@ yarn start
155
155
```
156
156
157
157
If you run into issues about a different version of Node being used, try running
158
- ` npm rebuild ` in the VS Code directory and ignore the error at the end from
159
- ` vscode-ripgrep ` .
158
+ ` npm rebuild ` in the VS Code directory.
160
159
161
160
### Upgrading VS Code
162
161
@@ -171,7 +170,6 @@ directory.
171
170
172
171
Our changes include:
173
172
174
- - Change the remote schema to ` code-server ` .
175
173
- Allow multiple extension directories (both user and built-in).
176
174
- Modify the loader, websocket, webview, service worker, and asset requests to
177
175
use the URL of the page as a base (and TLS if necessary for the websocket).
0 commit comments