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

grunt-contrib-sass

Package Overview
Dependencies
Maintainers
5
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.7.2 to 0.7.3

2

package.json
{
"name": "grunt-contrib-sass",
"description": "Compile Sass to CSS",
"version": "0.7.2",
"version": "0.7.3",
"homepage": "https://github.com/gruntjs/grunt-contrib-sass",

@@ -6,0 +6,0 @@ "author": {

@@ -1,2 +0,2 @@

# grunt-contrib-sass v0.7.1 [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-sass)
# grunt-contrib-sass v0.7.3 [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-sass.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-sass)

@@ -248,2 +248,4 @@ > Compile Sass to CSS

* 2014-03-06   v0.7.3   Only create empty dest files when they don't already exist.
* 2014-02-02   v0.7.2   Fix error reporting when Sass is not available.
* 2014-01-28   v0.7.1   Fix regression of Bundler support.

@@ -269,2 +271,2 @@ * 2014-01-26   v0.7.0   Improve Windows support.

*This file was generated on Tue Jan 28 2014 09:56:57.*
*This file was generated on Thu Mar 06 2014 14:43:40.*

@@ -84,4 +84,6 @@ /*

// Make sure grunt creates the destination folders
grunt.file.write(file.dest, '');
// Make sure grunt creates the destination folders if they don't exist
if(!grunt.file.exists(file.dest)) {
grunt.file.write(file.dest, '');
}

@@ -88,0 +90,0 @@ var cp = spawn(bin, args, {stdio: 'inherit'});

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