Socket
Socket
Sign inDemoInstall

gulp-csslint

Package Overview
Dependencies
62
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.1 to 0.2.2

12

index.js

@@ -96,3 +96,3 @@ 'use strict';

if (builtInReporter) {
output = reporter.startFormat();
output = [reporter.startFormat()];
}

@@ -105,3 +105,3 @@

if (builtInReporter) {
output += reporter.formatResults(file.csslint.originalReport, file.path);
output.push(reporter.formatResults(file.csslint.originalReport, file.path));
}

@@ -116,6 +116,10 @@ else {

function(cb) {
var report;
if (builtInReporter) {
output += reporter.endFormat();
output.push(reporter.endFormat());
report = output.join('');
gutil.log(output);
// Only print report if the report is not empty
report && gutil.log(report);
}

@@ -122,0 +126,0 @@

{
"name": "gulp-csslint",
"version": "0.2.1",
"version": "0.2.2",
"description": "CSSLint plugin for gulp",

@@ -5,0 +5,0 @@ "main": "index.js",

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