mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
28 lines
No EOL
515 B
Batchfile
28 lines
No EOL
515 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
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
|
|
|
|
:: Build
|
|
if not exist out node .\node_modules\gulp\bin\gulp.js compile
|
|
|
|
:: Configuration
|
|
set NODE_ENV=development
|
|
set VSCODE_DEV=1
|
|
set ELECTRON_DEFAULT_ERROR_MODE=1
|
|
set ELECTRON_ENABLE_LOGGING=1
|
|
set ELECTRON_ENABLE_STACK_DUMPING=1
|
|
|
|
:: Launch Code
|
|
.\.build\electron\electron.exe . %*
|
|
popd
|
|
|
|
endlocal |