mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
27 lines
565 B
TOML
27 lines
565 B
TOML
############
|
|
# A make file for cargo-make, please install it with:
|
|
# cargo install --force cargo-make
|
|
############
|
|
|
|
[env]
|
|
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
|
|
|
|
[tasks.check-stable]
|
|
workspace = false
|
|
clear = true
|
|
dependencies = [
|
|
{ name = "check", path = "examples/counter_without_macros" },
|
|
{ name = "check", path = "examples/counters_stable" },
|
|
]
|
|
|
|
[tasks.ci-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "ci-clean"]
|
|
|
|
[tasks.clean-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "clean"]
|