File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 "lint" : " eslint --fix && echo 'Lint fix complete.'" ,
1313 "format" : " prettier --write . && echo 'Format complete.'" ,
1414 "format:check" : " prettier --check . && echo 'Format check complete.'" ,
15- "test" : " vitest run && echo 'Test complete.' && npm run -s lint" ,
16- "test:unit" : " vitest run --exclude '**/*-e2e.test.js' && echo 'Unit tests complete.' && npm run -s lint" ,
15+ "test" : " vitest run && echo 'Test complete.' && npm run -s lint && npm run -s typecheck " ,
16+ "test:unit" : " vitest run --exclude '**/*-e2e.test.js' && echo 'Unit tests complete.' && npm run -s lint && npm run -s typecheck " ,
1717 "test:e2e" : " vitest run **/*-e2e.test.js && echo 'E2E tests complete.'" ,
1818 "typecheck" : " tsc --noEmit && echo 'Type check complete.'" ,
1919 "check-status" : " [ -n \" $(git status --porcelain)\" ] && { echo '❌ Uncommitted changes'; exit 1; } || echo '✅ Git status is clean.'" ,
You can’t perform that action at this time.
0 commit comments