Forráskód Böngészése

Update CONTRIBUTING.md

Alexandru Dima 8 éve
szülő
commit
7a30ac0613
1 módosított fájl, 23 hozzáadás és 6 törlés
  1. 23 6
      CONTRIBUTING.md

+ 23 - 6
CONTRIBUTING.md

@@ -21,16 +21,33 @@ These packages are described in the root file called `metadata.js` and it is pos
 
 ## Running the editor from source
 
-```bash
-# clone vscode
-/src> git clone https://github.com/Microsoft/vscode
+You need to have all the build setup of being able to build VS Code to be able to build the Monaco Editor.
 
-# install minimal npm deps for vscode
-/src/vscode> npm run monaco-editor-setup
+* Install all the prerequisites: https://github.com/Microsoft/vscode/wiki/How-to-Contribute#installing-prerequisites
 
+### OS X and Linux
+```
+/src> git clone https://github.com/microsoft/vscode
+/src> cd vscode
+# install npm deps for vscode
+/src/vscode> ./scripts/npm.sh install
 # start the compiler in the background
-/src/vscode> node_modules/.bin/gulp watch-client
+/src/vscode> npm run watch
+```
 
+### Windows
+```
+/src> git clone https://github.com/microsoft/vscode
+/src> cd vscode
+# install npm deps for vscode
+/src/vscode> scripts\npm.bat install
+# start the compiler in the background
+/src/vscode> npm run watch
+```
+
+* For the monaco editor test pages:
+
+```bash
 # clone monaco-editor (note the folders must be siblings!)
 /src> git clone https://github.com/Microsoft/monaco-editor