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
29 lines
564 B
Python
29 lines
564 B
Python
load("//tools:defaults.bzl", "ng_module", "ng_package")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_module(
|
|
name = "angular-in-memory-web-api",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "angular-in-memory-web-api",
|
|
deps = [
|
|
"//packages/common",
|
|
"//packages/common/http",
|
|
"//packages/core",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|
|
|
|
ng_package(
|
|
name = "npm_package",
|
|
srcs = ["package.json"],
|
|
deps = [
|
|
":angular-in-memory-web-api",
|
|
],
|
|
)
|