mirror of https://github.com/grpc/grpc-node.git
Add scripts for setting up interop clients and servers
This commit is contained in:
parent
5e3141b5cf
commit
3eb9e2f48f
|
@ -38,6 +38,8 @@ const setup = gulp.series(installAll, link);
|
|||
|
||||
const setupWindows = gulp.series(installAllWindows, link);
|
||||
|
||||
const setupPureJSInterop = gulp.parallel(jsCore.install, protobuf.install, internalTest.install);
|
||||
|
||||
const clean = gulp.parallel(jsCore.clean, nativeCore.clean, protobuf.clean);
|
||||
|
||||
const cleanAll = gulp.parallel(jsCore.cleanAll, nativeCore.cleanAll, healthCheck.cleanAll, internalTest.cleanAll, protobuf.cleanAll);
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
npm install -g node-gyp gulp
|
||||
npm install
|
||||
gulp setup
|
|
@ -0,0 +1,3 @@
|
|||
npm install -g gulp
|
||||
npm install
|
||||
gulp setupPureJSInterop
|
Loading…
Reference in New Issue