File tree 3 files changed +5
-2
lines changed
third_party/github.com/bazelbuild/rules_typescript/internal
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -447,8 +447,6 @@ tasks:
447
447
# TODO(gregmagolan): figure out how to install missing shared libs
448
448
# Without this filter the @cypress external repository will be built and that build will fail due to missing shared libs.
449
449
- " --build_tag_filters=-cypress,-pkg_npm.pack"
450
- - " --define=NODE_DEBUG=module"
451
- - " --define=VERBOSE_LOGS=1"
452
450
test_flags :
453
451
# TODO(gregmagolan): figure out how to install missing shared libs
454
452
- " --test_arg=-cypress"
Original file line number Diff line number Diff line change @@ -11,5 +11,7 @@ nodejs_binary(
11
11
"@npm//@bazel/typescript" ,
12
12
],
13
13
entry_point = "@npm//:node_modules/@bazel/typescript/internal/tsc_wrapped/tsc_wrapped.js" ,
14
+ # TODO: turn on --worker_sandboxing and remove this flag to see failure to load the plugin
15
+ templated_args = ["--bazel_patch_module_resolver" ],
14
16
visibility = ["//:__subpackages__" ],
15
17
)
Original file line number Diff line number Diff line change @@ -83,6 +83,9 @@ nodejs_binary(
83
83
],
84
84
entry_point = ":tsc_wrapped/tsc_wrapped.js" ,
85
85
visibility = ["//visibility:public" ],
86
+ # With RBE or --worker_sandboxing you'll see that worker doesn't run_node
87
+ # so it doesn't have the linker
88
+ templated_args = ["--bazel_patch_module_resolver" ],
86
89
)
87
90
88
91
ts_library (
You can’t perform that action at this time.
0 commit comments