New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-sass

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-sass - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

14

index.js

@@ -13,13 +13,11 @@ var es = require('event-stream')

// file.contents is always a Buffer
var newFile = clone(file);
opts.data = newFile.contents.toString();
opts.data = file.contents.toString();
opts.success = function (css) {
newFile.path = ext(newFile.path, '.css');
newFile.shortened = newFile.shortened && ext(newFile.shortened, '.css');
newFile.contents = new Buffer(css);
file.path = ext(file.path, '.css');
file.shortened = file.shortened && ext(file.shortened, '.css');
file.contents = new Buffer(css);
cb(null, newFile);
cb(null, file);
}

@@ -35,2 +33,2 @@

return es.map(nodeSass);
}
}
{
"name": "gulp-sass",
"version": "0.2.1",
"version": "0.2.2",
"description": "Gulp plugin for sass",

@@ -22,10 +22,11 @@ "main": "index.js",

"dependencies": {
"node-sass": "~0.6.4",
"event-stream": "~3.0.16",
"clone": "~0.1.10",
"gulp-util": "0.0.1"
"node-sass": "~0.7.0",
"gulp-util": "~2.1.3"
},
"devDependencies": {
"gulp": "~0.2.0"
"gulp": "~3.1.4"
}
}

@@ -21,3 +21,3 @@ gulp-sass

gulp.task('sass', function () {
gulp.src('./scss/*.scss'))
gulp.src('./scss/*.scss')
.pipe(sass())

@@ -24,0 +24,0 @@ .pipe(gulp.dest('./css'));

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