vscode/scripts/code-web.bat

21 lines
359 B
Batchfile
Raw Normal View History

2021-10-20 16:42:13 +00:00
@echo off
setlocal
title VSCode Web Serverless
2021-10-20 16:42:13 +00:00
pushd %~dp0\..
2021-10-20 16:42:13 +00:00
:: Sync built-in extensions
call yarn download-builtin-extensions
:: Download nodejs executable for remote
call yarn gulp node
:: Launch Server
FOR /F "tokens=*" %%g IN ('node build/lib/node.js') do (SET NODE=%%g)
call "%NODE%" resources\web\bin-dev\code-web-playground.js %*
2021-10-20 16:42:13 +00:00
popd
endlocal