Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

module-deps

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

module-deps - npm Package Compare versions

Comparing version 2.1.2 to 2.1.3

11

index.js

@@ -211,3 +211,3 @@ var fs = require('fs');

self.emit('transform', t, file);
nextTick(cb, null, t);
nextTick(cb, null, wrapTransform(t));
}

@@ -217,3 +217,3 @@ else {

if (err) return cb(err);
cb(null, trs);
cb(null, wrapTransform(trs));
});

@@ -443,1 +443,8 @@ }

}
function wrapTransform (tr) {
if (typeof tr.read === 'function') return tr;
var input = through(), output = through();
input.pipe(tr).pipe(output);
return duplexer(input, output);
}

2

package.json
{
"name": "module-deps",
"version": "2.1.2",
"version": "2.1.3",
"description": "walk the dependency graph to generate json output that can be fed into browser-pack",

@@ -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