Comparing version 3.0.14 to 3.0.15
{ | ||
"name": "fable-log", | ||
"version": "3.0.14", | ||
"version": "3.0.15", | ||
"description": "A simple logging wrapper.", | ||
@@ -52,7 +52,7 @@ "main": "source/Fable-Log.js", | ||
"devDependencies": { | ||
"quackage": "^1.0.22" | ||
"quackage": "^1.0.33" | ||
}, | ||
"dependencies": { | ||
"fable-serviceproviderbase": "^3.0.12" | ||
"fable-serviceproviderbase": "^3.0.14" | ||
} | ||
} |
@@ -15,2 +15,4 @@ /** | ||
this._Package = require('../package.json'); | ||
let tmpSettings = (typeof(pSettings) === 'object') ? pSettings : {} | ||
@@ -17,0 +19,0 @@ this._Settings = tmpSettings; |
@@ -40,2 +40,6 @@ /** | ||
.to.be.an('object', 'Fable-Log should initialize as an object directly from the require statement.'); | ||
Expect(tmpFableLog._PackageFableServiceProvider).to.be.an('object', 'Fable-Log should have a _PackageFableServiceProvider object.'); | ||
Expect(tmpFableLog._PackageFableServiceProvider.name).equal('fable-serviceproviderbase', 'Fable-Log _PackageFableServiceProvider.package.name should be set.'); | ||
Expect(tmpFableLog._Package).to.be.an('object', 'Fable-Log should have a _Package object.'); | ||
Expect(tmpFableLog._Package.name).to.equal('fable-log', 'Fable-Log _Package.package.name should be set.'); | ||
} | ||
@@ -42,0 +46,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
44403
987