lottie-react-native
Version:
React Native bindings for Lottie
64 lines (39 loc) • 1.94 kB
Markdown
Contributions are welcome and are greatly appreciated! Every little bit helps, and credit will
always be given.
After forking to your own github org, do the following steps to get started:
```bash
git clone https://github.com/airbnb/lottie-react-native.git
cd lottie-react-native
npm install
npm run run:packager
```
This codebase adheres to the [Airbnb Styleguide](https://github.com/airbnb/javascript) and is
enforced using [ESLint](http://eslint.org/).
It is recommended that you install an eslint plugin for your editor of choice when working on this
codebase, however you can always check to see if the source code is compliant by running:
```bash
npm run lint
```
Building the docs locally is extremely simple. First execute the following command:
```bash
npm run docs:watch
```
After this, you can open up your browser to the specified port (usually http://localhost:4000 )
The browser will automatically refresh when there are changes to any of the source files.
## Pull Request Guidelines
Before you submit a pull request from your forked repo, check that it meets these guidelines:
1. If the pull request adds functionality, the docs should be updated as part of the same PR.
1. If the pull request adds functionality, code in the example app that demonstrates the new functionality should be updated as part of the same PR.
1. If the pull request adds functionality, the PR description should include motivation and use cases for the feature.
1. If the pull request fixes a bug, an explanation including what the bug was, and how to reproduce it should be included in the PR description.
1. Please rebase and resolve all conflicts before submitting.