https://github.com/angular/angular
Raw File
Tip revision: 92a1e59529f6746dc3822c31cade0380474f84bf authored by Andrew Kushnir on 01 May 2024, 18:44:11 UTC
release: cut the v18.0.0-rc.0 release
Tip revision: 92a1e59
BUILD.bazel
load("//tools:defaults.bzl", "esbuild", "ts_library")

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

ts_library(
    name = "launcher",
    srcs = [
        "index.ts",
        "launcher.ts",
    ],
    deps = [
        "//tools/saucelabs-daemon",
        "@npm//@types/node",
    ],
)

# We need a commonjs version of the launcher that can be required from the
# root karma-js.conf.js.
esbuild(
    name = "launcher_cjs",
    entry_point = "index.ts",
    format = "cjs",
    output = "index.cjs",
    platform = "node",
    deps = [":launcher"],
)
back to top