1234567891011121314151617181920 |
- #!/usr/bin/env bash
- PROTOC_GEN_TS_PATH="./node_modules/.bin/protoc-gen-ts"
- OUT_DIR="./compiled"
- OUT_DIR_DOC="./doc"
- mkdir -p ${OUT_DIR_DOC}
- protoc \
- --plugin="protoc-gen-ts=${PROTOC_GEN_TS_PATH}" \
- --js_out="import_style=commonjs,binary:${OUT_DIR}" \
- --ts_out="${OUT_DIR}" \
- --doc_out="${OUT_DIR_DOC}" --doc_opt=markdown,index.md \
- proto/*.proto
|