grunt-contrib-sass
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "grunt-contrib-sass", | ||
"description": "Compile Sass to CSS", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-sass", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"url": "http://sindresorhus.com" | ||
"name": "Grunt Team", | ||
"url": "http://gruntjs.com/" | ||
}, | ||
@@ -10,0 +10,0 @@ "repository": { |
@@ -1,6 +0,4 @@ | ||
# grunt-contrib-sass (not released) [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-sass) | ||
# grunt-contrib-sass [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-sass) | ||
> Compile Sass to CSS. | ||
> Compile Sass to CSS (part of the [grunt-contrib](https://github.com/gruntjs/grunt-contrib) collection). Submitted by [Sindre Sorhus](http://sindresorhus.com). | ||
## Getting Started | ||
@@ -177,5 +175,4 @@ | ||
-- | ||
## Release History | ||
* 2012/08/24 - v0.1.0 - Initial release. | ||
*Task submitted by [Sindre Sorhus](http://sindresorhus.com).* |
@@ -7,3 +7,2 @@ /* | ||
* Licensed under the MIT license. | ||
* https://github.com/gruntjs/grunt-contrib-sass/blob/master/LICENSE-MIT | ||
*/ | ||
@@ -46,4 +45,8 @@ | ||
var | ||
isWin = process.platform.indexOf('win') !== -1, | ||
cmd = isWin ? 'sass.bat' : 'sass'; | ||
var sass = grunt.util.spawn({ | ||
cmd: 'sass', | ||
cmd: cmd, | ||
args: elArgs.concat(args) | ||
@@ -50,0 +53,0 @@ }, function(error, result, code) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11642
9
57
177