vscode/scripts/code.bat

31 lines
675 B
Batchfile
Raw Normal View History

2015-11-13 14:39:38 +01:00
@echo off
title VSCode Dev
2015-11-26 09:29:43 +01:00
pushd %~dp0\..
:: Node modules
if not exist node_modules call .\scripts\npm.bat install
:: Get electron
node .\node_modules\gulp\bin\gulp.js electron
2015-11-26 10:07:11 +01:00
:: Build
if not exist out node .\node_modules\gulp\bin\gulp.js compile
2015-11-26 09:29:43 +01:00
:: Configuration
2015-11-13 14:39:38 +01:00
set NODE_ENV=development
set VSCODE_DEV=1
set ELECTRON_DEFAULT_ERROR_MODE=1
2015-11-13 14:39:38 +01:00
set ELECTRON_ENABLE_LOGGING=1
set ELECTRON_ENABLE_STACK_DUMPING=1
2015-11-26 09:29:43 +01:00
:: Launch Code
2016-01-13 11:11:36 +01:00
.\.build\electron\electron.exe . %*
2015-11-13 14:39:38 +01:00
popd
:: Unset environment variables after we are done
set NODE_ENV=
set VSCODE_DEV=
set ELECTRON_DEFAULT_ERROR_MODE=
set ELECTRON_ENABLE_LOGGING=
set ELECTRON_ENABLE_STACK_DUMPING=