2020-03-16 14:31:24 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
2020-04-20 16:00:10 -04:00
|
|
|
name = "utils",
|
2020-05-08 17:51:29 -04:00
|
|
|
srcs = glob(["*.ts"]),
|
2020-03-10 13:29:44 -04:00
|
|
|
module_name = "@angular/dev-infra-private/utils",
|
2020-03-16 14:31:24 -04:00
|
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
|
|
deps = [
|
2020-05-05 18:37:31 -04:00
|
|
|
"@npm//@octokit/graphql",
|
2020-03-16 14:31:24 -04:00
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//@types/shelljs",
|
|
|
|
"@npm//shelljs",
|
|
|
|
"@npm//tslib",
|
2020-05-05 18:37:31 -04:00
|
|
|
"@npm//typed-graphqlify",
|
2020-03-16 14:31:24 -04:00
|
|
|
],
|
|
|
|
)
|