2020-03-17 07:57:28 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "ts-circular-dependencies",
|
|
|
|
srcs = glob(["*.ts"]),
|
|
|
|
module_name = "@angular/dev-infra-private/ts-circular-dependencies",
|
|
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
|
|
deps = [
|
2020-04-20 16:00:10 -04:00
|
|
|
"//dev-infra/utils",
|
2020-03-17 07:57:28 -04:00
|
|
|
"@npm//@types/glob",
|
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//@types/yargs",
|
|
|
|
"@npm//chalk",
|
|
|
|
"@npm//tslib",
|
|
|
|
"@npm//typescript",
|
|
|
|
],
|
|
|
|
)
|