
Introduces a new configuration for the `ng-dev release` command. This configuration will be the source of truth for all release packages and how they can be built. Additionally, in a temporary manner where each project has its own way of generating the changelog, the changelog generation can be configured. This will be removed in the future when there is canonical changelog generation in the dev-infra shared package. PR Close #38656
15 lines
330 B
Python
15 lines
330 B
Python
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "config",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
module_name = "@angular/dev-infra-private/release/config",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"//dev-infra/utils",
|
|
"@npm//@types/semver",
|
|
],
|
|
)
|