noredink-ui/BUCK
2023-05-01 14:56:57 -05:00

22 lines
502 B
Python

# A list of available rules and their signatures can be found here: https://buck2.build/docs/api/rules/
load("@prelude-nri//:elm.bzl", "elm_docs")
load("@prelude-nri//:node.bzl", "node_modules")
elm_docs(
name = "docs.json",
elm_json = "elm.json",
src = "src",
)
filegroup(
name = "src",
srcs = glob(["src/**/*.elm"]),
visibility = ["//component-catalog:app"]
)
node_modules(
name = "node_modules",
package = "package.json",
package_lock = "package-lock.json",
)