Files
angular__angular/aio/tools/transforms/helpers/BUILD.bazel
Joey Perrott ade024407d fix(docs-infra): remove part aio infra (#54929)
Remove parts of the aio infra

PR Close #54929
2024-04-02 18:38:04 +00:00

29 lines
573 B
Python

load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
load("@npm//@bazel/jasmine:index.bzl", "jasmine_node_test")
js_library(
name = "helpers",
srcs = [":files"],
visibility = ["//aio/tools:__subpackages__"],
deps = [
"//:package_json",
"@npm//canonical-path",
"@npm//dgeni",
],
)
filegroup(
name = "files",
srcs = [
"test-package.js",
"utils.js",
],
visibility = ["//visibility:public"],
)
jasmine_node_test(
name = "test",
srcs = glob(["*.spec.js"]),
deps = [":helpers"],
)