mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
bfc8bdb9c8
Re-enables the Bazel integration test that we have disabled as part of the APF v13 changes. Since there are no UMD files anymore, the Karma tests no longer worked. Similarly, the Angular linker had to run for building the production bundle. PR Close #44061
21 lines
853 B
Python
21 lines
853 B
Python
ANGULAR_PACKAGES_CONFIG = [
|
|
("@angular/animations", struct(entry_points = ["browser"])),
|
|
("@angular/common", struct(entry_points = ["http/testing", "http", "testing"])),
|
|
("@angular/compiler", struct(entry_points = ["testing"])),
|
|
("@angular/core", struct(entry_points = ["testing"])),
|
|
("@angular/forms", struct(entry_points = [])),
|
|
("@angular/platform-browser", struct(entry_points = ["testing", "animations"])),
|
|
("@angular/platform-browser-dynamic", struct(entry_points = ["testing"])),
|
|
("@angular/router", struct(entry_points = [])),
|
|
]
|
|
|
|
ANGULAR_PACKAGES = [
|
|
struct(
|
|
name = name[len("@angular/"):],
|
|
entry_points = config.entry_points,
|
|
platform = config.platform if hasattr(config, "platform") else "browser",
|
|
module_name = name,
|
|
)
|
|
for name, config in ANGULAR_PACKAGES_CONFIG
|
|
]
|