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);