22 lines
233 B
Makefile
22 lines
233 B
Makefile
default:
|
|
@just --list
|
|
|
|
dev:
|
|
bun run dev
|
|
|
|
lint:
|
|
bun run lint
|
|
|
|
typecheck:
|
|
bun run typecheck
|
|
|
|
test:
|
|
bun run test
|
|
|
|
check: lint typecheck test
|
|
|
|
build:
|
|
bun run build
|
|
|
|
neocities: build
|
|
bashcities -n -p ants push
|