Comparing version 1.4.4 to 1.4.5
@@ -9,2 +9,2 @@ var gulp = require('gulp'); | ||
gulp.task('default', [ 'mocha' ]); | ||
gulp.task('default', gulp.parallel([ 'mocha' ])); |
{ | ||
"name": "errorlog", | ||
"description": "Yet another logger for Node", | ||
"version": "1.4.4", | ||
"version": "1.4.5", | ||
"author": { | ||
@@ -26,6 +26,7 @@ "name": "Pier Fumagalli", | ||
"devDependencies": { | ||
"chai": "^3.4.1", | ||
"gulp": "^3.9.0", | ||
"gulp-mocha": "^2.1.3" | ||
} | ||
"chai": "^4.2.0", | ||
"gulp": "^4.0.0", | ||
"gulp-mocha": "^6.0.0" | ||
}, | ||
"dependencies": {} | ||
} |
@@ -37,3 +37,3 @@ 'use strict'; | ||
for (++ ptr; ptr < arg.length; ptr ++) { | ||
if (arg[ptr]) try { | ||
if (typeof arg[ptr] !== 'undefined') try { | ||
var json = JSON.stringify(arg[ptr]); | ||
@@ -40,0 +40,0 @@ if ((json !== '{}') && (! util.isError(arg[ptr]))) { |
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
24736