mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
28 lines
564 B
Text
28 lines
564 B
Text
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",
|
|
],
|
|
)
|