Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 6, 2015
1 parent 196d845 commit ce38246
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v0.9.0:
date: 2015-02-06
changes:
- Remove `banner` option.
- Allow using `--force` to ignore compile errors.
- Increase concurrency count from `2` to `4`.
- Improve Windows support.
v0.8.1:
date: 2014-08-24
changes:
Expand Down
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# grunt-contrib-sass v0.8.1 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-sass)
# grunt-contrib-sass v0.9.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-sass)

> Compile Sass to CSS
Expand Down Expand Up @@ -159,15 +159,6 @@ Default: `false`
Run `sass` with [bundle exec](http://gembundler.com/man/bundle-exec.1.html): `bundle exec sass`.


#### banner

Type: `String`

Prepend the specified string to the output file. Useful for licensing information.

*Can't be used if you use the `sourcemap` option.*


#### update

Type: `Boolean`
Expand Down Expand Up @@ -258,6 +249,7 @@ grunt.initConfig({

## Release History

* 2015-02-06   v0.9.0   Remove `banner` option. Allow using `--force` to ignore compile errors. Increase concurrency count from `2` to `4`. Improve Windows support.
* 2014-08-24   v0.8.1   Fix `check` option.
* 2014-08-21   v0.8.0   Support Sass 3.4 Source Map option. Add `update` option.
* 2014-08-09   v0.7.4   Fix bundleExec option. Fix `os.cpus()` issue. Log `sass` command when `--verbose` flag is set.
Expand All @@ -281,6 +273,6 @@ grunt.initConfig({

---

Task submitted by [Sindre Sorhus](http://github.com/sindresorhus)
Task submitted by [Sindre Sorhus](https://github.com/sindresorhus)

*This file was generated on Sun Aug 24 2014 16:51:41.*
*This file was generated on Fri Feb 06 2015 16:52:23.*
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"scss",
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var path = require('path');
var async = require('async');
var chalk = require('chalk');
var spawn = require('win-spawn');
var spawn = require('cross-spawn');
var grunt = require('grunt');

module.exports = function (files, options, cb) {
Expand Down

0 comments on commit ce38246

Please sign in to comment.