- Run
npm run devin background if the dev server is not already running. - When committing, first run
npx tsc && npx vite buildto test changes and fix any errors. - Any one-off scripts go into data-processing folder.
- Do NOT run
npx tsc && npx vite buildunless expicitly asked.
- Tests are in
/testsfolder (centralized structure mirroring/src) - Run:
npm test(watch mode) ornpm run test:run(single run) - Coverage:
npm run test:coverage(target: 80%+)