angular-cn/dev-infra/utils/BUILD.bazel

19 lines
419 B
Python

load("@npm_bazel_typescript//:index.bzl", "ts_library")
ts_library(
name = "config",
srcs = [
"config.ts",
],
module_name = "@angular/dev-infra-private/utils",
visibility = ["//dev-infra:__subpackages__"],
deps = [
"@npm//@types/json5",
"@npm//@types/node",
"@npm//@types/shelljs",
"@npm//json5",
"@npm//shelljs",
"@npm//tslib",
],
)