Joey Perrott e4b1e6c622 build: Add pullapprove verification tool to dev-infra-private package (#35911)
Migrates pullapprove verification tool to be available in the dev-infra-private
package

PR Close #35911
2020-03-10 14:17:56 -04:00

20 lines
429 B
Python

load("@npm_bazel_typescript//:index.bzl", "ts_library")
ts_library(
name = "pullapprove",
srcs = [
"verify.ts",
],
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",
],
)