Socket
Socket
Sign inDemoInstall

gulp-csslint

Package Overview
Dependencies
40
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

6

index.js
'use strict';
var gutil = require('gulp-util');
var PluginError = require('plugin-error');
var through = require('through2');

@@ -19,3 +19,3 @@ var csslint = require('csslint').CSSLint;

if (file.isNull()) return cb(null, file); // pass along
if (file.isStream()) return cb(new gutil.PluginError('gulp-csslint: Streaming not supported'), file);
if (file.isStream()) return cb(new PluginError('gulp-csslint: Streaming not supported'), file);

@@ -143,3 +143,3 @@ var ruleset = {};

return cb(new gutil.PluginError('gulp-csslint', 'CSSLint failed for ' + file.relative), file);
return cb(new PluginError('gulp-csslint', 'CSSLint failed for ' + file.relative), file);
});

@@ -146,0 +146,0 @@ };

{
"name": "gulp-csslint",
"version": "1.0.0",
"version": "1.0.1",
"description": "CSSLint plugin for gulp",

@@ -11,5 +11,7 @@ "main": "index.js",

"csslint": "^1.0.2",
"gulp-util": "^3.0.7",
"fancy-log": "^1.3.2",
"plugin-error": "^1.0.1",
"rcloader": "^0.2.1",
"through2": "^2.0.1"
"through2": "^2.0.1",
"vinyl": "^2.1.0"
},

@@ -16,0 +18,0 @@ "devDependencies": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc