Skip to content

Commit

Permalink
Merge pull request microsoft#29650 from Microsoft/gulpMinParallel
Browse files Browse the repository at this point in the history
Make 'gulp min' build tsc/tsserver in parallel
  • Loading branch information
rbuckton authored Jan 30, 2019
2 parents 26e546a + 1515374 commit 0ae73a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 0ae73a5

Please sign in to comment.