Make 'gulp min' build tsc/tsserver in parallel

This commit is contained in:
Ron Buckton 2019-01-30 11:36:30 -08:00
parent e4f3b23e06
commit 1515374a2b

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