Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Kellen committed Feb 15, 2013
1 parent b4654a8 commit 4e16c59
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.4.0:
date: 2013-02-15
changes:
- First official release for Grunt 0.4.0.
v0.4.0rc7:
date: 2013-01-23
changes:
Expand Down
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,21 @@
> Compile CoffeeScript files to JavaScript.


## Getting Started
If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide, as it explains how to create a [gruntfile][Getting Started] as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

```shell
npm install grunt-contrib-coffee --save-dev
```

[grunt]: http://gruntjs.com/
[Getting Started]: http://gruntjs.com/getting-started
*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.2](https://github.com/gruntjs/grunt-contrib-coffee/tree/grunt-0.3-stable).*


## Coffee task
_Run this task with the `grunt coffee` command._

_This task is a [multi task][] so any targets, files and options should be specified according to the [multi task][] documentation._
[multi task]: https://github.com/gruntjs/grunt/wiki/Configuring-tasks


_Version `0.4.x` of this plugin is compatible with Grunt `0.4.x`. Version `0.3.x` of this plugin is compatible with Grunt `0.3.x`._

Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
### Options

#### separator
Expand Down Expand Up @@ -56,10 +51,11 @@ coffee: {
}
```

For more examples on how to use the `expand` API shown in the `glob_to_multiple` example, see "Building the files object dynamically" in the grunt wiki entry [Configuring Tasks](http://github.com/gruntjs/grunt/wiki/Configuring-tasks).
For more examples on how to use the `expand` API shown in the `glob_to_multiple` example, see "Building the files object dynamically" in the grunt wiki entry [Configuring Tasks](http://gruntjs.com/configuring-tasks).

## Release History

* 2013-02-14   v0.4.0   First official release for Grunt 0.4.0.
* 2013-01-22   v0.4.0rc7   Updating grunt/gruntplugin dependencies to rc7. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions. Bump coffeescript dependency to 1.4.
* 2013-01-08   v0.4.0rc5   Updating to work with grunt v0.4.0rc5. Switching to this.filesSrc api.
* 2012-12-14   v0.4.0a   Conversion to grunt v0.4 conventions. Remove experimental destination wildcards.
Expand All @@ -72,4 +68,4 @@ For more examples on how to use the `expand` API shown in the `glob_to_multiple`

Task submitted by [Eric Woroshow](http://ericw.ca/)

*This file was generated on Tue Feb 05 2013 10:18:17.*
*This file was generated on Fri Feb 15 2013 18:20:25.*
2 changes: 1 addition & 1 deletion docs/coffee-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ coffee: {
}
```

For more examples on how to use the `expand` API shown in the `glob_to_multiple` example, see "Building the files object dynamically" in the grunt wiki entry [Configuring Tasks](http://github.com/gruntjs/grunt/wiki/Configuring-tasks).
For more examples on how to use the `expand` API shown in the `glob_to_multiple` example, see "Building the files object dynamically" in the grunt wiki entry [Configuring Tasks](http://gruntjs.com/configuring-tasks).
4 changes: 1 addition & 3 deletions docs/coffee-overview.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
{%= s.multi_task %}

_Version `0.4.x` of this plugin is compatible with Grunt `0.4.x`. Version `0.3.x` of this plugin is compatible with Grunt `0.3.x`._
Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
1 change: 1 addition & 0 deletions docs/overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.2](https://github.com/gruntjs/grunt-contrib-coffee/tree/grunt-0.3-stable).*
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-coffee",
"description": "Compile CoffeeScript files to JavaScript.",
"version": "0.4.0rc7",
"version": "0.4.0",
"homepage": "https://github.com/gruntjs/grunt-contrib-coffee",
"author": {
"name": "Grunt Team",
Expand All @@ -22,20 +22,20 @@
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"coffee-script": "~1.4"
"coffee-script": "~1.4.0"
},
"devDependencies": {
"grunt-contrib-jshint": "0.1.1rc6",
"grunt-contrib-nodeunit": "0.1.2rc6",
"grunt-contrib-clean": "0.4.0rc6",
"grunt-contrib-internal": "*",
"grunt": "0.4.0rc7"
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-internal": "~0.4.0",
"grunt": "~0.4.0"
},
"keywords": [
"gruntplugin"
Expand Down

0 comments on commit 4e16c59

Please sign in to comment.