Skip to content

Commit

Permalink
Merge pull request #2706 from murgatroid99/build_order_fix
Browse files Browse the repository at this point in the history
Fix build order in root gulpfile to handle cross dependency
  • Loading branch information
murgatroid99 committed Apr 1, 2024
2 parents 74e4da5 + f7c3b3a commit be40682
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.ts
Expand Up @@ -23,15 +23,15 @@ import * as reflection from './packages/grpc-reflection/gulpfile';
import * as protobuf from './packages/proto-loader/gulpfile';
import * as internalTest from './test/gulpfile';

const installAll = gulp.series(jsCore.install, healthCheck.install, protobuf.install, internalTest.install, jsXds.install, reflection.install);
const installAll = gulp.series(protobuf.install, jsCore.install, healthCheck.install, internalTest.install, jsXds.install, reflection.install);

const lint = gulp.parallel(jsCore.lint);

const build = gulp.series(jsCore.compile, protobuf.compile, jsXds.compile);
const build = gulp.series(protobuf.compile, jsCore.compile, jsXds.compile);

const setup = gulp.series(installAll);

const setupPureJSInterop = gulp.series(jsCore.install, protobuf.install, internalTest.install);
const setupPureJSInterop = gulp.series(protobuf.install, jsCore.install, internalTest.install);

const clean = gulp.series(jsCore.clean, protobuf.clean, jsXds.clean);

Expand Down
1 change: 1 addition & 0 deletions packages/proto-loader/package.json
Expand Up @@ -59,6 +59,7 @@
"clang-format": "^1.2.2",
"gts": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "~4.7.4"
},
"engines": {
Expand Down

0 comments on commit be40682

Please sign in to comment.