From 85575c594d14d45516d2f491c0eb508a1a67d726 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 31 Oct 2019 17:58:54 -0700 Subject: [PATCH] Perform all npm operations sequentially --- gulpfile.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index 4c29137d..6f4b8f32 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -24,13 +24,13 @@ import * as internalTest from './test/gulpfile'; const root = __dirname; -const installAll = gulp.parallel(jsCore.install, nativeCore.install, healthCheck.install, protobuf.install, internalTest.install); +const installAll = gulp.series(jsCore.install, nativeCore.install, healthCheck.install, protobuf.install, internalTest.install); -const installAllWindows = gulp.parallel(jsCore.install, nativeCore.installWindows, healthCheck.install, protobuf.install, internalTest.install); +const installAllWindows = gulp.series(jsCore.install, nativeCore.installWindows, healthCheck.install, protobuf.install, internalTest.install); const lint = gulp.parallel(jsCore.lint, nativeCore.lint); -const build = gulp.parallel(jsCore.compile, nativeCore.build, protobuf.compile); +const build = gulp.series(jsCore.compile, nativeCore.build, protobuf.compile); const link = gulp.series(healthCheck.linkAdd); @@ -38,11 +38,11 @@ const setup = gulp.series(installAll, link); const setupWindows = gulp.series(installAllWindows, link); -const setupPureJSInterop = gulp.parallel(jsCore.install, protobuf.install, internalTest.install); +const setupPureJSInterop = gulp.series(jsCore.install, protobuf.install, internalTest.install); -const clean = gulp.parallel(jsCore.clean, nativeCore.clean, protobuf.clean); +const clean = gulp.series(jsCore.clean, nativeCore.clean, protobuf.clean); -const cleanAll = gulp.parallel(jsCore.cleanAll, nativeCore.cleanAll, healthCheck.cleanAll, internalTest.cleanAll, protobuf.cleanAll); +const cleanAll = gulp.series(jsCore.cleanAll, nativeCore.cleanAll, healthCheck.cleanAll, internalTest.cleanAll, protobuf.cleanAll); const nativeTestOnly = gulp.parallel(nativeCore.test, healthCheck.test);