Files
angular__angular/aio/tools/example-zipper/BUILD.bazel
Joey Perrott ade024407d fix(docs-infra): remove part aio infra (#54929)
Remove parts of the aio infra

PR Close #54929
2024-04-02 18:38:04 +00:00

18 lines
453 B
Python

load("//tools:defaults.bzl", "nodejs_binary")
package(default_visibility = ["//visibility:public"])
nodejs_binary(
name = "generate-example-zip",
data = [
"exampleZipper.mjs",
"//aio/tools/transforms/examples-package:files",
"//aio/tools/transforms/helpers:files",
"@npm//archiver",
"@npm//canonical-path",
"@npm//fs-extra",
"@npm//globby",
],
entry_point = "generateZip.mjs",
)