mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
26 lines
654 B
TOML
26 lines
654 B
TOML
[tasks.build]
|
|
install_crate = { crate_name = "wasm-pack", binary = "wasm-pack", test_arg = "--help" }
|
|
clear = true
|
|
command = "deno"
|
|
args = ["task", "build"]
|
|
|
|
[tasks.start-client]
|
|
install_crate = { crate_name = "wasm-pack", binary = "wasm-pack", test_arg = "--help" }
|
|
command = "deno"
|
|
args = ["task", "start"]
|
|
|
|
[tasks.check]
|
|
clear = true
|
|
dependencies = ["check-debug", "check-release"]
|
|
|
|
[tasks.check-debug]
|
|
toolchain = "stable"
|
|
command = "cargo"
|
|
args = ["check-all-features"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.check-release]
|
|
toolchain = "stable"
|
|
command = "cargo"
|
|
args = ["check-all-features", "--release"]
|
|
install_crate = "cargo-all-features"
|