srvx-nightly 0.10.1-20260117-115754-64a1485 → 0.10.1-20260117-190542-79d407f

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.
@@ -210,7 +210,6 @@ const NodeRequest = /* @__PURE__ */ (() => {
210
210
  const { req, res } = this.runtime.node;
211
211
  const abortController = this.#abortController;
212
212
  const abort = (err) => abortController.abort?.(err);
213
- req.once("error", abort);
214
213
  if (res) res.once("close", () => {
215
214
  const reqError = req.errored;
216
215
  if (reqError) abort(reqError);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "srvx-nightly",
3
- "version": "0.10.1-20260117-115754-64a1485",
3
+ "version": "0.10.1-20260117-190542-79d407f",
4
4
  "description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
5
5
  "homepage": "https://srvx.h3.dev",
6
6
  "repository": "h3js/srvx",
@@ -51,7 +51,7 @@
51
51
  "srvx": "./bin/srvx.mjs",
52
52
  "test": "pnpm lint && pnpm test:types && vitest run --coverage",
53
53
  "test:node-compat:deno": "deno run vitest test/node.test",
54
- "test:node-compat:bun": "bun test test/node.test.ts",
54
+ "test:node-compat:bun": "bun vitest test/node.test.ts",
55
55
  "test:types": "tsgo --noEmit --skipLibCheck",
56
56
  "vitest": "vitest"
57
57
  },