-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBUILD.bazel
33 lines (30 loc) · 1.08 KB
/
BUILD.bazel
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
# This `BUILD.bazel` file allows a `bazel` system (configured outside of this
# repository) to use code in this directory and its subdirectories.
load("@com_github_reboot_dev_mono//reboot/examples:rules.bzl", "write_templated_source_file")
filegroup(
name = "everything",
srcs = glob(
["**/*"],
exclude = [
# Files that may be created by activity in this directory, such
# as manually following the steps of the `README.md` file, but which
# are not part of the "source code" of this repository.
".venv/**/*",
".reboot-hello-venv/**/*",
".pytest_cache/**/*",
"api/gen/**/*.js",
"web/node_modules/**/*",
"web/dist/**/*",
"web/src/gen/**/*.js",
"web/src/gen/**/*.ts",
"web/package-lock.json",
],
),
visibility = ["//visibility:public"],
)
write_templated_source_file(
name = "README_md",
src = "//reboot/examples:README.j2.md",
dest = "README.md",
input_yaml = "//reboot/examples:hello_README.md.yaml",
)