Socket
Socket
Sign inDemoInstall

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 3.7.4 to 3.7.5

test/undef_file.js

7

index.js

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

var xtend = require('xtend');
var defined = require('defined');

@@ -85,4 +86,8 @@ var inherits = require('inherits');

self.pending ++;
if (row.entry !== false) self.entries.push(path.resolve(row.basedir, row.file));
var basedir = defined(row.basedir, self.basedir);
if (row.entry !== false) {
self.entries.push(path.resolve(basedir, row.file || row.id));
}
self.lookupPackage(row.file, function (err, pkg) {

@@ -89,0 +94,0 @@ if (err && self.options.ignoreMissing) {

3

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

@@ -13,2 +13,3 @@ "main": "index.js",

"concat-stream": "~1.4.5",
"defined": "0.0.0",
"detective": "^4.0.0",

@@ -15,0 +16,0 @@ "duplexer2": "0.0.2",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc