-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
28 lines (22 loc) · 804 Bytes
/
mise.toml
File metadata and controls
28 lines (22 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-FileCopyrightText: 2026 Sephyi <me@sephy.io>
#
# SPDX-License-Identifier: PolyForm-Noncommercial-1.0.0
[tasks.dev]
run = "cargo leptos watch"
description = "Start dev server with hot reload"
[tasks.build]
run = "cargo leptos build --release"
description = "Production build"
[tasks.content]
run = "cargo test --test content_check"
description = "Validate markdown frontmatter and links"
[tasks.fmt]
run = "cargo fmt"
description = "Format Rust code"
[tasks.check]
run = "cargo clippy --features ssr -- -D warnings && cargo clippy --features hydrate --target wasm32-unknown-unknown -- -D warnings"
description = "Lint server and client code"
[tasks.prerender]
run = "cargo run --bin prerender --features ssr --release"
description = "Pre-render all routes to static HTML"
depends = ["build"]