Closed polds closed 6 years ago
I'm able to generate the service_pb.js files but appear unable to generate the service_pb_twirp.js file.
service_pb.js
service_pb_twirp.js
What are the magic flags to use? I'm using the following right now:
protoc --proto_path=. --js_out=import_style=commonjs,binary:. service.proto
I figured it out.
protoc --proto_path=. --twirp_js_out=. --js_out=import_style=commonjs,binary:. service.proto
I'm able to generate the
service_pb.js
files but appear unable to generate theservice_pb_twirp.js
file.What are the magic flags to use? I'm using the following right now: