@contrast/config
Advanced tools
Comparing version 1.16.0 to 1.17.0
@@ -273,3 +273,3 @@ /* | ||
enum: ['error', 'warn', 'info', 'debug', 'trace'], | ||
// default: 'info', this has no default at the config level but is instead handled by `logger-factory`. | ||
// default: 'info', // this has no default at the config level but is instead handled by `@contrast/logger` to account for TS settings. | ||
fn: lowercase, | ||
@@ -276,0 +276,0 @@ desc: 'Set the the log output level. Valid options are `ERROR`, `WARN`, `INFO`, `DEBUG`, and `TRACE`.', |
@@ -137,3 +137,3 @@ /* | ||
try { | ||
fileContents = fs.readFileSync(configPath, 'utf-8'); | ||
fileContents = fs.readFileSync(configPath).toString('utf-8'); | ||
} catch (e) { | ||
@@ -289,2 +289,2 @@ console.error( | ||
// We want to use the set method used here for creating a correct mock object for tests | ||
util.setValue = set; | ||
util.setConfig = setConfig; |
{ | ||
"name": "@contrast/config", | ||
"version": "1.16.0", | ||
"version": "1.17.0", | ||
"description": "An API for discovering Contrast agent configuration data", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE", |
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
37375