.PHONY: dev build publish safelist fmt clippy test
dev:
./scripts/dev.sh
build:
./scripts/build.sh
publish:
./scripts/publish.sh
safelist:
pnpm run gen:safelist || npm run gen:safelist
fmt:
cargo fmt --all
clippy:
cargo clippy --all-targets --all-features -- -D warnings
test:
cargo test