https://github.com/angular/angular
Raw File
Tip revision: 7cb3b78acc001bb261bf236de18c72d665194199 authored by Dylan Hunn on 19 January 2022, 17:30:23 UTC
release: cut the v13.1.3 release (#44757)
Tip revision: 7cb3b78
BUILD.bazel
load("//tools:defaults.bzl", "nodejs_binary", "ts_config")

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

exports_files([
    "tsconfig.json",
    "postinstall-patches.js",
    "jasmine-seed-generator.js",
])

ts_config(
    name = "tsconfig-test",
    src = "tsconfig-test.json",
    deps = ["tsconfig.json"],
)

nodejs_binary(
    name = "inline-package-json-deps",
    entry_point = "inline-package-json-deps.js",
)

platform(
    name = "rbe_ubuntu1604-angular",
    parents = ["@rbe_ubuntu1604_angular//config:platform"],
    remote_execution_properties = """
        {PARENT_REMOTE_EXECUTION_PROPERTIES}
        properties: {
            name: "dockerAddCapabilities"
            value: "SYS_ADMIN"
        }
        properties: {
            name: "dockerNetwork"
            value: "standard"
        }
        properties: {
            name: "Pool"
            value: "default"
        }
        """,
)
back to top