mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
98c5063cd8
As mentioned in the previous commit, integration tests will be declared in subpackages of `//integration`. For these tests to still rely on the NPM packages from `HEAD`, we need to update the visibility. PR Close #44238
43 lines
947 B
Python
43 lines
947 B
Python
load("//tools:defaults.bzl", "api_golden_test_npm_package", "ng_module", "ng_package")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_module(
|
|
name = "elements",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
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:__subpackages__"],
|
|
deps = [
|
|
":elements",
|
|
],
|
|
)
|
|
|
|
api_golden_test_npm_package(
|
|
name = "elements_api",
|
|
data = [
|
|
":npm_package",
|
|
"//goldens:public-api",
|
|
],
|
|
golden_dir = "angular/goldens/public-api/elements",
|
|
npm_package = "angular/packages/elements/npm_package",
|
|
)
|