You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are open to, and grateful for, any contributions made by the community.
4
+
5
+
## Reporting Issues
6
+
7
+
Before opening an issue, please search the [issue tracker](https://github.com/EDITD/react-text-loop/issues) to make sure your issue hasn't already been reported.
8
+
9
+
## Development
10
+
11
+
Visit the [Issue tracker](https://github.com/EDITD/react-text-loop/issues) to find a list of open issues that need attention.
Build package for dev mode. It will automatically watch any changes in `src/` forlder:
19
+
```
20
+
yarn run dev
21
+
```
22
+
23
+
We follow [eslint-config-edited](https://www.npmjs.com/package/eslint-config-edited) for code style.
24
+
25
+
### Building and testing
26
+
27
+
Build package:
28
+
```
29
+
yarn run build
30
+
```
31
+
32
+
To run the tests:
33
+
```
34
+
npm run test
35
+
```
36
+
37
+
To perform linting with `eslint`, run the following:
38
+
```
39
+
npm run lint
40
+
```
41
+
42
+
### New Features
43
+
44
+
Please open an issue with a proposal for a new feature or refactoring before starting on the work. We don't want you to waste your efforts on a pull request that we won't want to accept.
45
+
46
+
## Submitting Changes
47
+
48
+
* Open a new issue in the [Issue tracker](https://github.com/EDITD/react-text-loop/issues).
49
+
* Fork the repo.
50
+
* Create a new feature branch based off the `master` branch.
51
+
* Make sure all tests pass and there are no linting errors.
52
+
* Submit a pull request, referencing any issues it addresses.
53
+
54
+
Please try to keep your pull request focused in scope and avoid including unrelated commits.
55
+
56
+
After you have submitted your pull request, we'll try to get back to you as soon as possible. We may suggest some changes or improvements.
0 commit comments