Also use it to test the public API for core and common Once we have an ng_package for every package, we can remove the npm dependency on ts-api-guardian and the gulp-based public api check. PR Close #22544
12 lines
324 B
Python
12 lines
324 B
Python
exports_files(["tsconfig.json"])
|
|
|
|
# Executes the workspace_status_command and provides the result.
|
|
# See the section on stamping in docs/BAZEL.md
|
|
genrule(
|
|
name = "stamp_data",
|
|
outs = ["stamp_data.txt"],
|
|
cmd = "cat bazel-out/volatile-status.txt > $@",
|
|
stamp = True,
|
|
visibility = ["//:__subpackages__"],
|
|
)
|