-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathBUILD.bazel
More file actions
43 lines (37 loc) · 775 Bytes
/
BUILD.bazel
File metadata and controls
43 lines (37 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
load("@gazelle//:def.bzl", "gazelle")
alias(
name = "buildifier.check",
actual = "//tools/buildifier:check",
)
alias(
name = "buildifier.diff",
actual = "//tools/buildifier:diff",
)
alias(
name = "buildifier.fix",
actual = "//tools/buildifier:fix",
)
exports_files(
[
"README.md",
"MODULE.bazel",
],
visibility = ["//:__subpackages__"],
)
filegroup(
name = "bzl_srcs",
srcs = glob(["*.bzl"]) + [
"//helm:bzl_srcs",
],
visibility = ["//visibility:public"],
)
# This is only needed for WORKSPACE support
# "bazel run" this target after changing go.mod
gazelle(
name = "gazelle-update-repos",
args = [
"-from_file=go.mod",
"-prune",
],
command = "update-repos",
)