https://github.com/angular/angular
Raw File
Tip revision: c1fe6c9c81542e4f0c2a3d491da748cecc6b27a9 authored by Misko Hevery on 15 June 2020, 21:01:15 UTC
release: cut the v10.0.0-rc.6 release
Tip revision: c1fe6c9
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