mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-26 09:11:01 +03:00
22 lines
502 B
Python
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",
|
|
)
|