Creates a tool in ng-dev to determine the PRs which become conflicted by merging a specified PR. Often the question is brought up of how many PRs require a rebase as a result of a change. This script allows to determine this impact. PR Close #37051
22 lines
520 B
Python
22 lines
520 B
Python
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "pr",
|
|
srcs = glob([
|
|
"*.ts",
|
|
]),
|
|
module_name = "@angular/dev-infra-private/pr",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"//dev-infra/utils",
|
|
"@npm//@types/cli-progress",
|
|
"@npm//@types/node",
|
|
"@npm//@types/shelljs",
|
|
"@npm//@types/yargs",
|
|
"@npm//cli-progress",
|
|
"@npm//shelljs",
|
|
"@npm//typed-graphqlify",
|
|
"@npm//yargs",
|
|
],
|
|
)
|