mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
021ead5399
`DOCUMENT` was move to `@angular/core`, so we don't need to depend on common anymore. PR Close #63248
32 lines
645 B
Python
32 lines
645 B
Python
load("//tools:defaults.bzl", "generate_api_docs", "ng_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_project(
|
|
name = "testing",
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
]) + ["PACKAGE.md"],
|
|
)
|
|
|
|
generate_api_docs(
|
|
name = "animations_browser_testing_docs",
|
|
srcs = [
|
|
":files_for_docgen",
|
|
],
|
|
entry_point = ":index.ts",
|
|
module_name = "@angular/animations/browser/testing",
|
|
)
|