We want this community to be friendly and respectful to each other. Please read the full text so that you can understand what actions will and will not be tolerated.
All development is done directly on GitHub, and all work is public.
Working on your first pull request? You can learn how from this free series: How to Contribute to an Open Source Project on GitHub.
- Fork the repo and create your branch from
main
(a guide on how to fork a repository). - Run
npm i
to install & set up the development environment. - Do the changes you want and test them out in the TesterApp (
examples/TesterApp
) before sending a pull request.
We follow the conventional commits specification for our commit messages:
fix
: bug fixes, e.g. fix Button color on DarkTheme.feat
: new features, e.g. add Snackbar component.refactor
: code refactor, e.g. new folder structure for components.docs
: changes into documentation, e.g. add usage example for Button.test
: adding or updating tests, e.g. unit, snapshot testing.chore
: tooling changes, e.g. change circleci config.BREAKING CHANGE
: for changes that break existing usage, e.g. change API of a component.
We use typescript
for type checking, eslint
with prettier
for linting and formatting the code, and jest
for testing. You should run the following commands before sending a pull request:
npm run tsc
: type-check files withtsc
.npm run lint
: lint files witheslint
andprettier
.npm run test
: run unit tests withjest
.
- Prefer small pull requests focused on one change.
- Verify that
typescript
,eslint
and all tests are passing. - Verify all in-code documentation is correct (it will be used to generate API documentation).
- Follow the pull request template when opening a pull request.
The example TesterApp uses React Native CLI so make sure you have your environment setup to build native apps.
You can then use Xcode/Android Studio/Gradle to build application or run npx react-native webpack-start
and npx react-native run-ios
/npx react-native run-android
to start development server and run applications in development mode.
The documentation is automatically generated from the TypeScript types and in-code documentation comments using TypeDoc.
We use release-it to automate our release. If you have publish access to the NPM package, run the following from the main branch to publish a new release:
npm run release
NOTE: You must have a GITHUB_TOKEN
environment variable available. You can create a GitHub access token with the "repo" access here.
You can report issues on our bug tracker. Please follow the issue template when opening an issue.
By contributing to react-native-webpack-toolkit
, you agree that your contributions will be licensed under its MIT license.