Socket
Socket
Sign inDemoInstall

nlf

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

nlf - npm Package Compare versions

Comparing version 0.2.8 to 0.2.9

history.md

10

lib/nlf.js

@@ -166,5 +166,11 @@ /**

// exclude files found in node_modules directories
if (!matchNodeModules.test(matchedFile)) {
found.push(path.join(directory, matchedFile));
if (matchNodeModules.test(matchedFile)) {
continue;
}
var filePath = path.join(directory, matchedFile);
// check that it is a file
if (fs.statSync(filePath).isFile()) {
found.push(filePath);
}
}

@@ -171,0 +177,0 @@

6

package.json

@@ -6,3 +6,3 @@ {

"author": "Ian Kelly <iandotkelly@gmail.com>",
"version": "0.2.8",
"version": "0.2.9",
"license": "MIT",

@@ -19,3 +19,3 @@ "bin": {

"commander": "~2.1.0",
"read-installed": "~1.0.1",
"read-installed": "~2.0.2",
"glob": "~3.2.9",

@@ -27,3 +27,3 @@ "archy": "~0.0.2"

"should": "~3.1.3",
"mocha": "~1.18.0",
"mocha": "~1.18.2",
"globs": "~0.1.1"

@@ -30,0 +30,0 @@ },

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