Introduces a few Starlark macros for running the new Bazel CLDR generation tool. Wires up the new tool so that locales are generated properly. Also updates the existing `closure-locale` file to match the new output generated by the Bazel tool. This commit also re-adds a few locale files that aren't generated by CLDR 37, but have been accidentally left in the repository as the Gulp script never removed old locales from previous CLDR versions. This problem is solved with the Bazel generation of locale files, but for now we re-add these old CLDR 33 locale files to not break developers relying on these (even though the locale data indicies are incorrect; but there might be users accessing the data directly) PR Close #42230
94 lines
2.7 KiB
Python
94 lines
2.7 KiB
Python
load("@build_bazel_rules_nodejs//:index.bzl", "generated_file_test")
|
|
load("//tools:defaults.bzl", "ng_module", "ng_package", "ts_api_guardian_test", "ts_api_guardian_test_npm_package")
|
|
load("//packages/common/locales:index.bzl", "generate_base_locale_file")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
# This generates the `src/i18n/locale_en.ts` file through the `generate-locales` tool. Since
|
|
# the base locale file is checked-in for Google3, we add a `generated_file_test` to ensure
|
|
# the checked-in file is up-to-date. To disambiguate from the test, we use a more precise target
|
|
# name here.
|
|
generate_base_locale_file(
|
|
name = "base_locale_file_generated",
|
|
output_file = "base_locale_file_generated.ts",
|
|
)
|
|
|
|
generated_file_test(
|
|
name = "base_locale_file",
|
|
src = "src/i18n/locale_en.ts",
|
|
generated = ":base_locale_file_generated",
|
|
)
|
|
|
|
ng_module(
|
|
name = "core",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/core/src/compiler",
|
|
"//packages/core/src/di/interface",
|
|
"//packages/core/src/interface",
|
|
"//packages/core/src/reflection",
|
|
"//packages/core/src/util",
|
|
"//packages/localize",
|
|
"//packages/zone.js/lib:zone_d_ts",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|
|
|
|
ng_package(
|
|
name = "npm_package",
|
|
srcs = [
|
|
"package.json",
|
|
"//packages/core/testing:package.json",
|
|
],
|
|
entry_point = ":index.ts",
|
|
nested_packages = [
|
|
"//packages/core/schematics:npm_package",
|
|
],
|
|
tags = [
|
|
"release-with-framework",
|
|
],
|
|
# Do not add more to this list.
|
|
# Dependencies on the full npm_package cause long re-builds.
|
|
visibility = [
|
|
"//integration:__pkg__",
|
|
"//packages/bazel/test/ng_package:__pkg__",
|
|
"//packages/compiler-cli/integrationtest:__pkg__",
|
|
"//packages/compiler-cli/ngcc/test:__pkg__",
|
|
"//packages/compiler-cli/test:__pkg__",
|
|
"//packages/compiler-cli/test/diagnostics:__pkg__",
|
|
"//packages/compiler-cli/test/transformers:__pkg__",
|
|
"//packages/compiler/test:__pkg__",
|
|
"//packages/language-service/test:__pkg__",
|
|
],
|
|
deps = [
|
|
":core",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|
|
|
|
ts_api_guardian_test_npm_package(
|
|
name = "core_api",
|
|
actualDir = "angular/packages/core/npm_package",
|
|
data = [
|
|
":npm_package",
|
|
"//goldens:public-api",
|
|
],
|
|
goldenDir = "angular/goldens/public-api/core",
|
|
)
|
|
|
|
ts_api_guardian_test(
|
|
name = "ng_global_utils_api",
|
|
actual = "angular/packages/core/src/render3/global_utils_api.d.ts",
|
|
data = [
|
|
"//goldens:public-api",
|
|
"//packages/core",
|
|
],
|
|
golden = "angular/goldens/public-api/core/global_utils.d.ts",
|
|
)
|