Files
Jessica Janiuk 0050b01b62 perf(animations): made errors in the animations package tree shakeable (#45079)
This moves all the error strings into exported functions that can be tree shaken away.

PR Close #45079
2022-02-14 16:13:36 -08:00

62 lines
1.5 KiB
Python

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",
"//packages/animations/browser:package.json",
"//packages/animations/browser/testing: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",
)