21 lines
489 B
Python
21 lines
489 B
Python
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "pullapprove",
|
|
srcs = [
|
|
"verify.ts",
|
|
],
|
|
module_name = "@angular/dev-infra-private/pullapprove",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"@npm//@types/minimatch",
|
|
"@npm//@types/node",
|
|
"@npm//@types/shelljs",
|
|
"@npm//@types/yaml",
|
|
"@npm//minimatch",
|
|
"@npm//shelljs",
|
|
"@npm//tslib",
|
|
"@npm//yaml",
|
|
],
|
|
)
|