Skip to content

Commit f7c3b3a

Browse files
committed
Fix build order in root gulpfile to handle cross dependency
1 parent 74e4da5 commit f7c3b3a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

gulpfile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ import * as reflection from './packages/grpc-reflection/gulpfile';
2323
import * as protobuf from './packages/proto-loader/gulpfile';
2424
import * as internalTest from './test/gulpfile';
2525

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

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

30-
const build = gulp.series(jsCore.compile, protobuf.compile, jsXds.compile);
30+
const build = gulp.series(protobuf.compile, jsCore.compile, jsXds.compile);
3131

3232
const setup = gulp.series(installAll);
3333

34-
const setupPureJSInterop = gulp.series(jsCore.install, protobuf.install, internalTest.install);
34+
const setupPureJSInterop = gulp.series(protobuf.install, jsCore.install, internalTest.install);
3535

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

packages/proto-loader/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"clang-format": "^1.2.2",
6060
"gts": "^3.1.0",
6161
"rimraf": "^3.0.2",
62+
"ts-node": "^10.9.2",
6263
"typescript": "~4.7.4"
6364
},
6465
"engines": {

0 commit comments

Comments
 (0)