fable-settings
Advanced tools
Comparing version 3.0.10 to 3.0.11
{ | ||
"name": "fable-settings", | ||
"version": "3.0.10", | ||
"version": "3.0.11", | ||
"description": "A simple, tolerant configuration chain.", | ||
@@ -46,18 +46,8 @@ "main": "source/Fable-Settings.js", | ||
"devDependencies": { | ||
"browserify": "^17.0.0", | ||
"chai": "4.3.10", | ||
"gulp": "^4.0.2", | ||
"gulp-babel": "^8.0.0", | ||
"gulp-sourcemaps": "^3.0.0", | ||
"gulp-terser": "^2.1.0", | ||
"gulp-util": "^3.0.8", | ||
"mocha": "10.2.0", | ||
"nyc": "^15.1.0", | ||
"vinyl-buffer": "^1.0.1", | ||
"vinyl-source-stream": "^2.0.0" | ||
"quackage": "^1.0.33" | ||
}, | ||
"dependencies": { | ||
"fable-serviceproviderbase": "^3.0.12", | ||
"fable-serviceproviderbase": "^3.0.14", | ||
"precedent": "^1.0.15" | ||
} | ||
} |
@@ -21,2 +21,4 @@ /** | ||
this._Package = require('../package.json'); | ||
// Initialize the settings value template processor | ||
@@ -23,0 +25,0 @@ this.settingsTemplateProcessor = new libFableSettingsTemplateProcessor(); |
@@ -20,8 +20,3 @@ /** | ||
{ | ||
setup | ||
( | ||
function() | ||
{ | ||
} | ||
); | ||
setup(()=>{}); | ||
@@ -41,2 +36,6 @@ suite | ||
.to.be.an('object', 'Fable-Settings should initialize as an object directly from the require statement.'); | ||
Expect(tmpFableSettings._PackageFableServiceProvider).to.be.an('object', 'Fable-Log should have a _PackageFableServiceProvider object.'); | ||
Expect(tmpFableSettings._PackageFableServiceProvider.name).equal('fable-serviceproviderbase', 'Fable-Log _PackageFableServiceProvider.package.name should be set.'); | ||
Expect(tmpFableSettings._Package).to.be.an('object', 'Fable-Settings should have a _Package object.'); | ||
Expect(tmpFableSettings._Package.name).to.equal('fable-settings', 'Fable-Settings _Package.package.name should be set.'); | ||
} | ||
@@ -43,0 +42,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
31222
1