12 lines
261 B
Python
12 lines
261 B
Python
|
load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
|
||
|
|
||
|
nodejs_binary(
|
||
|
name = "brotli-cli",
|
||
|
data = [
|
||
|
"cli.js",
|
||
|
"@npm//brotli",
|
||
|
],
|
||
|
entry_point = "angular/tools/brotli-cli/cli.js",
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
)
|