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

gulp-jscs

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-jscs - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

12

index.js

@@ -21,4 +21,3 @@ 'use strict';

if (file.isNull()) {
this.push(file);
cb();
cb(null, file);
return;

@@ -28,4 +27,3 @@ }

if (file.isStream()) {
this.emit('error', new gutil.PluginError('gulp-jscs', 'Streaming not supported'));
cb();
cb(new gutil.PluginError('gulp-jscs', 'Streaming not supported'));
return;

@@ -35,4 +33,3 @@ }

if (checker._isExcluded(file.path)) {
this.push(file);
cb();
cb(null, file);
return;

@@ -50,4 +47,3 @@ }

this.push(file);
cb();
cb(null, file);
}, function (cb) {

@@ -54,0 +50,0 @@ if (out.length > 0) {

{
"name": "gulp-jscs",
"version": "1.1.0",
"version": "1.1.1",
"description": "Check JavaScript code style with jscs",

@@ -39,3 +39,3 @@ "license": "MIT",

"jscs": "^1.5.9",
"through2": "^0.5.1"
"through2": "^0.6.1"
},

@@ -42,0 +42,0 @@ "devDependencies": {

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