mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
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.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user