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

gulp-kpc

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-kpc - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

8

index.js

@@ -100,9 +100,8 @@ var kpc = require('node-kpc');

result.files.forEach(function(file) {
var code = file.genCode || file.srcCode;
var code = file.genCode || file.srcCode || null;
var gFile = new gUtil.File({
path: path.join(options.path, file.filename),
base: options.path,
contents: new Buffer(code)
contents: code ? new Buffer(code) : null
});

@@ -120,3 +119,3 @@

base: options.path,
contents: new Buffer(depFileCnt)
contents: depFileCnt ? new Buffer(depFileCnt) : null
});

@@ -131,2 +130,1 @@

}
{
"name": "gulp-kpc",
"version": "0.5.0",
"version": "0.5.1",
"description": "kpc plugin for gulp",

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

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