We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072c788 commit 0b6f18fCopy full SHA for 0b6f18f
2 files changed
scripts/code.bat
@@ -9,6 +9,9 @@ if not exist node_modules call .\scripts\npm.bat install
9
:: Get electron
10
node .\node_modules\gulp\bin\gulp.js electron
11
12
+:: Build
13
+if not exist out node .\node_modules\gulp\bin\gulp.js compile
14
+
15
:: Configuration
16
set NODE_ENV=development
17
set VSCODE_DEV=1
scripts/code.sh
@@ -16,6 +16,9 @@ function code() {
# Get electron
node node_modules/gulp/bin/gulp.js electron
18
19
+ # Build
20
+ test -d out || gulp compile
21
22
# Configuration
23
export NODE_ENV=development
24
export VSCODE_DEV=1
0 commit comments