Skip to content

Commit

Permalink
Install reflection before xds library
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Feb 4, 2025
1 parent 0e6bfcc commit 5f889b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ 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(protobuf.install, jsCore.install, healthCheck.install, internalTest.install, jsXds.install, reflection.install);
const installAll = gulp.series(protobuf.install, jsCore.install, healthCheck.install, reflection.install, internalTest.install, jsXds.install);

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

Expand Down

0 comments on commit 5f889b2

Please sign in to comment.