settings-lib
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -0,1 +1,5 @@ | ||
# v0.1.1 / 2015-03-19 | ||
* Increasing verbosity of error when unable to parse JSON config | ||
# v0.1.0 / 2015-03-18 | ||
@@ -2,0 +6,0 @@ |
var | ||
fs = require('fs'), | ||
util = require('util'), | ||
@@ -125,3 +126,8 @@ async = require('async'), | ||
} catch (ex) { | ||
return callback(ex); | ||
err = new Error( | ||
util.format( | ||
'settings-lib: unable to parse JSON config: %s', | ||
ex.message)); | ||
return callback(err); | ||
} | ||
@@ -128,0 +134,0 @@ } |
@@ -5,3 +5,3 @@ { | ||
"main": "./lib/settings.js", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": "Joshua Thomas (http://github.com/brozeph)", | ||
@@ -8,0 +8,0 @@ "engines": { |
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
29753
729