mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-26 09:11:01 +03:00
1d8b1b42f8
reorganize Elm deps to be a bit neater
30 lines
677 B
Python
30 lines
677 B
Python
load("@prelude//toolchains:genrule.bzl", "system_genrule_toolchain")
|
|
load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain", "system_python_toolchain")
|
|
load("@prelude-nri//elm:toolchain.bzl", "elm_toolchain")
|
|
load("@prelude-nri//node:toolchain.bzl", "node_toolchain")
|
|
|
|
system_genrule_toolchain(
|
|
name = "genrule",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
system_python_toolchain(
|
|
name = "python",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
system_python_bootstrap_toolchain(
|
|
name = "python_bootstrap",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
elm_toolchain(
|
|
name = "elm",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
node_toolchain(
|
|
name = "node",
|
|
visibility = ["PUBLIC"],
|
|
)
|