https://github.com/angular/angular
Raw File
Tip revision: 9136dbd65c73e5d5e8a22a630662cad737663354 authored by Andrew Kushnir on 11 August 2021, 17:13:33 UTC
release: cut the v12.2.1 release (#43117)
Tip revision: 9136dbd
BUILD.bazel
load("//tools:defaults.bzl", "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",
    ],
    entry_point = ":index.ts",
    tags = [
        "release-with-framework",
    ],
    # Do not add more to this list.
    # Dependencies on the full npm_package cause long re-builds.
    visibility = [
        "//integration:__pkg__",
        "//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",
)
back to top