mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
65b7603192
* fix(ci): address clippy issue * fix(ci): add missing nightly specifications * fix(ci): set all nightly references * chore(ci): do not lint example crates
32 lines
748 B
TOML
32 lines
748 B
TOML
[tasks.install-cargo-leptos]
|
|
install_crate = { crate_name = "cargo-leptos", binary = "cargo-leptos", test_arg = "--help" }
|
|
|
|
[tasks.cargo-leptos-e2e]
|
|
command = "cargo"
|
|
args = ["leptos", "end-to-end"]
|
|
|
|
[tasks.build]
|
|
clear = true
|
|
command = "cargo"
|
|
args = ["leptos", "build"]
|
|
|
|
[tasks.check]
|
|
clear = true
|
|
dependencies = ["check-debug", "check-release"]
|
|
|
|
[tasks.check-debug]
|
|
toolchain = "nightly-2024-01-29"
|
|
command = "cargo"
|
|
args = ["check-all-features"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.check-release]
|
|
toolchain = "nightly-2024-01-29"
|
|
command = "cargo"
|
|
args = ["check-all-features", "--release"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.start-client]
|
|
dependencies = ["install-cargo-leptos"]
|
|
command = "cargo"
|
|
args = ["leptos", "watch"]
|