Merge pull request #29650 from Microsoft/gulpMinParallel

Make 'gulp min' build tsc/tsserver in parallel
This commit is contained in:
Ron Buckton
2019-01-30 13:49:26 -08:00
committed by GitHub

View File

@@ -232,7 +232,7 @@ task("watch-tsserver").flags = {
" --built": "Compile using the built version of the compiler."
}
task("min", series(lkgPreBuild, buildTsc, buildServer));
task("min", series(lkgPreBuild, parallel(buildTsc, buildServer)));
task("min").description = "Builds only tsc and tsserver";
task("min").flags = {
" --built": "Compile using the built version of the compiler."