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

fis3-hook-node_modules

Package Overview
Dependencies
Maintainers
4
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fis3-hook-node_modules - npm Package Compare versions

Comparing version 2.0.22 to 2.1.0

2

index.js

@@ -168,5 +168,5 @@ var path = require('path');

// 3 只要包同名就会被 merge
mergeLevel: 1,
mergeLevel: parseInt(process.versions.node) < 5 ? 1 : 0,
ignoreDevDependencies: false,
shimBuffer: true
};

@@ -87,4 +87,7 @@ var fs = require('fs');

// 只有 npm 包去重才会去遍历所有子 node_moudules
// 一般 node >= 5 是不需要这个功能的。
// 可以通过 options.mergeLevel 去配置这个行为。
var subdir = path.join(dirname, 'node_modules');
if (fis.util.isDir(subdir)) {
if (opts.mergeLevel && fis.util.isDir(subdir)) {
pending.push(subdir);

@@ -91,0 +94,0 @@ }

{
"name": "fis3-hook-node_modules",
"version": "2.0.22",
"version": "2.1.0",
"description": "fis3 npm support",

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