@@ -60,14 +60,14 @@ arguments when launching code-server with Docker. See
6060### Build
6161
6262See
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 )
6464before building.
6565
6666``` shell
6767export OUT=/path/to/output/build # Optional if only building. Required if also developing.
6868yarn build ${vscodeVersion} ${codeServerVersion} # See travis.yml for the VS Code version to use.
6969 # 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.
7171yarn binary ${vscodeVersion} ${codeServerVersion} # Or you can package it into a binary.
7272```
7373
@@ -135,7 +135,7 @@ data collected to improve code-server.
135135### Development
136136
137137See
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 )
139139before developing.
140140
141141``` shell
@@ -155,8 +155,7 @@ yarn start
155155```
156156
157157If 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.
160159
161160### Upgrading VS Code
162161
@@ -171,7 +170,6 @@ directory.
171170
172171Our changes include:
173172
174- - Change the remote schema to ` code-server ` .
175173- Allow multiple extension directories (both user and built-in).
176174- Modify the loader, websocket, webview, service worker, and asset requests to
177175 use the URL of the page as a base (and TLS if necessary for the websocket).
0 commit comments