@h3ravel/core 1.21.6 → 1.21.7

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.cjs CHANGED
@@ -725,9 +725,9 @@ const h3ravel = async (providers = [], basePath = process.cwd(), config = {
725
725
  });
726
726
  })(app, originalFire);
727
727
  if (config.initialize && h3App) return await Reflect.apply(originalFire, app, [h3App]);
728
- app.fire = async function() {
728
+ app.fire = function() {
729
729
  if (!h3App) throw new ConfigException("Provide a H3 app instance in the config or install @h3ravel/http");
730
- return await Reflect.apply(originalFire, proxyThis, [h3App]);
730
+ return Reflect.apply(originalFire, proxyThis, [h3App]);
731
731
  };
732
732
  return app;
733
733
  };
package/dist/index.js CHANGED
@@ -697,9 +697,9 @@ const h3ravel = async (providers = [], basePath = process.cwd(), config = {
697
697
  });
698
698
  })(app, originalFire);
699
699
  if (config.initialize && h3App) return await Reflect.apply(originalFire, app, [h3App]);
700
- app.fire = async function() {
700
+ app.fire = function() {
701
701
  if (!h3App) throw new ConfigException("Provide a H3 app instance in the config or install @h3ravel/http");
702
- return await Reflect.apply(originalFire, proxyThis, [h3App]);
702
+ return Reflect.apply(originalFire, proxyThis, [h3App]);
703
703
  };
704
704
  return app;
705
705
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/core",
3
- "version": "1.21.6",
3
+ "version": "1.21.7",
4
4
  "description": "Core application container, lifecycle management and service providers for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -54,8 +54,8 @@
54
54
  "semver": "^7.7.2",
55
55
  "srvx": "^0.8.7",
56
56
  "tslib": "^2.8.1",
57
- "@h3ravel/support": "^0.15.6",
58
- "@h3ravel/shared": "^0.27.7"
57
+ "@h3ravel/shared": "^0.27.7",
58
+ "@h3ravel/support": "^0.15.6"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/semver": "^7.7.1",