https://github.com/angular/angular
Raw File
Tip revision: 2fcabe1557532e92d3e29f23295eb66f7638afe8 authored by Alex Rickabaugh on 04 August 2020, 23:13:39 UTC
release: cut the v10.1.0-next.4 release
Tip revision: 2fcabe1
BUILD.bazel
load("@npm_bazel_typescript//:index.bzl", "ts_library")

ts_library(
    name = "release",
    srcs = glob([
        "*.ts",
    ]),
    module_name = "@angular/dev-infra-private/release",
    visibility = ["//dev-infra:__subpackages__"],
    deps = [
        "//dev-infra/utils",
        "@npm//@types/node",
        "@npm//@types/shelljs",
        "@npm//@types/yargs",
        "@npm//shelljs",
        "@npm//yargs",
    ],
)
back to top