@aeriajs/server 0.0.259 → 0.0.261

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/init.js CHANGED
@@ -77,7 +77,7 @@ const init = (_options = {}) => {
77
77
  if (options.setup) {
78
78
  await options.setup(parentContext);
79
79
  }
80
- if (!options.config.noWarmup) {
80
+ if (!options.config.server.noWarmup) {
81
81
  await (0, warmup_js_1.warmup)();
82
82
  }
83
83
  const apiRouter = (0, routes_js_1.registerRoutes)();
package/dist/init.mjs CHANGED
@@ -71,7 +71,7 @@ export const init = (_options = {}) => {
71
71
  if (options.setup) {
72
72
  await options.setup(parentContext);
73
73
  }
74
- if (!options.config.noWarmup) {
74
+ if (!options.config.server.noWarmup) {
75
75
  await warmup();
76
76
  }
77
77
  const apiRouter = registerRoutes();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/server",
3
- "version": "0.0.259",
3
+ "version": "0.0.261",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,13 +33,13 @@
33
33
  "mongodb": "^6.16.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@aeriajs/core": "^0.0.257",
37
- "@aeriajs/builtins": "^0.0.257",
36
+ "@aeriajs/core": "^0.0.259",
37
+ "@aeriajs/builtins": "^0.0.259",
38
38
  "@aeriajs/common": "^0.0.144",
39
39
  "@aeriajs/entrypoint": "^0.0.149",
40
- "@aeriajs/http": "^0.0.174",
41
- "@aeriajs/node-http": "^0.0.174",
42
- "@aeriajs/server": "^0.0.259",
40
+ "@aeriajs/http": "^0.0.175",
41
+ "@aeriajs/node-http": "^0.0.175",
42
+ "@aeriajs/server": "^0.0.261",
43
43
  "@aeriajs/types": "^0.0.126",
44
44
  "mongodb": "^6.16.0"
45
45
  },