Skip to content

Commit

Permalink
Release version 0.0.2
Browse files Browse the repository at this point in the history
Updated documentation to reflect Derek's `options` contribution and
added him to the package.json as a contributor.
  • Loading branch information
avalade committed May 18, 2012
1 parent 09dbd52 commit a939b91
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
14 changes: 13 additions & 1 deletion README.md
Expand Up @@ -30,18 +30,30 @@ Then add some configuration for the plugin like so:
coffee: {
app: {
src: ['path/to/coffee/files/*.coffee'],
dest: 'where/you/want/your/js/files'
dest: 'where/you/want/your/js/files',
options: {
bare: true
}
}
},
...
});

Then just run `grunt coffee` and enjoy!

Grunt Coffee will, by default, run coffee with the `--bare` flag set.
If you want to run it with the top level variable safety, make sure
you set your options to:

options: {
bare: false
}

## 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][grunt].

## Release History
0.0.2 - added the options object, thanks [Derek](https://github.com/dlindahl)!
0.0.1 - The bare minimum necessary... don't expect it to work

## License
Expand Down
8 changes: 7 additions & 1 deletion package.json
@@ -1,12 +1,18 @@
{
"name": "grunt-coffee",
"description": "JavaScripts your Coffee",
"version": "0.0.1",
"version": "0.0.2",
"homepage": "https://github.com/avalade/grunt-coffee",
"author": {
"name": "Aaron D. Valade",
"email": "adv@alum.mit.edu"
},
"contributors": [
{
"name": "Derek Lindahl",
"url": "https://github.com/dlindahl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/avalade/grunt-coffee.git"
Expand Down

0 comments on commit a939b91

Please sign in to comment.