Merge pull request #1145 from murgatroid99/no_parallel_npm

Perform all npm operations sequentially
This commit is contained in:
Michael Lumish 2019-11-01 09:48:26 -07:00 committed by GitHub
commit 82a33fea27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

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