Joey Perrott d0dd0e80f6 feat(dev-infra): provide tooling to check what branches a pr targets (#39504)
Create a command in the `ng-dev` toolset that allows user's to check
what branches a PR will merge into based on its targeting.

PR Close #39504
2020-11-03 14:55:24 -08:00

14 lines
368 B
Python

load("@npm//@bazel/typescript:index.bzl", "ts_library")
ts_library(
name = "check-target-branches",
srcs = glob(["*.ts"]),
module_name = "@angular/dev-infra-private/pr/check-target-branches",
visibility = ["//dev-infra:__subpackages__"],
deps = [
"//dev-infra/pr/merge",
"//dev-infra/utils",
"@npm//@types/yargs",
],
)