17 lines
No EOL
238 B
Makefile
17 lines
No EOL
238 B
Makefile
_frontend-dev:
|
|
cd ui && pnpm run dev
|
|
|
|
test-frontend:
|
|
cd ui && pnpm run test
|
|
|
|
test-frontend-watch:
|
|
cd ui && pnpm run test:watch
|
|
|
|
typecheck:
|
|
cd ui && tsc -b
|
|
|
|
_api-dev:
|
|
cd api && npm run dev
|
|
|
|
dev:
|
|
just _api-dev & (just _frontend-dev)
|