
Migrating to a js file for providing a configuration allows for more extensive configuration at run time. This allows for configs to include logic and move beyond static values found in JSON files. PR Close #36918
18 lines
390 B
Python
18 lines
390 B
Python
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "utils",
|
|
srcs = [
|
|
"config.ts",
|
|
"repo-files.ts",
|
|
],
|
|
module_name = "@angular/dev-infra-private/utils",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"@npm//@types/node",
|
|
"@npm//@types/shelljs",
|
|
"@npm//shelljs",
|
|
"@npm//tslib",
|
|
],
|
|
)
|