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.1.9 to 1.2.0

2

package.json
{
"name": "depsync",
"version": "1.1.9",
"version": "1.2.0",
"author": "Dom Chen",

@@ -5,0 +5,0 @@ "homepage": "http://www.idom.me/",

@@ -136,3 +136,6 @@ //////////////////////////////////////////////////////////////////////////////////////

function log(message) {
let text = formatString.apply(this, arguments) + "\n";
let text = formatString.apply(this, arguments);
if (text) {
text += "\n";
}
process.stdout.write(text);

@@ -142,3 +145,6 @@ }

function error(message) {
let text = formatString.apply(this, arguments) + "\n";
let text = formatString.apply(this, arguments);
if (text) {
text += "\n";
}
process.stderr.write(text);

@@ -160,2 +166,3 @@ }

if (quiet) {
log(result.stdout);
error(result.stderr);

@@ -162,0 +169,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