rules-proto-grpc / rules_proto_grpc

Bazel rules for building Protobuf and gRPC code and libraries from proto_library targets
https://rules-proto-grpc.com
Apache License 2.0
249 stars 156 forks source link

Provide a path conversion from snake_case to dashed-case #274

Closed dprogm closed 11 months ago

dprogm commented 1 year ago

Adds a new path pattern that enables the conversion from camelCase or snake_case to a name separated by a dash, like e.g. camelCase_Name -> camel-case-name. This pattern is used by the ngx-grpc plugin for generating angular compatible protobuf messages.

aaliddell commented 11 months ago

Thanks