-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b845a93
commit 4a85ac5
Showing
2 changed files
with
32 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
@echo off | ||
title VSCode Dev | ||
|
||
pushd %~dp0\.. | ||
|
||
:: Node modules | ||
if not exist node_modules call .\scripts\npm.bat install | ||
|
||
:: Get electron | ||
node .\node_modules\gulp\bin\gulp.js electron | ||
|
||
:: Configuration | ||
set NODE_ENV=development | ||
set VSCODE_DEV=1 | ||
set ELECTRON_ENABLE_LOGGING=1 | ||
set ELECTRON_ENABLE_STACK_DUMPING=1 | ||
|
||
pushd %~dp0\.. | ||
node .\node_modules\gulp\bin\gulp.js electron | ||
:: Launch Code | ||
.\.build\electron\CodeOSS.exe . %* | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters