2026-06-22 20:10:38 +02:00
|
|
|
.PHONY: preview dev build test typecheck lint check-install
|
2026-05-26 15:17:33 +02:00
|
|
|
|
|
|
|
|
# Build the production bundle then serve it locally with vite preview.
|
|
|
|
|
# Prints the URL (default http://localhost:4173/) once the server is ready.
|
|
|
|
|
preview:
|
|
|
|
|
pnpm build
|
|
|
|
|
pnpm preview
|
|
|
|
|
|
|
|
|
|
# Dev server with HMR (http://localhost:5173/).
|
|
|
|
|
dev:
|
|
|
|
|
pnpm dev
|
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
pnpm build
|
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
pnpm test
|
|
|
|
|
|
|
|
|
|
typecheck:
|
|
|
|
|
pnpm typecheck
|
|
|
|
|
|
|
|
|
|
lint:
|
|
|
|
|
pnpm lint
|
2026-06-22 20:10:38 +02:00
|
|
|
|
|
|
|
|
# Verify sibling citation-engine checkout, link dependency, and toolchain.
|
|
|
|
|
check-install:
|
|
|
|
|
@bash scripts/check-install.sh
|