Bazel structure and bin to convert HallOfBeorn dump to CSV for ALEP pipeline

This commit is contained in:
Christian Nieves
2023-07-19 00:38:38 -05:00
commit 0359a73df0
20 changed files with 615 additions and 0 deletions

25
BUILD Normal file
View File

@ -0,0 +1,25 @@
package(
default_visibility = ["//visibility:public"],
)
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix github.com/squk/lotr
# gazelle:build_file_name BUILD
gazelle(name = "gazelle")
gazelle(
name = "gazelle-update-repos",
args = [
"-from_file=go.mod",
"-to_macro=deps.bzl%go_dependencies",
"-prune",
"-build_file_proto_mode=disable_global",
],
command = "update-repos",
)
alias(
name = "beornextract",
actual = "//cmd/beornextract:beornextract",
)