grunt-coffee
v0.0.6
Published
JavaScripts your Coffee
Downloads
9,809
Readme
grunt-coffee
JavaScripts your Coffee
Getting Started
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-coffee
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-coffee');
Documentation
You'll need to install grunt-coffee
first:
npm install grunt-coffee
Then modify your grunt.js
file by adding the following line:
grunt.loadNpmTasks('grunt-coffee');
Then add some configuration for the plugin like so:
grunt.initConfig({
...
coffee: {
app: {
src: ['path/to/coffee/files/*.coffee'],
dest: 'where/you/want/your/js/files'
}
},
...
});
Then just run grunt coffee
and enjoy!
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
Release History
0.0.1 - The bare minimum necessary... don't expect it to work
License
Copyright (c) 2012 Aaron D. Valade Licensed under the MIT license.