Skip to content

Commit

Permalink
Build: Run Gulp tasks sequentially (#11560) (#11564)
Browse files Browse the repository at this point in the history
  • Loading branch information
San4es authored Jan 17, 2020
1 parent 98226ec commit b461afc
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 @@ -52,7 +52,7 @@ function createMainBatch() {
}
tasks.push('style-compiler-batch', 'misc-batch');
return DOCKER_CI
? gulp.parallel(tasks)
? gulp.series(tasks)
: (callback) => multiProcess(tasks, callback, true);
}

Expand Down

0 comments on commit b461afc

Please sign in to comment.