Introduce a bazel-based build for the entire JS pack.

This commit is contained in:
Cornelius Riemenschneider
2023-11-03 11:14:22 +01:00
parent 465eb00228
commit 6c7ea86a12
5 changed files with 152 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
load("@//:dist.bzl", "pack_zip")
pack_zip(
name = "downgrades",
srcs = glob(
["**/*"],
exclude = ["BUILD.bazel"],
),
prefix = "downgrades",
visibility = ["//visibility:public"],
)