Joey Perrott 393ce94718 feat(dev-infra): Set up new common release notes generation tooling (#41905)
Enables the new common release notes generation within the ng-dev release publishing
tooling.

PR Close #41905
2021-05-06 09:40:29 -04:00

18 lines
456 B
Python

load("@npm//@bazel/typescript:index.bzl", "ts_library")
ts_library(
name = "testing",
srcs = glob(["*.ts"]),
module_name = "@angular/dev-infra-private/utils/testing",
visibility = ["//dev-infra:__subpackages__"],
deps = [
"//dev-infra/utils",
"@npm//@types/jasmine",
"@npm//@types/minimist",
"@npm//@types/node",
"@npm//@types/semver",
"@npm//minimist",
"@npm//semver",
],
)