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

depsync

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

depsync - npm Package Compare versions

Comparing version 1.3.16 to 1.4.0

2

package.json
{
"name": "depsync",
"version": "1.3.16",
"version": "1.4.0",
"author": "Dom Chen",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/domchen/depsync",

@@ -42,3 +42,8 @@ //////////////////////////////////////////////////////////////////////////////////////

this.nonRecursive = nonRecursive;
this.unfinishFile = path.join(path.dirname(this.configFile), ".git/.DEPS.unfinished");
let gitDir = path.join(path.dirname(this.configFile), ".git");
if (fs.existsSync(gitDir) && !fs.lstatSync(gitDir).isDirectory()) {
this.unfinishFile = path.join(path.dirname(this.configFile), ".DEPS.unfinished");
} else {
this.unfinishFile = path.join(gitDir, ".DEPS.unfinished");
}
}

@@ -45,0 +50,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