maze-ascension/justfile
2025-01-04 23:24:47 +02:00

24 lines
472 B
Makefile

# Default recipe
default:
@just --list
# Run native dev
native-dev:
RUSTC_WRAPPER=sccache RUST_BACKTRACE=full cargo run
# Run native release
native-release:
cargo run --release --no-default-features
# Run web dev
web-dev:
RUST_BACKTRACE=full trunk serve
# Run web release
web-release:
trunk serve --release --no-default-features
# Run tests
test:
RUSTC_WRAPPER=sccache RUST_BACKTRACE=full cargo nextest run --no-default-features --all-targets