mirror of
https://github.com/Microsoft/vscode
synced 2024-10-28 14:18:54 +00:00
fb76955440
* chore: bump electron@27.2.1 * chore: enable code cache support for custom standard schemes Refs267cbc841e
* chore: remove --ms-enable-electron-run-as-node Removed in favor off842ead6bc
* chore: update distro
37 lines
711 B
Batchfile
37 lines
711 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
title VSCode Dev
|
|
|
|
pushd %~dp0..
|
|
|
|
:: Get electron, compile, built-in extensions
|
|
if "%VSCODE_SKIP_PRELAUNCH%"=="" node build/lib/preLaunch.js
|
|
|
|
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
|
|
set NAMESHORT=%NAMESHORT: "=%
|
|
set NAMESHORT=%NAMESHORT:"=%.exe
|
|
set CODE=".build\electron\%NAMESHORT%"
|
|
|
|
:: Manage built-in extensions
|
|
if "%~1"=="--builtin" goto builtin
|
|
|
|
:: Configuration
|
|
set ELECTRON_RUN_AS_NODE=1
|
|
set NODE_ENV=development
|
|
set VSCODE_DEV=1
|
|
set ELECTRON_ENABLE_LOGGING=1
|
|
set ELECTRON_ENABLE_STACK_DUMPING=1
|
|
|
|
:: Launch Code
|
|
%CODE% --inspect=5874 out\cli.js %~dp0.. %*
|
|
goto end
|
|
|
|
:builtin
|
|
%CODE% build/builtin
|
|
|
|
:end
|
|
|
|
popd
|
|
|
|
endlocal
|