mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
20 lines
485 B
TOML
20 lines
485 B
TOML
extend = { path = "../cargo-make/main.toml" }
|
|
|
|
[tasks.build]
|
|
command = "cargo"
|
|
args = ["+nightly", "build-all-features"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.check]
|
|
clear = true
|
|
dependencies = ["check-debug", "check-release"]
|
|
|
|
[tasks.check-debug]
|
|
command = "cargo"
|
|
args = ["+nightly", "check-all-features"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.check-release]
|
|
command = "cargo"
|
|
args = ["+nightly", "check-all-features", "--release"]
|
|
install_crate = "cargo-all-features"
|