phecda-core 3.0.0-alpha.4 → 3.0.0-alpha.5

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/dist/index.js CHANGED
@@ -321,7 +321,7 @@ function Init(proto, key) {
321
321
  setVar(proto, key);
322
322
  regisHandler(proto, key, {
323
323
  async init(instance) {
324
- instance[key]();
324
+ return instance[key]();
325
325
  }
326
326
  });
327
327
  }
package/dist/index.mjs CHANGED
@@ -249,7 +249,7 @@ function Init(proto, key) {
249
249
  setVar(proto, key);
250
250
  regisHandler(proto, key, {
251
251
  async init(instance) {
252
- instance[key]();
252
+ return instance[key]();
253
253
  }
254
254
  });
255
255
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phecda-core",
3
- "version": "3.0.0-alpha.4",
3
+ "version": "3.0.0-alpha.5",
4
4
  "description": "provide base function and abstract limit to other phecda module ",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",