mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
ade024407d
Remove parts of the aio infra PR Close #54929
25 lines
632 B
Python
25 lines
632 B
Python
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
|
|
|
js_library(
|
|
name = "angular-content-package",
|
|
srcs = glob(
|
|
[
|
|
"**/*.js",
|
|
],
|
|
exclude = ["**/*.spec.js"],
|
|
),
|
|
visibility = ["//aio/tools/transforms:__subpackages__"],
|
|
deps = [
|
|
"//aio/content",
|
|
"//aio/content/cli",
|
|
"//aio/content/examples",
|
|
"//aio/src/assets",
|
|
"//aio/tools/transforms",
|
|
"//aio/tools/transforms/angular-base-package",
|
|
"//aio/tools/transforms/content-package",
|
|
"@npm//canonical-path",
|
|
"@npm//dgeni",
|
|
"@npm//ignore",
|
|
],
|
|
)
|