mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The NodeJS Bazel linker does not work well on Windows because there is no sandboxing and linker processes from different tests will attempt to modify the same `node_modules`, causing concurrency race conditions and resulting in flakiness. PR Close #45872
14 lines
350 B
Text
14 lines
350 B
Text
load("//tools:defaults.bzl", "nodejs_binary")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
nodejs_binary(
|
|
name = "build-ngsw-config",
|
|
data = [
|
|
"//aio:firebase.json",
|
|
"//aio:ngsw-config.template.json",
|
|
"@aio_npm//canonical-path",
|
|
"@aio_npm//json5",
|
|
],
|
|
entry_point = "build-ngsw-config.js",
|
|
)
|