angular/packages/animations/browser/testing/BUILD.bazel
Joey Perrott 7f26df1608 build: migrate animations to use rules_js based toolchain (#61479)
Migrate animations to use `ts_project` and `ng_project`

PR Close #61479
2025-05-20 08:46:35 +00:00

33 lines
755 B
Text

load("//tools:defaults.bzl", "generate_api_docs")
load("//tools:defaults2.bzl", "ng_project")
package(default_visibility = ["//visibility:public"])
exports_files(["package.json"])
ng_project(
name = "testing",
srcs = glob(["**/*.ts"]),
deps = [
"//packages/animations:animations_rjs",
"//packages/animations/browser:browser_rjs",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"*.ts",
"src/**/*.ts",
]) + ["PACKAGE.md"],
)
generate_api_docs(
name = "animations_browser_testing_docs",
srcs = [
":files_for_docgen",
"//packages:common_files_and_deps_for_docs",
],
entry_point = ":index.ts",
module_name = "@angular/animations/browser/testing",
)