grunt-contrib-sass
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -5,3 +5,3 @@ #### files ```object``` | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/cowboy/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/gruntjs/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
@@ -8,0 +8,0 @@ Note: When the value contains an array of multiple filepaths, the contents are concatenated in the order passed. |
{ | ||
"name": "grunt-contrib-sass", | ||
"description": "Compile Sass to CSS", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-sass", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -16,4 +16,4 @@ # 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) | ||
[grunt]: https://github.com/cowboy/grunt | ||
[getting_started]: https://github.com/cowboy/grunt/blob/master/docs/getting_started.md | ||
[grunt]: https://github.com/gruntjs/grunt | ||
[getting_started]: https://github.com/gruntjs/grunt/blob/master/docs/getting_started.md | ||
@@ -113,3 +113,3 @@ | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/cowboy/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/gruntjs/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)). | ||
@@ -116,0 +116,0 @@ Note: When the value contains an array of multiple filepaths, the contents are concatenated in the order passed. |
@@ -39,2 +39,5 @@ /* | ||
// Make sure grunt creates the destination folders | ||
grunt.file.write(el.dest, ''); | ||
// Add dirs of specified files to the sass path | ||
@@ -45,8 +48,4 @@ files.forEach(function(el) { | ||
var | ||
isWin = process.platform.indexOf('win') !== -1, | ||
cmd = isWin ? 'sass.bat' : 'sass'; | ||
var sass = grunt.util.spawn({ | ||
cmd: cmd, | ||
cmd: process.platform === 'win32' ? 'sass.bat' : 'sass', | ||
args: elArgs.concat(args) | ||
@@ -53,0 +52,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
11749
56