mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The defs.bzl load point will be removed for the rules_nodejs 1.0 release. PR Close #33433
11 lines
238 B
Text
11 lines
238 B
Text
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
|
|
|
|
nodejs_binary(
|
|
name = "brotli-cli",
|
|
data = [
|
|
"cli.js",
|
|
"@npm//brotli",
|
|
],
|
|
entry_point = ":cli.js",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|