You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
524 B
Markdown
15 lines
524 B
Markdown
7 months ago
|
# CONTRIBUTING
|
||
|
|
||
|
- Fork it!
|
||
|
- Clone your fork
|
||
|
- Install development dependencies
|
||
|
- ```cd package.js;```
|
||
|
- ```npm install;```
|
||
|
- Create your feature branch: `git checkout -b my-new-feature;`
|
||
|
- Add a test for each new code
|
||
|
- Add add your new code
|
||
|
- Run the tests: `npm test;`
|
||
|
- Check the coverage ```npm run cover-html;``` will produce a file called ```coverage.html;```
|
||
|
- Commit your changes: `git commit -am 'Add some feature'`
|
||
|
- Push to the branch: `git push origin my-new-feature`
|
||
|
- Submit a pull request :D
|