mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Moves GitClient from merge script into common utils for unified method of performing git actions throughout the ng-dev toolset. PR Close #37318
19 lines
506 B
Text
19 lines
506 B
Text
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "utils",
|
|
srcs = glob(["*.ts"]),
|
|
module_name = "@angular/dev-infra-private/utils",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"@npm//@octokit/graphql",
|
|
"@npm//@octokit/rest",
|
|
"@npm//@types/inquirer",
|
|
"@npm//@types/node",
|
|
"@npm//@types/shelljs",
|
|
"@npm//chalk",
|
|
"@npm//shelljs",
|
|
"@npm//tslib",
|
|
"@npm//typed-graphqlify",
|
|
],
|
|
)
|