This repository was archived by the owner on Sep 16, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +27
-0
lines changed
internal/e2e/npm_packages
third_party/github.com/bazelbuild/bazel/src/main/protobuf Expand file tree Collapse file tree 6 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ ts_library(
3434
3535jasmine_node_test (
3636 name = "test" ,
37+ data = [
38+ # Verify that worker_protocol.proto can be referenced as a target in the generated npm bazel workspace
39+ "@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto" ,
40+ ],
3741 deps = [
3842 ":test_lib" ,
3943 "@npm//jasmine" ,
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ ts_library(
3434
3535jasmine_node_test (
3636 name = "test" ,
37+ data = [
38+ # Verify that worker_protocol.proto can be referenced as a target in the generated npm bazel workspace
39+ "@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto" ,
40+ ],
3741 deps = [
3842 ":test_lib" ,
3943 "@npm//jasmine" ,
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ ts_library(
3434
3535jasmine_node_test (
3636 name = "test" ,
37+ data = [
38+ # Verify that worker_protocol.proto can be referenced as a target in the generated npm bazel workspace
39+ "@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto" ,
40+ ],
3741 deps = [
3842 ":test_lib" ,
3943 "@npm//jasmine" ,
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ ts_library(
3434
3535jasmine_node_test (
3636 name = "test" ,
37+ data = [
38+ # Verify that worker_protocol.proto can be referenced as a target in the generated npm bazel workspace
39+ "@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto" ,
40+ ],
3741 deps = [
3842 ":test_lib" ,
3943 "@npm//jasmine" ,
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ ts_library(
3434
3535jasmine_node_test (
3636 name = "test" ,
37+ data = [
38+ # Verify that worker_protocol.proto can be referenced as a target in the generated npm bazel workspace
39+ "@build_bazel_rules_typescript//third_party/github.com/bazelbuild/bazel/src/main/protobuf:worker_protocol.proto" ,
40+ ],
3741 deps = [
3842 ":test_lib" ,
3943 "@npm//jasmine" ,
Original file line number Diff line number Diff line change 1+ # BEGIN-DEV-ONLY
2+ # Parts of this BUILD file only necessary when building within the bazelbuild/rules_typescript repo.
3+ # The generated `@bazel/typescript` npm package contains a trimmed BUILD file using # DEV-ONLY fences.
14load ("@io_bazel_rules_go//go:def.bzl" , "go_library" )
25load ("@io_bazel_rules_go//proto:def.bzl" , "go_proto_library" )
36
47package (default_visibility = ["//:__pkg__" ])
58
69licenses (["notice" ]) # Apache 2.0
10+ # END-DEV-ONLY
711
812# Export the raw proto file so protobufjs can be used reflectively without codegen
913exports_files (["worker_protocol.proto" ])
1014
15+ # BEGIN-DEV-ONLY
1116proto_library (
1217 name = "blaze_worker_proto" ,
1318 srcs = ["worker_protocol.proto" ],
@@ -31,6 +36,8 @@ go_library(
3136filegroup (
3237 name = "npm_package_assets" ,
3338 srcs = [
39+ "BUILD.bazel" ,
3440 "worker_protocol.proto" ,
3541 ],
3642)
43+ # END-DEV-ONLY
You can’t perform that action at this time.
0 commit comments