Add Justfile
This commit is contained in:
parent
d37f5aa794
commit
c2f8e74c2f
2 changed files with 24 additions and 8 deletions
22
Justfile
Normal file
22
Justfile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue