Anki/qt/aqt/data/web/pages/BUILD.bazel
Damien Elmes 7f738c11a2 deck config prototype work in progress
Still in the early stages, and not hooked up yet.
2021-04-14 22:33:10 +10:00

24 lines
455 B
Text

load("//ts:copy.bzl", "copy_files_into_group")
_pages = [
"graphs",
"congrats",
"deckconfig",
]
[copy_files_into_group(
name = name + "_page",
srcs = [
name + "-base.css",
name + ".css",
name + ".html",
name + ".js",
],
package = "//ts/" + name,
) for name in _pages]
filegroup(
name = "pages",
srcs = [name + "_page" for name in _pages],
visibility = ["//qt:__subpackages__"],
)