From b461afc494ede0cb433a425d347826397faa1130 Mon Sep 17 00:00:00 2001 From: Alexander Ziborov <1420883+San4es@users.noreply.github.com> Date: Fri, 17 Jan 2020 17:01:17 +0300 Subject: [PATCH] Build: Run Gulp tasks sequentially (#11560) (#11564) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a86998cc201c..e6833a1c9d57 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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); }