Skip to content

Commit 4f6e116

Browse files
author
Nikolay Kondratyev
committed
Use yarn compile for start scripts
1 parent 8892774 commit 4f6e116

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/code-cli.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if "%1"=="--builtin" goto builtin
2424
node build\lib\builtInExtensions.js
2525

2626
:: Build
27-
if not exist out node .\node_modules\gulp\bin\gulp.js compile
27+
if not exist out yarn compile
2828

2929
:: Configuration
3030
set ELECTRON_RUN_AS_NODE=1

scripts/code-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function code() {
3535
node build/lib/builtInExtensions.js
3636

3737
# Build
38-
test -d out || ./node_modules/.bin/gulp compile
38+
test -d out || yarn compile
3939

4040
ELECTRON_RUN_AS_NODE=1 \
4141
NODE_ENV=development \

scripts/code.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if "%1"=="--builtin" goto builtin
2424
node build\lib\builtInExtensions.js
2525

2626
:: Build
27-
if not exist out node .\node_modules\gulp\bin\gulp.js compile
27+
if not exist out yarn compile
2828

2929
:: Configuration
3030
set NODE_ENV=development

scripts/code.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function code() {
3939
node build/lib/builtInExtensions.js
4040

4141
# Build
42-
test -d out || ./node_modules/.bin/gulp compile
42+
test -d out || yarn compile
4343

4444
# Configuration
4545
export NODE_ENV=development

0 commit comments

Comments
 (0)