nitro-nightly 4.0.0-20251010-091516-7cafddba → 4.0.0-20251030-121649-98b56dfe

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.
Files changed (252) hide show
  1. package/dist/_build/common.mjs +763 -0
  2. package/dist/_build/rolldown.mjs +216 -0
  3. package/dist/_build/rollup.mjs +359 -0
  4. package/dist/_build/vite.build.mjs +67 -0
  5. package/dist/_build/vite.plugin.mjs +747 -0
  6. package/dist/_chunks/B-7HiF0V.mjs +1303 -0
  7. package/dist/_chunks/B3asVbT4.mjs +151 -0
  8. package/dist/_chunks/B5ooyfLk.mjs +372 -0
  9. package/dist/_chunks/DXMHy5ca.mjs +43 -0
  10. package/dist/_dev.d.mts +12 -0
  11. package/dist/_dev.mjs +675 -0
  12. package/dist/_libs/acorn.mjs +5034 -0
  13. package/dist/_libs/c12.mjs +2798 -0
  14. package/dist/_libs/chokidar.mjs +1560 -0
  15. package/dist/_libs/citty.mjs +333 -0
  16. package/dist/_libs/commondir.mjs +22 -0
  17. package/dist/_libs/compatx.mjs +46 -0
  18. package/dist/_libs/confbox.mjs +2920 -0
  19. package/dist/_libs/debug.mjs +848 -0
  20. package/dist/_libs/deepmerge.mjs +86 -0
  21. package/dist/_libs/depd.mjs +314 -0
  22. package/dist/_libs/dot-prop.mjs +138 -0
  23. package/dist/_libs/duplexer.mjs +71 -0
  24. package/dist/_libs/ee-first.mjs +68 -0
  25. package/dist/_libs/encodeurl.mjs +49 -0
  26. package/dist/_libs/escape-html.mjs +58 -0
  27. package/dist/_libs/escape-string-regexp.mjs +8 -0
  28. package/dist/_libs/estree-walker.mjs +330 -0
  29. package/dist/_libs/etag.mjs +75 -0
  30. package/dist/_libs/fdir.mjs +514 -0
  31. package/dist/_libs/fresh.mjs +85 -0
  32. package/dist/_libs/function-bind.mjs +63 -0
  33. package/dist/_libs/gen-mapping.mjs +612 -0
  34. package/dist/_libs/giget.mjs +19076 -0
  35. package/dist/_libs/gzip-size.mjs +21 -0
  36. package/dist/_libs/hasown.mjs +14 -0
  37. package/dist/_libs/http-errors.mjs +436 -0
  38. package/dist/_libs/httpxy.mjs +410 -0
  39. package/dist/_libs/is-core-module.mjs +220 -0
  40. package/dist/_libs/is-module.mjs +13 -0
  41. package/dist/_libs/is-reference.mjs +32 -0
  42. package/dist/_libs/js-tokens.mjs +382 -0
  43. package/dist/_libs/klona.mjs +90 -0
  44. package/dist/_libs/knitwork.mjs +124 -0
  45. package/dist/_libs/local-pkg.mjs +1686 -0
  46. package/dist/_libs/magic-string.mjs +939 -0
  47. package/dist/_libs/mime-db.mjs +7642 -0
  48. package/dist/_libs/mime-types.mjs +162 -0
  49. package/dist/_libs/mime.mjs +1391 -0
  50. package/dist/_libs/node-fetch-native.mjs +173 -0
  51. package/dist/_libs/on-finished.mjs +170 -0
  52. package/dist/_libs/parseurl.mjs +103 -0
  53. package/dist/_libs/path-parse.mjs +47 -0
  54. package/dist/_libs/pathe.mjs +41 -0
  55. package/dist/_libs/picomatch.mjs +1673 -0
  56. package/dist/_libs/plugin-alias.mjs +64 -0
  57. package/dist/_libs/plugin-commonjs.mjs +1489 -0
  58. package/dist/_libs/plugin-inject.mjs +135 -0
  59. package/dist/_libs/plugin-json.mjs +36 -0
  60. package/dist/_libs/plugin-node-resolve.mjs +1553 -0
  61. package/dist/_libs/plugin-replace.mjs +104 -0
  62. package/dist/_libs/pretty-bytes.mjs +116 -0
  63. package/dist/_libs/range-parser.mjs +102 -0
  64. package/dist/_libs/remapping.mjs +117 -0
  65. package/dist/_libs/rou3.mjs +311 -0
  66. package/dist/_libs/send.mjs +857 -0
  67. package/dist/_libs/serve-static.mjs +124 -0
  68. package/dist/_libs/std-env.mjs +158 -0
  69. package/dist/_libs/strip-literal.mjs +51 -0
  70. package/dist/_libs/tinyglobby.mjs +292 -0
  71. package/dist/_libs/ultrahtml.mjs +138 -0
  72. package/dist/_libs/unimport.mjs +3520 -0
  73. package/dist/_libs/untyped.mjs +271 -0
  74. package/dist/_libs/unwasm.mjs +5825 -0
  75. package/dist/_libs/vite-plugin-fullstack.mjs +561 -0
  76. package/dist/_presets.mjs +1723 -0
  77. package/dist/builder.d.mts +54 -0
  78. package/dist/builder.mjs +45 -0
  79. package/dist/cli/_chunks/build.mjs +43 -0
  80. package/dist/cli/_chunks/common.mjs +15 -0
  81. package/dist/cli/_chunks/detect-acorn.mjs +12 -0
  82. package/dist/cli/_chunks/dev.mjs +79 -0
  83. package/dist/cli/_chunks/dist.mjs +3 -0
  84. package/dist/cli/_chunks/dist2.mjs +4 -0
  85. package/dist/cli/_chunks/esm.mjs +3 -0
  86. package/dist/cli/_chunks/json5.mjs +4 -0
  87. package/dist/cli/_chunks/jsonc.mjs +4 -0
  88. package/dist/cli/_chunks/list.mjs +27 -0
  89. package/dist/cli/_chunks/multipart-parser.mjs +6 -0
  90. package/dist/cli/_chunks/prepare.mjs +19 -0
  91. package/dist/cli/_chunks/run.mjs +55 -0
  92. package/dist/cli/_chunks/task.mjs +16 -0
  93. package/dist/cli/_chunks/toml.mjs +4 -0
  94. package/dist/cli/_chunks/yaml.mjs +4 -0
  95. package/dist/cli/index.d.mts +1 -1
  96. package/dist/cli/index.mjs +20 -476
  97. package/dist/node_modules/@speed-highlight/core/dist/index.js +1 -1
  98. package/dist/node_modules/@speed-highlight/core/dist/terminal.js +1 -1
  99. package/dist/node_modules/@speed-highlight/core/package.json +7 -3
  100. package/dist/node_modules/cookie-es/dist/index.mjs +262 -0
  101. package/dist/node_modules/cookie-es/package.json +37 -0
  102. package/dist/node_modules/hookable/dist/index.mjs +243 -266
  103. package/dist/node_modules/hookable/package.json +29 -26
  104. package/dist/node_modules/rendu/dist/index.mjs +380 -0
  105. package/dist/node_modules/rendu/package.json +47 -0
  106. package/dist/presets/_nitro/runtime/nitro-dev.d.mts +1 -0
  107. package/dist/presets/_nitro/runtime/nitro-dev.mjs +44 -38
  108. package/dist/presets/_nitro/runtime/nitro-prerenderer.d.mts +2 -2
  109. package/dist/presets/_nitro/runtime/nitro-prerenderer.mjs +9 -12
  110. package/dist/presets/_nitro/runtime/service-worker.d.mts +1 -0
  111. package/dist/presets/_nitro/runtime/service-worker.mjs +14 -11
  112. package/dist/presets/aws-amplify/runtime/aws-amplify.d.mts +1 -0
  113. package/dist/presets/aws-amplify/runtime/aws-amplify.mjs +6 -5
  114. package/dist/presets/aws-lambda/runtime/_utils.d.mts +8 -13
  115. package/dist/presets/aws-lambda/runtime/_utils.mjs +95 -81
  116. package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.d.mts +1 -2
  117. package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.mjs +25 -27
  118. package/dist/presets/aws-lambda/runtime/aws-lambda.mjs +7 -7
  119. package/dist/presets/azure/runtime/_utils.mjs +43 -43
  120. package/dist/presets/azure/runtime/azure-swa.d.mts +2 -2
  121. package/dist/presets/azure/runtime/azure-swa.mjs +22 -21
  122. package/dist/presets/bun/runtime/bun.d.mts +1 -0
  123. package/dist/presets/bun/runtime/bun.mjs +18 -17
  124. package/dist/presets/cloudflare/runtime/_module-handler.d.mts +10 -7
  125. package/dist/presets/cloudflare/runtime/_module-handler.mjs +79 -87
  126. package/dist/presets/cloudflare/runtime/cloudflare-durable.d.mts +6 -14
  127. package/dist/presets/cloudflare/runtime/cloudflare-durable.mjs +55 -61
  128. package/dist/presets/cloudflare/runtime/cloudflare-module.d.mts +1 -7
  129. package/dist/presets/cloudflare/runtime/cloudflare-module.mjs +12 -14
  130. package/dist/presets/cloudflare/runtime/cloudflare-pages.d.mts +12 -12
  131. package/dist/presets/cloudflare/runtime/cloudflare-pages.mjs +35 -39
  132. package/dist/presets/cloudflare/runtime/plugin.dev.d.mts +2 -2
  133. package/dist/presets/cloudflare/runtime/plugin.dev.mjs +89 -82
  134. package/dist/presets/cloudflare/runtime/shims/workers.dev.mjs +27 -0
  135. package/dist/presets/deno/runtime/deno-deploy.d.mts +1 -0
  136. package/dist/presets/deno/runtime/deno-deploy.mjs +12 -11
  137. package/dist/presets/deno/runtime/deno-server.d.mts +2 -1
  138. package/dist/presets/deno/runtime/deno-server.mjs +31 -39
  139. package/dist/presets/netlify/runtime/netlify-edge.d.mts +2 -1
  140. package/dist/presets/netlify/runtime/netlify-edge.mjs +14 -11
  141. package/dist/presets/netlify/runtime/netlify.mjs +11 -17
  142. package/dist/presets/node/runtime/node-cluster.mjs +49 -48
  143. package/dist/presets/node/runtime/node-middleware.d.mts +3 -2
  144. package/dist/presets/node/runtime/node-middleware.mjs +7 -6
  145. package/dist/presets/node/runtime/node-server.mjs +34 -24
  146. package/dist/presets/standard/runtime/server.d.mts +1 -3
  147. package/dist/presets/standard/runtime/server.mjs +1 -3
  148. package/dist/presets/stormkit/runtime/stormkit.d.mts +13 -13
  149. package/dist/presets/stormkit/runtime/stormkit.mjs +20 -20
  150. package/dist/presets/vercel/runtime/vercel.d.mts +3 -3
  151. package/dist/presets/vercel/runtime/vercel.mjs +15 -14
  152. package/dist/presets/winterjs/runtime/winterjs.d.mts +2 -0
  153. package/dist/presets/winterjs/runtime/winterjs.mjs +72 -68
  154. package/dist/presets/zeabur/runtime/zeabur.d.mts +1 -1
  155. package/dist/runtime/index.d.mts +13 -2
  156. package/dist/runtime/index.mjs +13 -8
  157. package/dist/runtime/internal/app.d.mts +3 -1
  158. package/dist/runtime/internal/app.mjs +179 -140
  159. package/dist/runtime/internal/cache.d.mts +10 -4
  160. package/dist/runtime/internal/cache.mjs +247 -216
  161. package/dist/runtime/internal/context.d.mts +9 -9
  162. package/dist/runtime/internal/context.mjs +17 -10
  163. package/dist/runtime/internal/database.mjs +8 -10
  164. package/dist/runtime/internal/error/dev.d.mts +5 -4
  165. package/dist/runtime/internal/error/dev.mjs +106 -105
  166. package/dist/runtime/internal/error/prod.d.mts +5 -4
  167. package/dist/runtime/internal/error/prod.mjs +51 -59
  168. package/dist/runtime/internal/error/utils.d.mts +4 -4
  169. package/dist/runtime/internal/error/utils.mjs +1 -1
  170. package/dist/runtime/internal/index.d.mts +2 -0
  171. package/dist/runtime/internal/index.mjs +2 -0
  172. package/dist/runtime/internal/lib/http-graceful-shutdown.d.mts +14 -14
  173. package/dist/runtime/internal/lib/http-graceful-shutdown.mjs +248 -209
  174. package/dist/runtime/internal/meta.d.mts +1 -1
  175. package/dist/runtime/internal/meta.mjs +1 -1
  176. package/dist/runtime/internal/plugin.d.mts +2 -2
  177. package/dist/runtime/internal/plugin.mjs +1 -1
  178. package/dist/runtime/internal/renderer.mjs +40 -32
  179. package/dist/runtime/internal/route-rules.d.mts +8 -8
  180. package/dist/runtime/internal/route-rules.mjs +53 -51
  181. package/dist/runtime/internal/routes/dev-tasks.d.mts +1 -2
  182. package/dist/runtime/internal/routes/dev-tasks.mjs +15 -17
  183. package/dist/runtime/internal/routes/openapi.d.mts +1 -0
  184. package/dist/runtime/internal/routes/openapi.mjs +81 -87
  185. package/dist/runtime/internal/routes/renderer-template.d.mts +1 -1
  186. package/dist/runtime/internal/routes/renderer-template.dev.d.mts +1 -2
  187. package/dist/runtime/internal/routes/renderer-template.dev.mjs +10 -17
  188. package/dist/runtime/internal/routes/renderer-template.mjs +1 -1
  189. package/dist/runtime/internal/routes/scalar.d.mts +1 -0
  190. package/dist/runtime/internal/routes/scalar.mjs +22 -23
  191. package/dist/runtime/internal/routes/swagger.d.mts +1 -0
  192. package/dist/runtime/internal/routes/swagger.mjs +9 -11
  193. package/dist/runtime/internal/runtime-config.d.mts +4 -4
  194. package/dist/runtime/internal/runtime-config.mjs +40 -35
  195. package/dist/runtime/internal/shutdown.d.mts +2 -8
  196. package/dist/runtime/internal/shutdown.mjs +32 -30
  197. package/dist/runtime/internal/static.mjs +63 -74
  198. package/dist/runtime/internal/storage.mjs +2 -2
  199. package/dist/runtime/internal/task.d.mts +6 -6
  200. package/dist/runtime/internal/task.mjs +56 -60
  201. package/dist/runtime/internal/utils.d.mts +1 -1
  202. package/dist/runtime/internal/utils.mjs +4 -10
  203. package/dist/types/index.d.mts +2594 -2286
  204. package/dist/types/index.mjs +1 -1
  205. package/dist/vite.d.mts +56 -47
  206. package/dist/vite.mjs +55 -68
  207. package/lib/index.d.mts +1 -0
  208. package/lib/index.mjs +1 -0
  209. package/lib/runtime/meta.mjs +35 -0
  210. package/package.json +49 -50
  211. package/dist/_chunks/app.mjs +0 -19797
  212. package/dist/_chunks/build.mjs +0 -84
  213. package/dist/_chunks/build2.mjs +0 -318
  214. package/dist/_chunks/build3.mjs +0 -6452
  215. package/dist/_chunks/detect-acorn.mjs +0 -503
  216. package/dist/_chunks/index.mjs +0 -22242
  217. package/dist/_chunks/index2.mjs +0 -297
  218. package/dist/_chunks/index3.mjs +0 -1058
  219. package/dist/_chunks/index4.mjs +0 -1206
  220. package/dist/_chunks/info.mjs +0 -11157
  221. package/dist/_chunks/json5.mjs +0 -68
  222. package/dist/_chunks/jsonc.mjs +0 -51
  223. package/dist/_chunks/pathe.M-eThtNZ.mjs +0 -204
  224. package/dist/_chunks/plugin.mjs +0 -960
  225. package/dist/_chunks/server.mjs +0 -254
  226. package/dist/_chunks/snapshot.mjs +0 -284
  227. package/dist/_chunks/toml.mjs +0 -259
  228. package/dist/_chunks/yaml.mjs +0 -86
  229. package/dist/cli/build.mjs +0 -54
  230. package/dist/cli/common.mjs +0 -13
  231. package/dist/cli/dev.mjs +0 -95
  232. package/dist/cli/index2.mjs +0 -17
  233. package/dist/cli/list.mjs +0 -34
  234. package/dist/cli/prepare.mjs +0 -24
  235. package/dist/cli/run.mjs +0 -60
  236. package/dist/index.d.mts +0 -52
  237. package/dist/index.mjs +0 -55
  238. package/dist/node_modules/klona/dist/index.mjs +0 -81
  239. package/dist/node_modules/klona/full/index.mjs +0 -53
  240. package/dist/node_modules/klona/package.json +0 -74
  241. package/dist/node_modules/std-env/dist/index.mjs +0 -1
  242. package/dist/node_modules/std-env/package.json +0 -46
  243. package/dist/presets.mjs +0 -2460
  244. package/dist/runtime/internal/debug.d.mts +0 -2
  245. package/dist/runtime/internal/debug.mjs +0 -5
  246. package/dist/runtime/internal/empty.d.mts +0 -0
  247. package/dist/runtime/internal/vite/dev-entry.d.mts +0 -1
  248. package/dist/runtime/internal/vite/dev-worker.d.mts +0 -1
  249. package/dist/runtime/internal/vite/prod-setup.d.mts +0 -4
  250. package/dist/runtime/internal/vite/ssr-renderer.d.mts +0 -4
  251. package/lib/runtime-meta.mjs +0 -38
  252. /package/lib/{runtime-meta.d.mts → runtime/meta.d.mts} +0 -0
@@ -0,0 +1,173 @@
1
+ import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
2
+ import { i as require_node_fetch_native_DhEqb06g, r as require_node } from "./giget.mjs";
3
+
4
+ //#region node_modules/.pnpm/node-fetch-native@1.6.7/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs
5
+ var require_multipart_parser = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/node-fetch-native@1.6.7/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs": ((exports) => {
6
+ var y = Object.defineProperty;
7
+ var c = (R, o) => y(R, "name", {
8
+ value: o,
9
+ configurable: !0
10
+ });
11
+ const node = require_node();
12
+ __require("node:http"), __require("node:https"), __require("node:zlib"), __require("node:stream"), __require("node:buffer"), __require("node:util"), require_node_fetch_native_DhEqb06g(), __require("node:url"), __require("node:net"), __require("node:fs"), __require("node:path");
13
+ let s = 0;
14
+ const S = {
15
+ START_BOUNDARY: s++,
16
+ HEADER_FIELD_START: s++,
17
+ HEADER_FIELD: s++,
18
+ HEADER_VALUE_START: s++,
19
+ HEADER_VALUE: s++,
20
+ HEADER_VALUE_ALMOST_DONE: s++,
21
+ HEADERS_ALMOST_DONE: s++,
22
+ PART_DATA_START: s++,
23
+ PART_DATA: s++,
24
+ END: s++
25
+ };
26
+ let f = 1;
27
+ const F = {
28
+ PART_BOUNDARY: f,
29
+ LAST_BOUNDARY: f *= 2
30
+ }, LF = 10, CR = 13, SPACE = 32, HYPHEN = 45, COLON = 58, A = 97, Z = 122, lower = c((R) => R | 32, "lower"), noop = c(() => {}, "noop"), g = class g$1 {
31
+ constructor(o) {
32
+ this.index = 0, this.flags = 0, this.onHeaderEnd = noop, this.onHeaderField = noop, this.onHeadersEnd = noop, this.onHeaderValue = noop, this.onPartBegin = noop, this.onPartData = noop, this.onPartEnd = noop, this.boundaryChars = {}, o = `\r
33
+ --` + o;
34
+ const t = new Uint8Array(o.length);
35
+ for (let n = 0; n < o.length; n++) t[n] = o.charCodeAt(n), this.boundaryChars[t[n]] = !0;
36
+ this.boundary = t, this.lookbehind = new Uint8Array(this.boundary.length + 8), this.state = S.START_BOUNDARY;
37
+ }
38
+ write(o) {
39
+ let t = 0;
40
+ const n = o.length;
41
+ let E = this.index, { lookbehind: l, boundary: h, boundaryChars: H, index: e, state: a, flags: d } = this;
42
+ const b = this.boundary.length, m = b - 1, O = o.length;
43
+ let r, P;
44
+ const u = c((D) => {
45
+ this[D + "Mark"] = t;
46
+ }, "mark"), i = c((D) => {
47
+ delete this[D + "Mark"];
48
+ }, "clear"), T = c((D, p, _, N) => {
49
+ (p === void 0 || p !== _) && this[D](N && N.subarray(p, _));
50
+ }, "callback"), L = c((D, p) => {
51
+ const _ = D + "Mark";
52
+ _ in this && (p ? (T(D, this[_], t, o), delete this[_]) : (T(D, this[_], o.length, o), this[_] = 0));
53
+ }, "dataCallback");
54
+ for (t = 0; t < n; t++) switch (r = o[t], a) {
55
+ case S.START_BOUNDARY:
56
+ if (e === h.length - 2) {
57
+ if (r === HYPHEN) d |= F.LAST_BOUNDARY;
58
+ else if (r !== CR) return;
59
+ e++;
60
+ break;
61
+ } else if (e - 1 === h.length - 2) {
62
+ if (d & F.LAST_BOUNDARY && r === HYPHEN) a = S.END, d = 0;
63
+ else if (!(d & F.LAST_BOUNDARY) && r === LF) e = 0, T("onPartBegin"), a = S.HEADER_FIELD_START;
64
+ else return;
65
+ break;
66
+ }
67
+ r !== h[e + 2] && (e = -2), r === h[e + 2] && e++;
68
+ break;
69
+ case S.HEADER_FIELD_START: a = S.HEADER_FIELD, u("onHeaderField"), e = 0;
70
+ case S.HEADER_FIELD:
71
+ if (r === CR) {
72
+ i("onHeaderField"), a = S.HEADERS_ALMOST_DONE;
73
+ break;
74
+ }
75
+ if (e++, r === HYPHEN) break;
76
+ if (r === COLON) {
77
+ if (e === 1) return;
78
+ L("onHeaderField", !0), a = S.HEADER_VALUE_START;
79
+ break;
80
+ }
81
+ if (P = lower(r), P < A || P > Z) return;
82
+ break;
83
+ case S.HEADER_VALUE_START:
84
+ if (r === SPACE) break;
85
+ u("onHeaderValue"), a = S.HEADER_VALUE;
86
+ case S.HEADER_VALUE:
87
+ r === CR && (L("onHeaderValue", !0), T("onHeaderEnd"), a = S.HEADER_VALUE_ALMOST_DONE);
88
+ break;
89
+ case S.HEADER_VALUE_ALMOST_DONE:
90
+ if (r !== LF) return;
91
+ a = S.HEADER_FIELD_START;
92
+ break;
93
+ case S.HEADERS_ALMOST_DONE:
94
+ if (r !== LF) return;
95
+ T("onHeadersEnd"), a = S.PART_DATA_START;
96
+ break;
97
+ case S.PART_DATA_START: a = S.PART_DATA, u("onPartData");
98
+ case S.PART_DATA:
99
+ if (E = e, e === 0) {
100
+ for (t += m; t < O && !(o[t] in H);) t += b;
101
+ t -= m, r = o[t];
102
+ }
103
+ if (e < h.length) h[e] === r ? (e === 0 && L("onPartData", !0), e++) : e = 0;
104
+ else if (e === h.length) e++, r === CR ? d |= F.PART_BOUNDARY : r === HYPHEN ? d |= F.LAST_BOUNDARY : e = 0;
105
+ else if (e - 1 === h.length) if (d & F.PART_BOUNDARY) {
106
+ if (e = 0, r === LF) {
107
+ d &= ~F.PART_BOUNDARY, T("onPartEnd"), T("onPartBegin"), a = S.HEADER_FIELD_START;
108
+ break;
109
+ }
110
+ } else d & F.LAST_BOUNDARY && r === HYPHEN ? (T("onPartEnd"), a = S.END, d = 0) : e = 0;
111
+ if (e > 0) l[e - 1] = r;
112
+ else if (E > 0) {
113
+ const D = new Uint8Array(l.buffer, l.byteOffset, l.byteLength);
114
+ T("onPartData", 0, E, D), E = 0, u("onPartData"), t--;
115
+ }
116
+ break;
117
+ case S.END: break;
118
+ default: throw new Error(`Unexpected state entered: ${a}`);
119
+ }
120
+ L("onHeaderField"), L("onHeaderValue"), L("onPartData"), this.index = e, this.state = a, this.flags = d;
121
+ }
122
+ end() {
123
+ if (this.state === S.HEADER_FIELD_START && this.index === 0 || this.state === S.PART_DATA && this.index === this.boundary.length) this.onPartEnd();
124
+ else if (this.state !== S.END) throw new Error("MultipartParser.end(): stream ended unexpectedly");
125
+ }
126
+ };
127
+ c(g, "MultipartParser");
128
+ let MultipartParser = g;
129
+ function _fileName(R) {
130
+ const o = R.match(/\bfilename=("(.*?)"|([^()<>@,;:\\"/[\]?={}\s\t]+))($|;\s)/i);
131
+ if (!o) return;
132
+ const t = o[2] || o[3] || "";
133
+ let n = t.slice(t.lastIndexOf("\\") + 1);
134
+ return n = n.replace(/%22/g, "\""), n = n.replace(/&#(\d{4});/g, (E, l) => String.fromCharCode(l)), n;
135
+ }
136
+ c(_fileName, "_fileName");
137
+ async function toFormData(R, o) {
138
+ if (!/multipart/i.test(o)) throw new TypeError("Failed to fetch");
139
+ const t = o.match(/boundary=(?:"([^"]+)"|([^;]+))/i);
140
+ if (!t) throw new TypeError("no or bad content-type header, no multipart boundary");
141
+ const n = new MultipartParser(t[1] || t[2]);
142
+ let E, l, h, H, e, a;
143
+ const d = [], b = new node.FormData(), m = c((i) => {
144
+ h += u.decode(i, { stream: !0 });
145
+ }, "onPartData"), O = c((i) => {
146
+ d.push(i);
147
+ }, "appendToFile"), r = c(() => {
148
+ const i = new node.File(d, a, { type: e });
149
+ b.append(H, i);
150
+ }, "appendFileToFormData"), P = c(() => {
151
+ b.append(H, h);
152
+ }, "appendEntryToFormData"), u = new TextDecoder("utf-8");
153
+ u.decode(), n.onPartBegin = function() {
154
+ n.onPartData = m, n.onPartEnd = P, E = "", l = "", h = "", H = "", e = "", a = null, d.length = 0;
155
+ }, n.onHeaderField = function(i) {
156
+ E += u.decode(i, { stream: !0 });
157
+ }, n.onHeaderValue = function(i) {
158
+ l += u.decode(i, { stream: !0 });
159
+ }, n.onHeaderEnd = function() {
160
+ if (l += u.decode(), E = E.toLowerCase(), E === "content-disposition") {
161
+ const i = l.match(/\bname=("([^"]*)"|([^()<>@,;:\\"/[\]?={}\s\t]+))/i);
162
+ i && (H = i[2] || i[3] || ""), a = _fileName(l), a && (n.onPartData = O, n.onPartEnd = r);
163
+ } else E === "content-type" && (e = l);
164
+ l = "", E = "";
165
+ };
166
+ for await (const i of R) n.write(i);
167
+ return n.end(), b;
168
+ }
169
+ c(toFormData, "toFormData"), exports.toFormData = toFormData;
170
+ }) });
171
+
172
+ //#endregion
173
+ export { require_multipart_parser as t };
@@ -0,0 +1,170 @@
1
+ import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
2
+ import { t as require_ee_first } from "./ee-first.mjs";
3
+
4
+ //#region node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/index.js
5
+ var require_on_finished = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/index.js": ((exports, module) => {
6
+ /**
7
+ * Module exports.
8
+ * @public
9
+ */
10
+ module.exports = onFinished;
11
+ module.exports.isFinished = isFinished;
12
+ /**
13
+ * Module dependencies.
14
+ * @private
15
+ */
16
+ var asyncHooks = tryRequireAsyncHooks();
17
+ var first = require_ee_first();
18
+ /**
19
+ * Variables.
20
+ * @private
21
+ */
22
+ /* istanbul ignore next */
23
+ var defer = typeof setImmediate === "function" ? setImmediate : function(fn) {
24
+ process.nextTick(fn.bind.apply(fn, arguments));
25
+ };
26
+ /**
27
+ * Invoke callback when the response has finished, useful for
28
+ * cleaning up resources afterwards.
29
+ *
30
+ * @param {object} msg
31
+ * @param {function} listener
32
+ * @return {object}
33
+ * @public
34
+ */
35
+ function onFinished(msg, listener) {
36
+ if (isFinished(msg) !== false) {
37
+ defer(listener, null, msg);
38
+ return msg;
39
+ }
40
+ attachListener(msg, wrap(listener));
41
+ return msg;
42
+ }
43
+ /**
44
+ * Determine if message is already finished.
45
+ *
46
+ * @param {object} msg
47
+ * @return {boolean}
48
+ * @public
49
+ */
50
+ function isFinished(msg) {
51
+ var socket = msg.socket;
52
+ if (typeof msg.finished === "boolean") return Boolean(msg.finished || socket && !socket.writable);
53
+ if (typeof msg.complete === "boolean") return Boolean(msg.upgrade || !socket || !socket.readable || msg.complete && !msg.readable);
54
+ }
55
+ /**
56
+ * Attach a finished listener to the message.
57
+ *
58
+ * @param {object} msg
59
+ * @param {function} callback
60
+ * @private
61
+ */
62
+ function attachFinishedListener(msg, callback) {
63
+ var eeMsg;
64
+ var eeSocket;
65
+ var finished = false;
66
+ function onFinish(error) {
67
+ eeMsg.cancel();
68
+ eeSocket.cancel();
69
+ finished = true;
70
+ callback(error);
71
+ }
72
+ eeMsg = eeSocket = first([[
73
+ msg,
74
+ "end",
75
+ "finish"
76
+ ]], onFinish);
77
+ function onSocket(socket) {
78
+ msg.removeListener("socket", onSocket);
79
+ if (finished) return;
80
+ if (eeMsg !== eeSocket) return;
81
+ eeSocket = first([[
82
+ socket,
83
+ "error",
84
+ "close"
85
+ ]], onFinish);
86
+ }
87
+ if (msg.socket) {
88
+ onSocket(msg.socket);
89
+ return;
90
+ }
91
+ msg.on("socket", onSocket);
92
+ if (msg.socket === void 0)
93
+ // istanbul ignore next: node.js 0.8 patch
94
+ patchAssignSocket(msg, onSocket);
95
+ }
96
+ /**
97
+ * Attach the listener to the message.
98
+ *
99
+ * @param {object} msg
100
+ * @return {function}
101
+ * @private
102
+ */
103
+ function attachListener(msg, listener) {
104
+ var attached = msg.__onFinished;
105
+ if (!attached || !attached.queue) {
106
+ attached = msg.__onFinished = createListener(msg);
107
+ attachFinishedListener(msg, attached);
108
+ }
109
+ attached.queue.push(listener);
110
+ }
111
+ /**
112
+ * Create listener on message.
113
+ *
114
+ * @param {object} msg
115
+ * @return {function}
116
+ * @private
117
+ */
118
+ function createListener(msg) {
119
+ function listener(err) {
120
+ if (msg.__onFinished === listener) msg.__onFinished = null;
121
+ if (!listener.queue) return;
122
+ var queue = listener.queue;
123
+ listener.queue = null;
124
+ for (var i = 0; i < queue.length; i++) queue[i](err, msg);
125
+ }
126
+ listener.queue = [];
127
+ return listener;
128
+ }
129
+ /**
130
+ * Patch ServerResponse.prototype.assignSocket for node.js 0.8.
131
+ *
132
+ * @param {ServerResponse} res
133
+ * @param {function} callback
134
+ * @private
135
+ */
136
+ // istanbul ignore next: node.js 0.8 patch
137
+ function patchAssignSocket(res, callback) {
138
+ var assignSocket = res.assignSocket;
139
+ if (typeof assignSocket !== "function") return;
140
+ res.assignSocket = function _assignSocket(socket) {
141
+ assignSocket.call(this, socket);
142
+ callback(socket);
143
+ };
144
+ }
145
+ /**
146
+ * Try to require async_hooks
147
+ * @private
148
+ */
149
+ function tryRequireAsyncHooks() {
150
+ try {
151
+ return __require("async_hooks");
152
+ } catch (e) {
153
+ return {};
154
+ }
155
+ }
156
+ /**
157
+ * Wrap function with async resource, if possible.
158
+ * AsyncResource.bind static method backported.
159
+ * @private
160
+ */
161
+ function wrap(fn) {
162
+ var res;
163
+ if (asyncHooks.AsyncResource) res = new asyncHooks.AsyncResource(fn.name || "bound-anonymous-fn");
164
+ if (!res || !res.runInAsyncScope) return fn;
165
+ return res.runInAsyncScope.bind(res, fn, null);
166
+ }
167
+ }) });
168
+
169
+ //#endregion
170
+ export { require_on_finished as t };
@@ -0,0 +1,103 @@
1
+ import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
2
+
3
+ //#region node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/index.js
4
+ var require_parseurl = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/index.js": ((exports, module) => {
5
+ /**
6
+ * Module dependencies.
7
+ * @private
8
+ */
9
+ var url = __require("url");
10
+ var parse = url.parse;
11
+ var Url = url.Url;
12
+ /**
13
+ * Module exports.
14
+ * @public
15
+ */
16
+ module.exports = parseurl;
17
+ module.exports.original = originalurl;
18
+ /**
19
+ * Parse the `req` url with memoization.
20
+ *
21
+ * @param {ServerRequest} req
22
+ * @return {Object}
23
+ * @public
24
+ */
25
+ function parseurl(req) {
26
+ var url$1 = req.url;
27
+ if (url$1 === void 0) return;
28
+ var parsed = req._parsedUrl;
29
+ if (fresh(url$1, parsed)) return parsed;
30
+ parsed = fastparse(url$1);
31
+ parsed._raw = url$1;
32
+ return req._parsedUrl = parsed;
33
+ }
34
+ /**
35
+ * Parse the `req` original url with fallback and memoization.
36
+ *
37
+ * @param {ServerRequest} req
38
+ * @return {Object}
39
+ * @public
40
+ */
41
+ function originalurl(req) {
42
+ var url$1 = req.originalUrl;
43
+ if (typeof url$1 !== "string") return parseurl(req);
44
+ var parsed = req._parsedOriginalUrl;
45
+ if (fresh(url$1, parsed)) return parsed;
46
+ parsed = fastparse(url$1);
47
+ parsed._raw = url$1;
48
+ return req._parsedOriginalUrl = parsed;
49
+ }
50
+ /**
51
+ * Parse the `str` url with fast-path short-cut.
52
+ *
53
+ * @param {string} str
54
+ * @return {Object}
55
+ * @private
56
+ */
57
+ function fastparse(str) {
58
+ if (typeof str !== "string" || str.charCodeAt(0) !== 47) return parse(str);
59
+ var pathname = str;
60
+ var query = null;
61
+ var search = null;
62
+ for (var i = 1; i < str.length; i++) switch (str.charCodeAt(i)) {
63
+ case 63:
64
+ if (search === null) {
65
+ pathname = str.substring(0, i);
66
+ query = str.substring(i + 1);
67
+ search = str.substring(i);
68
+ }
69
+ break;
70
+ case 9:
71
+ case 10:
72
+ case 12:
73
+ case 13:
74
+ case 32:
75
+ case 35:
76
+ case 160:
77
+ case 65279: return parse(str);
78
+ }
79
+ var url$1 = Url !== void 0 ? new Url() : {};
80
+ url$1.path = str;
81
+ url$1.href = str;
82
+ url$1.pathname = pathname;
83
+ if (search !== null) {
84
+ url$1.query = query;
85
+ url$1.search = search;
86
+ }
87
+ return url$1;
88
+ }
89
+ /**
90
+ * Determine if parsed is still fresh for url.
91
+ *
92
+ * @param {string} url
93
+ * @param {object} parsedUrl
94
+ * @return {boolean}
95
+ * @private
96
+ */
97
+ function fresh(url$1, parsedUrl) {
98
+ return typeof parsedUrl === "object" && parsedUrl !== null && (Url === void 0 || parsedUrl instanceof Url) && parsedUrl._raw === url$1;
99
+ }
100
+ }) });
101
+
102
+ //#endregion
103
+ export { require_parseurl as t };
@@ -0,0 +1,47 @@
1
+ import { t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
2
+
3
+ //#region node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js
4
+ var require_path_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js": ((exports, module) => {
5
+ var isWindows = process.platform === "win32";
6
+ var splitWindowsRe = /^(((?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?[\\\/]?)(?:[^\\\/]*[\\\/])*)((\.{1,2}|[^\\\/]+?|)(\.[^.\/\\]*|))[\\\/]*$/;
7
+ var win32 = {};
8
+ function win32SplitPath(filename) {
9
+ return splitWindowsRe.exec(filename).slice(1);
10
+ }
11
+ win32.parse = function(pathString) {
12
+ if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
13
+ var allParts = win32SplitPath(pathString);
14
+ if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
15
+ return {
16
+ root: allParts[1],
17
+ dir: allParts[0] === allParts[1] ? allParts[0] : allParts[0].slice(0, -1),
18
+ base: allParts[2],
19
+ ext: allParts[4],
20
+ name: allParts[3]
21
+ };
22
+ };
23
+ var splitPathRe = /^((\/?)(?:[^\/]*\/)*)((\.{1,2}|[^\/]+?|)(\.[^.\/]*|))[\/]*$/;
24
+ var posix = {};
25
+ function posixSplitPath(filename) {
26
+ return splitPathRe.exec(filename).slice(1);
27
+ }
28
+ posix.parse = function(pathString) {
29
+ if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
30
+ var allParts = posixSplitPath(pathString);
31
+ if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
32
+ return {
33
+ root: allParts[1],
34
+ dir: allParts[0].slice(0, -1),
35
+ base: allParts[2],
36
+ ext: allParts[4],
37
+ name: allParts[3]
38
+ };
39
+ };
40
+ if (isWindows) module.exports = win32.parse;
41
+ else module.exports = posix.parse;
42
+ module.exports.posix = posix.parse;
43
+ module.exports.win32 = win32.parse;
44
+ }) });
45
+
46
+ //#endregion
47
+ export { require_path_parse as t };
@@ -0,0 +1,41 @@
1
+ import { S as normalizeWindowsPath, b as join } from "./c12.mjs";
2
+
3
+ //#region node_modules/.pnpm/pathe@2.0.3/node_modules/pathe/dist/utils.mjs
4
+ const pathSeparators = /* @__PURE__ */ new Set([
5
+ "/",
6
+ "\\",
7
+ void 0
8
+ ]);
9
+ const normalizedAliasSymbol = Symbol.for("pathe:normalizedAlias");
10
+ function normalizeAliases(_aliases) {
11
+ if (_aliases[normalizedAliasSymbol]) return _aliases;
12
+ const aliases = Object.fromEntries(Object.entries(_aliases).sort(([a], [b]) => _compareAliases(a, b)));
13
+ for (const key in aliases) for (const alias in aliases) {
14
+ if (alias === key || key.startsWith(alias)) continue;
15
+ if (aliases[key]?.startsWith(alias) && pathSeparators.has(aliases[key][alias.length])) aliases[key] = aliases[alias] + aliases[key].slice(alias.length);
16
+ }
17
+ Object.defineProperty(aliases, normalizedAliasSymbol, {
18
+ value: true,
19
+ enumerable: false
20
+ });
21
+ return aliases;
22
+ }
23
+ function resolveAlias(path, aliases) {
24
+ const _path = normalizeWindowsPath(path);
25
+ aliases = normalizeAliases(aliases);
26
+ for (const [alias, to] of Object.entries(aliases)) {
27
+ if (!_path.startsWith(alias)) continue;
28
+ if (hasTrailingSlash(_path[(hasTrailingSlash(alias) ? alias.slice(0, -1) : alias).length])) return join(to, _path.slice(alias.length));
29
+ }
30
+ return _path;
31
+ }
32
+ function _compareAliases(a, b) {
33
+ return b.split("/").length - a.split("/").length;
34
+ }
35
+ function hasTrailingSlash(path = "/") {
36
+ const lastChar = path[path.length - 1];
37
+ return lastChar === "/" || lastChar === "\\";
38
+ }
39
+
40
+ //#endregion
41
+ export { resolveAlias as t };