2020-10-02 13:50:38 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
2020-08-26 16:49:43 -04:00
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "caretaker",
|
2020-09-11 15:13:36 -04:00
|
|
|
srcs = glob([
|
|
|
|
"**/*.ts",
|
|
|
|
]),
|
2020-08-26 16:49:43 -04:00
|
|
|
module_name = "@angular/dev-infra-private/caretaker",
|
|
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
|
|
deps = [
|
2020-09-30 16:16:33 -04:00
|
|
|
"//dev-infra/release/versioning",
|
2020-09-11 15:13:36 -04:00
|
|
|
"//dev-infra/utils",
|
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//@types/node-fetch",
|
2020-08-26 16:49:43 -04:00
|
|
|
"@npm//@types/yargs",
|
2020-09-11 15:13:36 -04:00
|
|
|
"@npm//multimatch",
|
|
|
|
"@npm//node-fetch",
|
|
|
|
"@npm//typed-graphqlify",
|
|
|
|
"@npm//yaml",
|
2020-08-26 16:49:43 -04:00
|
|
|
"@npm//yargs",
|
|
|
|
],
|
|
|
|
)
|