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

buidler-verify-helper

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buidler-verify-helper - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "buidler-verify-helper",
"version": "1.0.2",
"version": "1.0.3",
"description": "",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -97,3 +97,14 @@ const commandLineArgs = require('command-line-args');

}
cloneFiles(inDir, fileName);
let d = inDir;
if (!fs.existsSync(path.join(inDir, fileName))) {
const subdirs = fs.readdirSync(inDir).filter(t => !t.includes('.'));
for (let subdir of subdirs) {
let d2 = path.join(d, subdir, fileName);
if (fs.existsSync(d2)) {
d = path.join(d, subdir);
mkdirIfNotExists(path.join(outDir, subdir));
}
}
}
cloneFiles(d, fileName);
}

@@ -100,0 +111,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