Add scripts for setting up interop clients and servers

This commit is contained in:
murgatroid99 2019-05-09 16:46:44 -07:00
parent 5e3141b5cf
commit 3eb9e2f48f
3 changed files with 8 additions and 0 deletions

View File

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

3
setup_interop.sh Executable file
View File

@ -0,0 +1,3 @@
npm install -g node-gyp gulp
npm install
gulp setup

3
setup_interop_purejs.sh Executable file
View File

@ -0,0 +1,3 @@
npm install -g gulp
npm install
gulp setupPureJSInterop