2020-08-14 19:49:07 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "common",
|
|
|
|
srcs = glob(["*.ts"]),
|
2020-09-11 15:13:36 -04:00
|
|
|
module_name = "@angular/dev-infra-private/pr/common",
|
2020-08-14 19:49:07 -04:00
|
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//dev-infra/utils",
|
|
|
|
"@npm//@types/node",
|
|
|
|
"@npm//typed-graphqlify",
|
|
|
|
],
|
|
|
|
)
|