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

gulp-compass

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-compass - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

test/.sass-cache/0efeb304f0e3a98f6d2f8bc598377b925d2c32fd/_background.scssc

15

index.js

@@ -15,14 +15,11 @@ 'use strict';

if (file.isNull()) {
cb(null, file);
return;
return cb(null, file);
}
if (file.isStream()) {
cb(new gutil.PluginError(PLUGIN_NAME, 'Streaming not supported'));
return;
return cb(new gutil.PluginError(PLUGIN_NAME, 'Streaming not supported'));
}
if (path.basename(file.path)[0] === '_') {
cb(null, file);
return;
return cb();
}

@@ -32,5 +29,4 @@

if (code === 127) {
cb(new gutil.PluginError(PLUGIN_NAME, 'You need to have Ruby and Compass installed ' +
return cb(new gutil.PluginError(PLUGIN_NAME, 'You need to have Ruby and Compass installed ' +
'and in your system PATH for this task to work.'));
return;
}

@@ -40,4 +36,3 @@

if (code !== 0) {
cb(new gutil.PluginError(PLUGIN_NAME, stdout || 'Compass failed', {fileName: file.path}));
return;
return cb(new gutil.PluginError(PLUGIN_NAME, stdout || 'Compass failed', {fileName: file.path}));
}

@@ -44,0 +39,0 @@

{
"name": "gulp-compass",
"version": "1.3.0",
"version": "1.3.1",
"description": "Compile Compass files",

@@ -34,3 +34,3 @@ "main": "index.js",

"gulp-util": "^3.0.0",
"through2": "^0.5.1",
"through2": "^0.6.1",
"which": "^1.0.5"

@@ -37,0 +37,0 @@ },

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