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

v3-installer

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v3-installer - npm Package Compare versions

Comparing version 1.0.22 to 1.0.23

cache/downloadJar/manifest.json

2

package.json
{
"name": "v3-installer",
"version": "1.0.22",
"version": "1.0.23",
"description": "v3二次开发插件安装器",

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

@@ -310,8 +310,12 @@ const pathUtils = require('./PathUtils');

let deps = userCfg.dependencies.concat(userCfg.require);
deps.forEach(dep => {
let path = this.getDepNodeDir(dep.name) + PathSep + v3CfgName;
if (fs.existsSync(path)) {
depV3rc[dep.name] = JSON.parse(fs.readFileSync(path));
}
});
if (deps) {
deps.forEach(dep => {
if (dep) {
let path = this.getDepNodeDir(dep.name) + PathSep + v3CfgName;
if (fs.existsSync(path)) {
depV3rc[dep.name] = JSON.parse(fs.readFileSync(path));
}
}
});
}
}

@@ -318,0 +322,0 @@ return depV3rc;

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