Contributions are always welcome, no matter how large or small!
We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project. Before contributing, please read the code of conduct.
To get started with the project, run yarn
in the root directory to install the required dependencies for each package:
yarn
Make sure your code passes Prettier and ESLint. Run the following to verify:
yarn lint
To fix formatting errors, run the following:
yarn lint --fix
We follow the conventional commits specification for our commit messages:
feat
: new features, e.g. add new method to the module.fix
: bug fixes, e.g. fix crash due to deprecated method.docs
: changes into documentation, e.g. add usage example for the module.style
: changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)refactor
: code refactor, e.g. migrate from class components to hooks.perf
: improvements to code performance, e.g. optimize an algorithm to speed up processing.test
: adding or updating tests, e.g. add integration tests using detox.build
: changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm).chore
: tooling changes, e.g. change CI config.ci
: changes to our CI configuration files and scripts (examples: GitHub Actions, CircleCI).revert
: reverts a previous commit
Our pre-commit hooks verify that your commit message matches this format when committing.
We use the following branche names convention related to conventional commits:
master
is the production branchfeat/<name>
is the name of the feature branchfix/<name>
is the name of the fix branchdocs/<name>
is the name of the docs branchstyle/<name>
is the name of the style branchrefactor/<name>
is the name of the refactor branchperf/<name>
is the name of the perf branchtest/<name>
is the name of the test branchbuild/<name>
is the name of the build branchchore/<name>
is the name of the chore branchci/<name>
is the name of the ci branchrevert/<name>
is the name of the revert branch
We use TypeScript for type checking, ESLint with Prettier for linting and formatting the code, and Jest for testing.
Our pre-commit hooks verify that the linter and tests pass when committing.
We use release-it to make it easier to publish new versions. It handles common tasks like bumping version based on semver, creating tags and releases etc.
To publish new versions, run the following:
yarn release
The package.json
file contains various scripts for common tasks:
yarn start
: watch and build the library in development mode.yarn build
: build the library for production to thedist
folder.yarn test
: run unit tests with Jest.yarn lint
: lint files with ESLint.yarn release
: release a new version of the library.
Working on your first pull request? You can learn how from this free series: How to Contribute to an Open Source Project on GitHub.
When you're sending a pull request:
- Prefer small pull requests focused on one change.
- Verify that linters and tests are passing.
- Review the documentation to make sure it looks good.