https://github.com/angular/angular
Raw File
Tip revision: f0b94f5b4836adbc9a41b8a392f7123128196224 authored by Alex Rickabaugh on 08 June 2022, 20:00:25 UTC
release: cut the v14.0.1 release (#46308)
Tip revision: f0b94f5
BUILD.bazel
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",
)
back to top