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
20 lines
627 B
TOML
20 lines
627 B
TOML
extend = [
|
|
{ path = "../cargo-make/main.toml" },
|
|
{ path = "../cargo-make/wasm-test.toml" },
|
|
{ path = "../cargo-make/trunk_server.toml" },
|
|
]
|
|
|
|
[tasks.build]
|
|
toolchain = "nightly-2024-01-29"
|
|
command = "cargo"
|
|
args = ["build-all-features", "--target", "wasm32-unknown-unknown"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.check]
|
|
toolchain = "nightly-2024-01-29"
|
|
command = "cargo"
|
|
args = ["check-all-features", "--target", "wasm32-unknown-unknown"]
|
|
install_crate = "cargo-all-features"
|
|
|
|
[tasks.pre-clippy]
|
|
env = { CARGO_MAKE_CLIPPY_ARGS = "--all-targets --all-features --target wasm32-unknown-unknown -- -D warnings" }
|