
Creates a tool within ng-dev to checkout a pending PR from the upstream repository. This automates an action that many developers on the Angular team need to do periodically in the process of testing and reviewing incoming PRs. Example usage: ng-dev pr checkout <pr-number> PR Close #38474
13 lines
281 B
Python
13 lines
281 B
Python
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "common",
|
|
srcs = glob(["*.ts"]),
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"//dev-infra/utils",
|
|
"@npm//@types/node",
|
|
"@npm//typed-graphqlify",
|
|
],
|
|
)
|