Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/code-web.js')
-rw-r--r--scripts/code-web.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/code-web.js b/scripts/code-web.js
index 3a3e9017b4d..f12e6b9d34e 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -62,7 +62,7 @@ async function main() {
if (args['playground'] || args['_'].length === 0) {
serverArgs.push('--extensionPath', WEB_DEV_EXTENSIONS_ROOT);
serverArgs.push('--folder-uri', 'memfs:///sample-folder');
- await ensureWebDevExtensions(args['verbose'])
+ await ensureWebDevExtensions(args['verbose']);
}
let openSystemBrowser = false;
@@ -77,7 +77,7 @@ async function main() {
serverArgs.push('--sourcesPath', APP_ROOT);
- serverArgs.push(...process.argv.slice(2).filter(v => v !== '--playground'))
+ serverArgs.push(...process.argv.slice(2).filter(v => v !== '--playground'));
startServer(serverArgs);