angular/devtools/tools/defaults.bzl
Joey Perrott 85b3ae2e3e build: migrate devtools to use packaged version of @angular/* packages (#62413)
Use the packaged versions of the packages instead of the local ts_project dependencies to prevent multiple versions of the deps to enter test bundles

PR Close #62413
2025-07-02 16:10:25 +00:00

10 lines
304 B
Python

# Re-export of Bazel rules with devtools-wide defaults
load("//tools:defaults2.bzl", _ng_web_test_suite = "ng_web_test_suite")
def ng_web_test_suite(name, tsconfig = "//devtools:tsconfig_test", **kwargs):
_ng_web_test_suite(
name = name,
tsconfig = tsconfig,
**kwargs
)