mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
29 lines
584 B
TOML
29 lines
584 B
TOML
############
|
|
# A make file for cargo-make, please install it with:
|
|
# cargo install --force cargo-make
|
|
############
|
|
|
|
[config]
|
|
# make tasks run at the workspace root
|
|
default_to_workspace = false
|
|
|
|
[tasks.ci]
|
|
dependencies = ["build", "test"]
|
|
|
|
[tasks.build]
|
|
clear = true
|
|
dependencies = ["build-all"]
|
|
|
|
[tasks.build-all]
|
|
command = "cargo"
|
|
args = ["+nightly", "build-all-features"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.test]
|
|
clear = true
|
|
dependencies = ["test-all"]
|
|
|
|
[tasks.test-all]
|
|
command = "cargo"
|
|
args = ["+nightly", "test-all-features"]
|
|
install_crate = "cargo-all-features"
|