From 5410ba6ab37563b03dacf43323970850bbe63db4 Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Wed, 30 Jun 2021 16:12:10 +0100 Subject: [PATCH] Do trivial gulp tasks in parallel where possible N.B. can't run typings.typings and typings.msgTypings in parallel yet because the latter depends on the existence of an output directory created by the former. --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9f707bfa0..8c198cd86 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -32,9 +32,9 @@ module.exports = { buildCompressed: buildTasks.compressed, buildGenerators: buildTasks.generators, buildAdvancedCompilationTest: buildTasks.advancedCompilationTest, - checkin: gulp.series(buildTasks.checkinBuilt, typings.checkinTypings), + checkin: gulp.parallel(buildTasks.checkinBuilt, typings.checkinTypings), checkinBuilt: buildTasks.checkinBuilt, - clean: gulp.series(buildTasks.cleanBuildDir, packageTasks.cleanReleaseDir), + clean: gulp.parallel(buildTasks.cleanBuildDir, packageTasks.cleanReleaseDir), cleanBuildDir: buildTasks.cleanBuildDir, cleanReleaseDir: packageTasks.cleanReleaseDir, gitSyncDevelop: gitTasks.syncDevelop,