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
commit 0ae73a5a9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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."