mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2024-10-01 01:35:42 -04:00
db509778a8
generate the code on npm install and npm test from .proto files from haveno repository
6 lines
329 B
Bash
Executable File
6 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# generate imports for haveno services and types using grpc-web
|
|
mkdir -p ./src/protobuf
|
|
cd ./src/protobuf || exit 1
|
|
protoc -I=../../../haveno/proto/src/main/proto/ ../../../haveno/proto/src/main/proto/*.proto --js_out=import_style=commonjs,binary:./ --grpc-web_out=import_style=typescript,mode=grpcwebtext:./ || exit 1 |