mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Use the promptConfirm util instead of manually creating a confirm prompt with inquirer. PR Close #38419
21 lines
525 B
Text
21 lines
525 B
Text
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "format",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
module_name = "@angular/dev-infra-private/format",
|
|
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//multimatch",
|
|
"@npm//shelljs",
|
|
"@npm//yargs",
|
|
],
|
|
)
|