blob: 485ec928a337b0d5ec74a71afc3763d7ffdb2961 [file]
"""The default binaries used in our local builds
Note that in the npm distribution, this file is absent, and will be generated on-the-fly when
the package is installed (possibly with different attribute values).
"""
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
nodejs_binary(
name = "rollup-worker",
data = [
"//packages/worker:library",
"@npm//rollup",
],
entry_point = "//packages/rollup:index.js",
visibility = ["//visibility:public"],
)