Skip to content

Commit

Permalink
* rename all_files filegroup to distribution
Browse files Browse the repository at this point in the history
* remove tests from distribution filegroup
* add //vendor files into distribution filegroup
  • Loading branch information
k1nkreet committed Oct 1, 2021
1 parent fd2ff14 commit d881e1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildifier_exclude_patterns = [
]

filegroup(
name = "all_files",
name = "distribution",
testonly = True,
srcs = [
"BUILD.bazel",
Expand All @@ -28,8 +28,8 @@ filegroup(
"//nixpkgs:all_files",
"//protobuf:all_files",
"//rule_info:all_files",
"//tests:all_files",
"//tools:all_files",
"//vendor/bazel_json/lib:all_files",
],
visibility = ["//visibility:public"],
)
Expand Down
7 changes: 7 additions & 0 deletions vendor/bazel_json/lib/BUILD
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
package(default_visibility = ["//:__pkg__"])
exports_files(["json_parser.bzl"])

filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

0 comments on commit d881e1a

Please sign in to comment.