Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 577 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (24 loc) · 577 Bytes

Contributing

  • Fork it!
  • Create your feature branch, based on dev:
git checkout -b my-new-feature

Running

You need to install gulp, mocha and istanbul globally:

[sudo] npm i -g gulp mocha istanbul

After that, you need to install local modules:

npm i

Then, you can execute tests with the following command:

gulp

When you're ready, continue with next steps:

  • Write tests;
  • Commit your changes: git commit -m 'Add some feature';
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request :D