This repository was archived by the owner on Jan 19, 2023. It is now read-only.
forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
59 lines (54 loc) · 1.42 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
load("//tools:defaults.bzl", "api_golden_test", "api_golden_test_npm_package", "ng_module", "ng_package")
package(default_visibility = ["//visibility:public"])
ng_module(
name = "animations",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
deps = [
"//packages/core",
],
)
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__",
"//packages/compiler-cli/integrationtest:__pkg__",
"//packages/compiler/test:__pkg__",
],
deps = [
":animations",
"//packages/animations/browser",
"//packages/animations/browser/testing",
],
)
api_golden_test_npm_package(
name = "animations_api",
data = [
":npm_package",
"//goldens:public-api",
],
golden_dir = "angular/goldens/public-api/animations",
npm_package = "angular/packages/animations/npm_package",
)
api_golden_test(
name = "animations_errors",
data = [
"//goldens:public-api",
"//packages/animations",
"//packages/animations/browser",
],
entry_point = "angular/packages/animations/browser/src/errors.d.ts",
golden = "angular/goldens/public-api/animations/errors.md",
)