mattercontrol/Justfile

27 lines
325 B
Makefile
Raw Permalink Normal View History

2026-01-28 22:20:51 -08:00
# Start development server
2026-01-28 22:41:50 -08:00
serve-dev:
pnpm dev
# Start production preview server
serve-preview:
pnpm preview
2026-01-28 22:20:51 -08:00
# Build for production
build:
2026-01-28 22:41:50 -08:00
pnpm build
2026-01-28 22:20:51 -08:00
# cargo build
# Run tests
test:
2026-01-28 23:22:55 -08:00
pnpm test:run
2026-01-28 22:20:51 -08:00
# cargo test
# Run linter
lint:
2026-01-28 22:41:50 -08:00
pnpm lint
2026-01-28 22:20:51 -08:00
# Format code
format:
2026-01-28 22:41:50 -08:00
pnpm format
2026-01-28 22:20:51 -08:00
# cargo fmt