mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
14 lines
367 B
Text
14 lines
367 B
Text
load("@build_bazel_rules_nodejs//:index.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",
|
|
)
|