Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-contrib-sass

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-sass - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

2

docs/options.md

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc