Skip to content

Commit 1515374

Browse files
committed
Make 'gulp min' build tsc/tsserver in parallel
1 parent e4f3b23 commit 1515374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ task("watch-tsserver").flags = {
232232
" --built": "Compile using the built version of the compiler."
233233
}
234234

235-
task("min", series(lkgPreBuild, buildTsc, buildServer));
235+
task("min", series(lkgPreBuild, parallel(buildTsc, buildServer)));
236236
task("min").description = "Builds only tsc and tsserver";
237237
task("min").flags = {
238238
" --built": "Compile using the built version of the compiler."

0 commit comments

Comments
 (0)