- Node.js 24+
- pnpm 10+
git clone https://github.com/ryo-manba/data-anim.git
cd data-anim
pnpm installpnpm dev # Watch mode (auto-rebuild on change)
pnpm build # Production buildpnpm test # Run tests once
pnpm test:watch # Watch modepnpm lint # Run oxlint
pnpm lint:fix # Auto-fix lint issues
pnpm format # Format with oxfmt
pnpm format:check # Check formattingRun all checks before submitting a PR:
pnpm check # lint + format:check + test + build- Fork the repository
- Create a branch (
git checkout -b my-feature) - Make your changes
- Add or update tests for your changes
- Run
pnpm checkto verify everything passes - Commit and push
- Open a Pull Request