22 lines
255 B
Makefile
22 lines
255 B
Makefile
# Start development server
|
|
dev:
|
|
# pnpm dev
|
|
|
|
# Build for production
|
|
build:
|
|
# pnpm build
|
|
# cargo build
|
|
|
|
# Run tests
|
|
test:
|
|
# pnpm test
|
|
# cargo test
|
|
|
|
# Run linter
|
|
lint:
|
|
# pnpm lint
|
|
|
|
# Format code
|
|
format:
|
|
# pnpm fmt
|
|
# cargo fmt
|