mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-27 09:45:53 +00:00
851 B
851 B
Claude Development Notes
Build Process
- Never run build commands - the user has
npm run devrunning which handles automatic rebuilds - Changes to TypeScript files are automatically compiled and watched
- Do not run
npm run build:clientor similar build commands
Development Workflow
- Make changes to source files in
src/ - The dev server automatically rebuilds and reloads
- Focus on editing source files, not built artifacts
Server Execution
- NEVER RUN THE SERVER YOURSELF, I ALWAYS RUN IT ON THE SIDE VIA NPM RUN DEV!
Code Quality
- ESLint and Prettier are configured for the project
- Run
npm run lintto check for linting issues - Run
npm run lint:fixto automatically fix most issues - Run
npm run formatto format all code with Prettier - Run
npm run format:checkto check formatting without changing files