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.
The project is split in 2 folders.
apps/:
docs/: The documentation website of the libraryexamples/: A small expo app to test your changes while developping
src/:
components: The main library along with its components, hooks and theme.- ... other configuration and helper packages.
To get started with the project, run pnpm install in the root directory to install the required dependencies for each package:
pnpm installWhile developing, you can run the example app to test your changes.
Note
To start the example app:
pnpm devTo run the example app on Android:
pnpm dev androidTo run the example app on iOS:
pnpm dev iosTo run the example app on Web:
pnpm dev webMake sure your code passes TypeScript and ESLint. Run the following to verify:
pnpm typecheck
pnpm lintTo fix formatting errors, run the following:
pnpm lint --fixRemember to add tests for your change if possible. Run the unit tests by:
pnpm test:componentsTo test if all the CI steps are working all at once, you can use:
pnpm run ciTo run the documentation in local development, there is a small workaround to properly resolve react-native dependencies. From the project root, you need to run:
pnpm -C ./apps/docs installThen, you will be able to run:
pnpm docs:devIf you want to be able to run the example app after running pnpm -C ./apps/docs install, you might need to clean your node_modules.
To clean all node_modules and cache folders:
pnpm cleanWe follow the conventional commits specification for our commit messages:
fix: bug fixes, e.g. fix crash due to deprecated method.feat: new features, e.g. add new method to the module.refactor: code refactor, e.g. migrate from class components to hooks.docs: changes into documentation, e.g. add usage example for the module..test: adding or updating tests, e.g. add integration tests using detox.chore: tooling changes, e.g. change CI config.
Our pre-commit hooks verify that your commit message matches this format when committing.
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:
pnpm releaseThe package.json file contains various scripts for common tasks:
pnpm typecheck: type-check files with TypeScript.pnpm lint: lint files with ESLint.pnpm test: run the library's components unit tests with Jest.pnpm examples start: start the Metro server for the example app.pnpm examples android: run the example app on Android.pnpm examples ios: run the example app on iOS.
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.
- Follow the pull request template when opening a pull request.
- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.