2020-03-16 11:31:24 -07:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
2020-04-20 13:00:10 -07:00
|
|
|
name = "utils",
|
2020-06-15 09:20:05 -07:00
|
|
|
srcs = glob([
|
|
|
|
"*.ts",
|
|
|
|
"git/*.ts",
|
|
|
|
]),
|
2020-03-10 10:29:44 -07:00
|
|
|
module_name = "@angular/dev-infra-private/utils",
|
2020-03-16 11:31:24 -07:00
|
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
|
|
deps = [
|
2020-05-05 15:37:31 -07:00
|
|
|
"@npm//@octokit/graphql",
|
2020-05-27 15:39:31 -07:00
|
|
|
"@npm//@octokit/rest",
|
2020-06-15 09:20:05 -07:00
|
|
|
"@npm//@octokit/types",
|
2020-05-15 17:21:01 +02:00
|
|
|
"@npm//@types/inquirer",
|
2020-03-16 11:31:24 -07:00
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//@types/shelljs",
|
2020-05-18 15:37:18 -07:00
|
|
|
"@npm//chalk",
|
2020-07-20 11:53:26 -07:00
|
|
|
"@npm//inquirer",
|
2020-03-16 11:31:24 -07:00
|
|
|
"@npm//shelljs",
|
|
|
|
"@npm//tslib",
|
2020-05-05 15:37:31 -07:00
|
|
|
"@npm//typed-graphqlify",
|
2020-03-16 11:31:24 -07:00
|
|
|
],
|
|
|
|
)
|