2019-05-01 13:23:18 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
TARGET_DIR=$1
|
|
|
|
|
|
|
|
./node_modules/.bin/grpc_tools_node_protoc \
|
2019-05-11 03:05:39 +00:00
|
|
|
--proto_path=api/proto/v1
|
|
|
|
--proto_path=third_party
|
|
|
|
--js_out=import_style=commonjs,binary:pkg/api/v1 \
|
|
|
|
--grpc_out=pkg/api/v1 \
|
2019-05-01 13:23:18 +00:00
|
|
|
--plugin=protoc-gen-grpc=./node_modules/.bin/grpc_tools_node_protoc_plugin \
|
2019-05-11 03:05:39 +00:00
|
|
|
*.proto
|
2019-05-01 13:23:18 +00:00
|
|
|
|
|
|
|
./node_modules/.bin/grpc_tools_node_protoc \
|
2019-05-11 03:05:39 +00:00
|
|
|
--proto_path=api/proto/v1
|
|
|
|
--proto_path=third_party
|
2019-05-01 13:23:18 +00:00
|
|
|
--plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts \
|
2019-05-11 03:05:39 +00:00
|
|
|
--ts_out=pkg/api/v1 \
|
|
|
|
*.proto
|