A collection of general use grunt tasks. All tasks are designed with cross platform support in mind and dependencies that can easily be managed through npm.
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-contrib
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-contrib');
bump
(not released)
Bump package version.
Clear files and folders.
Compile CoffeeScript files into JavaScript.
Compress files and folders using gzip or zip.
Copy files into another directory.
Compile handlebars templates to JST file.
Compile Jade templates to HTML.
Compile underscore templates to JST file.
Compile LESS files to CSS.
Minify CSS files.
Optimize RequireJS projects using r.js.
Compile Stylus files into CSS. Preloaded with nib.
Compile YUIDoc Documentation.
Help us squash them by submitting an issue that describes how you encountered it; please be as specific as possible including operating system, node, grunt, and grunt-contrib versions.
- Ensure your task meets the submission guidelines.
- Ensure your task follows the code style guide.
- Submit your pull request against
master
, unless otherwise instructed. - Ensure your pull request only touches what your changing and that it's squashed (ie
git rebase
).
- task should work out of box, cross platform, with a simple
npm install
- task should fill a general need and ideally be pure JavaScript
- task should include tests that cover, at minimal, its basic features
- task should be linted by running
grunt
at root of project - task should use any built-in helpers first for consistency
- code should be indented with 2 spaces
- single quotes should be used where feasible
- commas should be followed by a single space (function params, etc)
- variable declaration should include
var
, no multiple declarations
- tests should be added to the config in
test/grunt.js
- see existing tests for guidance
Currently, testing with grunt is a bit cumbersome--this will be addressed in a future release.
npm install grunt -g
npm install
npm test
See CHANGELOG for release history.