mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
e6046c9420
With the changes to support APF v13 in the `ng_package` rule, we have removed the ambiguous `entry_point` attribute. The attribute suggested that it would be used for determining the primary entry-point input file. This was not the case as the flat module output file is consulted for bundling et at. The attribute has been renamed to match its purposed (renamed to `primary_bundle_name`). We no longer need to set that attribute because the primary bundle name is (1) not of relevance for consumers and (2) the rule already infers the bundle name properly from the Bazel package. PR Close #43431
80 lines
2.4 KiB
Python
80 lines
2.4 KiB
Python
load("@build_bazel_rules_nodejs//:index.bzl", "generated_file_test")
|
|
load("//packages/common/locales:index.bzl", "generate_base_currencies_file")
|
|
load("//tools:defaults.bzl", "api_golden_test_npm_package", "ng_module", "ng_package")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
# This generates the `src/i18n/currencies.ts` file through the `generate-locales` tool. Since
|
|
# the base currencies 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_currencies_file(
|
|
name = "base_currencies_file_generated",
|
|
output_file = "base_currencies_generated.ts",
|
|
)
|
|
|
|
generated_file_test(
|
|
name = "base_currencies_file",
|
|
src = "src/i18n/currencies.ts",
|
|
generated = ":base_currencies_file_generated",
|
|
)
|
|
|
|
ng_module(
|
|
name = "common",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/core",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|
|
|
|
ng_package(
|
|
name = "npm_package",
|
|
srcs = [
|
|
"package.json",
|
|
"//packages/common/http:package.json",
|
|
"//packages/common/http/testing:package.json",
|
|
"//packages/common/testing:package.json",
|
|
"//packages/common/upgrade:package.json",
|
|
],
|
|
nested_packages = ["//packages/common/locales: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 = [
|
|
"//packages/common",
|
|
"//packages/common/http",
|
|
"//packages/common/http/testing",
|
|
"//packages/common/testing",
|
|
"//packages/common/upgrade",
|
|
],
|
|
)
|
|
|
|
api_golden_test_npm_package(
|
|
name = "common_api",
|
|
data = [
|
|
":npm_package",
|
|
"//goldens:public-api",
|
|
],
|
|
golden_dir = "angular/goldens/public-api/common",
|
|
npm_package = "angular/packages/common/npm_package",
|
|
)
|