orator 4.0.1 → 4.0.2

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/source/Orator.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orator",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Unopinionated API behavior container - REST or IPC",
5
5
  "main": "source/Orator.js",
6
6
  "scripts": {
@@ -51,12 +51,12 @@
51
51
  },
52
52
  "homepage": "https://github.com/stevenvelozo/orator",
53
53
  "devDependencies": {
54
- "fable": "^3.0.73",
55
- "quackage": "^1.0.17"
54
+ "fable": "^3.0.96",
55
+ "quackage": "^1.0.24"
56
56
  },
57
57
  "dependencies": {
58
- "fable-serviceproviderbase": "^3.0.10",
59
- "find-my-way": "^7.5.0",
58
+ "fable-serviceproviderbase": "^3.0.12",
59
+ "find-my-way": "^7.7.0",
60
60
  "orator-serviceserver-base": "^1.0.0"
61
61
  }
62
62
  }
package/source/Orator.js CHANGED
@@ -118,7 +118,7 @@ class Orator extends libFableServiceProviderBase
118
118
 
119
119
  initialize(fCallback)
120
120
  {
121
- // I hate this -- is there a reason to not require a callback?
121
+ // I hate this -- as long as we want to be "mostly" backwards compatible it needs to do it though
122
122
  let tmpCallback = (typeof(fCallback) === 'function') ? fCallback : () => {};
123
123
 
124
124
  if (!this.initializeTimestamp)
@@ -257,7 +257,7 @@ class Orator extends libFableServiceProviderBase
257
257
  // this accessor function is called.
258
258
  if (!this.serviceServer)
259
259
  {
260
- this.initializeServiceServer();
260
+ this.initialize();
261
261
  }
262
262
 
263
263
  return this.serviceServer;