- Install pnpm:
npm install -g [email protected]
- Fork and clone the repository
- Install dependencies:
pnpm install
- The project uses a monorepo structure with pnpm workspaces:
/packages/react-use-intercom
: Main library package/apps/playground
: Development playground/apps/examples
: Example applications
- Create a new branch for your feature/fix:
git checkout -b your-feature-name
-
Make your changes in the appropriate package
-
To test your changes:
- Start the playground:
pnpm dev
- Run the test suite:
pnpm test
- Run E2E tests:
pnpm test:e2e
- Start the playground:
-
Create a changeset to document your changes:
pnpm changeset
Follow the prompts to describe your changes. This step is required for any user-facing changes.
- Before submitting your PR:
- Ensure all tests pass
- Add or update tests as needed
- Follow the existing code style
- Update documentation if necessary
- Verify your changeset accurately describes the changes
- Update the README.md with details of changes if applicable
- Ensure your PR includes a changeset if it includes user-facing changes
- Write unit tests for new features
- Update existing tests when modifying features
- Ensure all tests pass before submitting a PR
- Add E2E tests for new user-facing features
- Update the README.md if you add or modify features
- Include JSDoc comments for public APIs
- Keep documentation clear and concise