forked from tweag/rules_haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
executable file
·43 lines (40 loc) · 951 Bytes
/
Copy pathBUILD.bazel
File metadata and controls
executable file
·43 lines (40 loc) · 951 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
exports_files(["start"])
exports_files(
[
".netlify/build.sh",
"serve-docs.sh",
],
visibility = ["//tests/shellcheck:__pkg__"],
)
exports_files(
[
"BUILD.bazel",
"MODULE.bazel",
"WORKSPACE",
"WORKSPACE.bzlmod",
"constants.bzl",
"non_module_dev_deps.bzl",
"non_module_dev_deps_2.bzl",
],
visibility = ["//buildifier:__pkg__"],
)
filegroup(
name = "distribution",
testonly = True,
srcs = [
".bazelrc",
"BUILD.bazel",
"WORKSPACE",
"constants.bzl",
"stackage_snapshot.json",
"stackage_snapshot.yaml",
"//debug/linking_utils:all_files",
"//haskell:all_files",
"//nixpkgs:all_files",
"//protobuf:all_files",
"//rule_info:all_files",
"//tools:all_files",
"//vendor/bazel_json/lib:all_files",
],
visibility = ["//visibility:public"],
)