diff --git a/build/azure-pipelines/product-compile.yml b/build/azure-pipelines/product-compile.yml index 26caff0f2b1..ba5e76ec5df 100644 --- a/build/azure-pipelines/product-compile.yml +++ b/build/azure-pipelines/product-compile.yml @@ -87,11 +87,8 @@ steps: - script: | set -e - yarn gulp compile-build - yarn gulp compile-extensions-build - yarn gulp minify-vscode - yarn gulp minify-vscode-reh - yarn gulp minify-vscode-reh-web + yarn npm-run-all -lp compile-build compile-extensions-build + yarn npm-run-all -lp minify-vscode minify-vscode-reh minify-vscode-reh-web displayName: Compile - script: | diff --git a/package.json b/package.json index e743b896bf8..56703cd3dc8 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,12 @@ "watch-web": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js watch-web", "eslint": "eslint -c .eslintrc.json --rulesdir ./build/lib/eslint --ext .ts --ext .js ./src/vs ./extensions", "electron-rebuild": "electron-rebuild --arch=arm64 --force --version=11.1.0", - "playwright-install": "node node_modules/playwright/install.js" + "playwright-install": "node node_modules/playwright/install.js", + "compile-build": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile-build", + "compile-extensions-build": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile-extensions-build", + "minify-vscode": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode", + "minify-vscode-reh": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh", + "minify-vscode-reh-web": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web" }, "dependencies": { "applicationinsights": "1.0.8",