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
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
load("//tools:defaults.bzl", "api_golden_test_npm_package", "ng_module", "ng_package")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_module(
|
|
name = "forms",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
bundle_dts = True,
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|
|
|
|
ng_package(
|
|
name = "npm_package",
|
|
srcs = ["package.json"],
|
|
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/compiler-cli/integrationtest:__pkg__",
|
|
"//packages/compiler-cli/test/diagnostics:__pkg__",
|
|
"//packages/language-service/test:__pkg__",
|
|
],
|
|
deps = [
|
|
":forms",
|
|
],
|
|
)
|
|
|
|
api_golden_test_npm_package(
|
|
name = "forms_api",
|
|
data = [
|
|
":npm_package",
|
|
"//goldens:public-api",
|
|
],
|
|
golden_dir = "angular/goldens/public-api/forms",
|
|
npm_package = "angular/packages/forms/npm_package",
|
|
)
|