fable 3.0.144 → 3.0.145

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.0.144",
3
+ "version": "3.0.145",
4
4
  "description": "A service dependency injection, configuration and logging library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -60,10 +60,10 @@
60
60
  "cookie": "^0.6.0",
61
61
  "data-arithmatic": "^1.0.7",
62
62
  "dayjs": "^1.11.13",
63
- "fable-log": "^3.0.15",
64
- "fable-serviceproviderbase": "^3.0.14",
65
- "fable-settings": "^3.0.11",
66
- "fable-uuid": "^3.0.9",
63
+ "fable-log": "^3.0.16",
64
+ "fable-serviceproviderbase": "^3.0.15",
65
+ "fable-settings": "^3.0.12",
66
+ "fable-uuid": "^3.0.11",
67
67
  "manyfest": "^1.0.37",
68
68
  "simple-get": "^4.0.1"
69
69
  }
package/source/Fable.js CHANGED
@@ -7,6 +7,8 @@ const libFableSettings = require('fable-settings');
7
7
  const libFableUUID = require('fable-uuid');
8
8
  const libFableLog = require('fable-log');
9
9
 
10
+ const libPackage = require('../package.json');
11
+
10
12
  const libFableServiceBase = require('fable-serviceproviderbase');
11
13
 
12
14
  class Fable extends libFableServiceBase.CoreServiceProviderBase
@@ -17,7 +19,8 @@ class Fable extends libFableServiceBase.CoreServiceProviderBase
17
19
 
18
20
  // Initialization Phase 0: Set up the lowest level state (fable is a utility service manager at heart)
19
21
  this.serviceType = 'ServiceManager';
20
- this._Package = require('../package.json');
22
+ /** @type {Object} */
23
+ this._Package = libPackage;
21
24
 
22
25
  // An array of the types of services available
23
26
  this.serviceTypes = [];