mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 04:09:28 +00:00
Use local version of gulp in ./scripts/code.sh.
As with #3649 it removes the need for global installation of gulp. This was already the case for the windows, in ./scripts/code.bat.
This commit is contained in:
@@ -14,10 +14,10 @@ function code() {
|
|||||||
test -d node_modules || ./scripts/npm.sh install
|
test -d node_modules || ./scripts/npm.sh install
|
||||||
|
|
||||||
# Get electron
|
# Get electron
|
||||||
node node_modules/gulp/bin/gulp.js electron
|
./node_modules/.bin/gulp electron
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
test -d out || gulp compile
|
test -d out || ./node_modules/.bin/gulp compile
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
export NODE_ENV=development
|
export NODE_ENV=development
|
||||||
|
|||||||
Reference in New Issue
Block a user