Comparing version 1.1.9 to 1.2.0
{ | ||
"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 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41522
964