fable 3.0.90 → 3.0.91
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
package/source/Fable.js
CHANGED
|
@@ -48,6 +48,9 @@ class Fable extends libFableServiceBase.CoreServiceProviderBase
|
|
|
48
48
|
// This is the start actual bootstrapping point for fable.
|
|
49
49
|
// For consistency fable is treated as a service.
|
|
50
50
|
this.ServiceManager = this;
|
|
51
|
+
// TODO: Remove this when Orator and meadow-endpoints are shifted to this new pattern
|
|
52
|
+
this.serviceManager = this;
|
|
53
|
+
// END TODO
|
|
51
54
|
this.connectFable(this);
|
|
52
55
|
// --> Bootstrapping of fable into the Service Manager is complete
|
|
53
56
|
|
|
@@ -249,4 +252,4 @@ module.exports.LogProviderBase = libFableLog.LogProviderBase;
|
|
|
249
252
|
module.exports.ServiceProviderBase = libFableServiceBase;
|
|
250
253
|
module.exports.CoreServiceProviderBase = libFableServiceBase.CoreServiceProviderBase;
|
|
251
254
|
|
|
252
|
-
module.exports.precedent = libFableSettings.precedent;
|
|
255
|
+
module.exports.precedent = libFableSettings.precedent;
|