Huge News!Announcing our $40M Series B led by Abstract Ventures.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.15 to 1.3.16

2

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

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

@@ -162,3 +162,4 @@ //////////////////////////////////////////////////////////////////////////////////////

Utils.error("Current version: " + version);
Utils.error("Please update the depsync tool and try again.");
Utils.error("To upgrade the depsync tool, run:");
Utils.error(" `npm install -g depsync`");
return null;

@@ -165,0 +166,0 @@ }

@@ -66,5 +66,7 @@ //////////////////////////////////////////////////////////////////////////////////////

function run(args) {
let version = process.versions.node;
if (Utils.compareVersion(version, "14.14.0") < 0) {
Utils.error("Node.js version must be greater than or equal to 14.14.0\n");
let nodeVersion = process.versions.node;
if (Utils.compareVersion(nodeVersion, "14.14.0") < 0) {
Utils.error("The depsync tool requires Node.js version 14.14.0 or later. ");
Utils.error("Current version: " + nodeVersion);
Utils.error("Please visit https://nodejs.org to download the latest version.");
process.exit(1);

@@ -71,0 +73,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