我有一个文件夹protobuf
,里面有很多可以编译的 .proto 文件
protoc -I=protobuf filename.proto --grpc-web_out=import_style=commonjs,mode=grpcwebtext:output
这会生成grpc_web_pb.js
到/output
文件夹中,但我正在寻找一种不必调用protoc
每个文件的方法,是否有通配符之类的东西?
我试过了
protoc -I=protobuf *.proto --grpc-web_out=import_style=commonjs,mode=grpcwebtext:output
但这不起作用,失败了no matches found: *.proto