https://github.com/angular/angular
Raw File
Tip revision: 6280a98ff19162ec13c0d8118e0c176be1489b58 authored by Alex Rickabaugh on 02 June 2022, 16:49:43 UTC
release: cut the v14.0.0 release (#46223)
Tip revision: 6280a98
BUILD.bazel
load("//tools:defaults.bzl", "ng_package", "ts_library")
load("@npm//tsec:index.bzl", "tsec_test")

package(default_visibility = ["//visibility:public"])

ts_library(
    name = "compiler",
    srcs = glob(
        [
            "*.ts",
            "src/**/*.ts",
        ],
    ),
)

tsec_test(
    name = "tsec_test",
    target = "compiler",
    tsconfig = "//packages:tsec_config",
)

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/language-service/test:__pkg__",
    ],
    deps = [
        ":compiler",
        "//packages/compiler/testing",
    ],
)
back to top