@primate/core 0.4.4 → 0.4.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.
@@ -328,7 +328,8 @@ export default class ServeApp extends App {
328
328
  status: Status.INTERNAL_SERVER_ERROR,
329
329
  });
330
330
  }
331
- }, this.get(s_http));
331
+ }, { ...this.get(s_http),
332
+ timeout: this.mode === "development" ? 0 : undefined });
332
333
  log.system("started {0}", this.url);
333
334
  }
334
335
  ;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/core",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "The universal web framework",
5
5
  "homepage": "https://primate.run",
6
6
  "bugs": "https://github.com/primate-run/primate/issues",
@@ -23,15 +23,15 @@
23
23
  "@rcompat/bufferview": "^0.3.0",
24
24
  "@rcompat/cli": "^0.11.3",
25
25
  "@rcompat/crypto": "^0.11.0",
26
- "@rcompat/fs": "^0.22.3",
26
+ "@rcompat/fs": "^0.22.4",
27
27
  "@rcompat/function": "^0.9.0",
28
- "@rcompat/http": "^0.16.0",
28
+ "@rcompat/http": "^0.16.1",
29
29
  "@rcompat/kv": "^0.3.0",
30
30
  "@rcompat/record": "^0.9.1",
31
31
  "@rcompat/runtime": "^0.6.0",
32
32
  "@rcompat/string": "^0.10.1",
33
33
  "@rcompat/type": "^0.6.1",
34
- "esbuild": "^0.27.0",
34
+ "esbuild": "^0.27.1",
35
35
  "pema": "^0.4.0"
36
36
  },
37
37
  "type": "module",