angular/packages/compiler-cli/test/compliance/partial/BUILD.bazel
Paul Gschwendtner 93c74ef492 build: migrate partial compliance tests to rules_js (#61865)
Migrates the partial compliance tests to `rules_js`. Also as part of
this, we re-enable RBE to see if that fixed the issues, or in case
they are already resolved from the RBE side.

PR Close #61865
2025-06-05 12:04:51 +02:00

19 lines
484 B
Text

load("//tools:defaults2.bzl", "ts_project")
ts_project(
name = "generate_golden_partial_lib",
testonly = True,
srcs = [
"cli.ts",
"generate_golden_partial.ts",
],
visibility = ["//packages/compiler-cli/test/compliance:__subpackages__"],
deps = [
"//packages/compiler-cli/src/ngtsc/file_system:file_system_rjs",
"//packages/compiler-cli/test/compliance/test_helpers:test_helpers_rjs",
],
)
exports_files([
"cli.ts",
])