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-06-15 12:20:05 -04:00
|
|
|
srcs = glob([
|
|
|
|
"*.ts",
|
|
|
|
"git/*.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-05-27 18:39:31 -04:00
|
|
|
"@npm//@octokit/rest",
|
2020-06-15 12:20:05 -04:00
|
|
|
"@npm//@octokit/types",
|
2020-05-15 11:21:01 -04:00
|
|
|
"@npm//@types/inquirer",
|
2020-03-16 14:31:24 -04:00
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//@types/shelljs",
|
2020-05-18 18:37:18 -04:00
|
|
|
"@npm//chalk",
|
2020-07-20 14:53:26 -04:00
|
|
|
"@npm//inquirer",
|
2020-03-16 14:31:24 -04:00
|
|
|
"@npm//shelljs",
|
|
|
|
"@npm//tslib",
|
2020-05-05 18:37:31 -04:00
|
|
|
"@npm//typed-graphqlify",
|
2020-03-16 14:31:24 -04:00
|
|
|
],
|
|
|
|
)
|