123456789101112131415 |
- #!/usr/bin/env bash
- # Path to this plugin
- PROTOC_GEN_TS_PATH="./node_modules/.bin/protoc-gen-ts"
- # Directory to write generated code to (.js and .d.ts files)
- OUT_DIR="./compiled"
- mkdir -p ${OUT_DIR}
- # Compile proto files
- protoc \
- --plugin="protoc-gen-ts=${PROTOC_GEN_TS_PATH}" \
- --js_out="import_style=commonjs,binary:${OUT_DIR}" \
- --ts_out="${OUT_DIR}" \
- proto/*.proto
|