You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now ts_proto_library uses proto_srcs = native.glob(["**/*.proto"]) to detect what generated files it should expect to copy. This is a convenient but erroneous assumption. If a particular build file has two protos a.proto and b.proto but only a.proto was used to generate a ts_proto_library this assumption breaks and you are forced to disable source copying or merge the proto_libraries together
Version
Development (host) and target OS/architectures: all
Output of bazel --version: all
Version of the Aspect rules, or other relevant rules from your WORKSPACE or MODULE.bazel file: 987b6ac
Language(s) and/or frameworks involved: starlark
How to reproduce
No response
Any other information?
No response
The text was updated successfully, but these errors were encountered:
What happened?
Right now ts_proto_library uses
proto_srcs = native.glob(["**/*.proto"])
to detect what generated files it should expect to copy. This is a convenient but erroneous assumption. If a particular build file has two protos a.proto and b.proto but only a.proto was used to generate a ts_proto_library this assumption breaks and you are forced to disable source copying or merge the proto_libraries togetherVersion
Development (host) and target OS/architectures: all
Output of
bazel --version
: allVersion of the Aspect rules, or other relevant rules from your
WORKSPACE
orMODULE.bazel
file: 987b6acLanguage(s) and/or frameworks involved: starlark
How to reproduce
No response
Any other information?
No response
The text was updated successfully, but these errors were encountered: