Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.81 KB

File metadata and controls

51 lines (30 loc) · 1.81 KB

Grunt homepage | Documentation table of contents

Contributing to grunt

If you want to make contributions to grunt, by all means, please do so. "Patches welcome."

Discussing grunt

Join the freenode #grunt IRC channel. We've got a bot and everything.

Filing issues

If something isn't working like you think it should, read the API documentation. If it still isn't working like you think it should, file an issue. If you'd like to chat directly, pop into IRC.

Cloning grunt

first, ensure that you have the latest Node.js and npm installed.

Fork grunt in GitHub, and clone it locally:

git clone git://github.com/YOURUSERNAME/grunt.git && cd grunt

To download grunt dependencies and add the development grunt bin script to your path:

npm install && npm link

Reverting back to the "live" grunt

If, for some reason, you need to revert back to the current npm grunt release, just reinstall grunt globally via:

npm install -g grunt

Actually contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Fork, tweak, and make pull requests.. but grunt grunt first:

grunt

(you shouldn't see any red or yellow when you do this)

One final note about contributing

I'll be completely up-front: while you know that your idea is well-reasoned and executed, I might need to be convinced of the value of incorporating it into grunt, because it might not be immediately apparent to me. Don't lose hope! All I ask is that you include, along with your pull request, an explanation of how your code is going to improve grunt. Thanks!