Thank you for taking the time to contribute!
- List available packages with
yarn workspaces list. - If you create a new package under
packages/orpackages/@wroud/, runyarn tst projectfrom that folder and add it as a dev dependency to@wroud/_aggregate. - After moving files or changing imports, run
yarn workspace <project_name> buildto ensure TypeScript rules pass. - Build sources with
yarn buildand then run tests withyarn test run. You can scope the command to a workspace usingyarn workspace <project_name> buildandyarn workspace <project_name> test run. - Fix any test or type errors until the whole suite is green.
- Keep formatting consistent using
yarn prettier <path_to_file> --write.
- Use the Conventional Commits format for commit messages and PR titles.
- Ensure all tests pass before opening a pull request.
We appreciate your contributions!