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,124 @@
1
+ import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
2
+ import { t as require_encodeurl } from "./encodeurl.mjs";
3
+ import { t as require_escape_html } from "./escape-html.mjs";
4
+ import { t as require_parseurl } from "./parseurl.mjs";
5
+ import { t as require_send } from "./send.mjs";
6
+
7
+ //#region node_modules/.pnpm/serve-static@2.2.0/node_modules/serve-static/index.js
8
+ var require_serve_static = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/serve-static@2.2.0/node_modules/serve-static/index.js": ((exports, module) => {
9
+ /**
10
+ * Module dependencies.
11
+ * @private
12
+ */
13
+ var encodeUrl = require_encodeurl();
14
+ var escapeHtml = require_escape_html();
15
+ var parseUrl = require_parseurl();
16
+ var resolve = __require("path").resolve;
17
+ var send = require_send();
18
+ var url = __require("url");
19
+ /**
20
+ * Module exports.
21
+ * @public
22
+ */
23
+ module.exports = serveStatic;
24
+ /**
25
+ * @param {string} root
26
+ * @param {object} [options]
27
+ * @return {function}
28
+ * @public
29
+ */
30
+ function serveStatic(root, options) {
31
+ if (!root) throw new TypeError("root path required");
32
+ if (typeof root !== "string") throw new TypeError("root path must be a string");
33
+ var opts = Object.create(options || null);
34
+ var fallthrough = opts.fallthrough !== false;
35
+ var redirect = opts.redirect !== false;
36
+ var setHeaders = opts.setHeaders;
37
+ if (setHeaders && typeof setHeaders !== "function") throw new TypeError("option setHeaders must be function");
38
+ opts.maxage = opts.maxage || opts.maxAge || 0;
39
+ opts.root = resolve(root);
40
+ var onDirectory = redirect ? createRedirectDirectoryListener() : createNotFoundDirectoryListener();
41
+ return function serveStatic$1(req, res, next) {
42
+ if (req.method !== "GET" && req.method !== "HEAD") {
43
+ if (fallthrough) return next();
44
+ res.statusCode = 405;
45
+ res.setHeader("Allow", "GET, HEAD");
46
+ res.setHeader("Content-Length", "0");
47
+ res.end();
48
+ return;
49
+ }
50
+ var forwardError = !fallthrough;
51
+ var originalUrl = parseUrl.original(req);
52
+ var path = parseUrl(req).pathname;
53
+ if (path === "/" && originalUrl.pathname.substr(-1) !== "/") path = "";
54
+ var stream = send(req, path, opts);
55
+ stream.on("directory", onDirectory);
56
+ if (setHeaders) stream.on("headers", setHeaders);
57
+ if (fallthrough) stream.on("file", function onFile() {
58
+ forwardError = true;
59
+ });
60
+ stream.on("error", function error(err) {
61
+ if (forwardError || !(err.statusCode < 500)) {
62
+ next(err);
63
+ return;
64
+ }
65
+ next();
66
+ });
67
+ stream.pipe(res);
68
+ };
69
+ }
70
+ /**
71
+ * Collapse all leading slashes into a single slash
72
+ * @private
73
+ */
74
+ function collapseLeadingSlashes(str) {
75
+ for (var i = 0; i < str.length; i++) if (str.charCodeAt(i) !== 47) break;
76
+ return i > 1 ? "/" + str.substr(i) : str;
77
+ }
78
+ /**
79
+ * Create a minimal HTML document.
80
+ *
81
+ * @param {string} title
82
+ * @param {string} body
83
+ * @private
84
+ */
85
+ function createHtmlDocument(title, body) {
86
+ return "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\">\n<title>" + title + "</title>\n</head>\n<body>\n<pre>" + body + "</pre>\n</body>\n</html>\n";
87
+ }
88
+ /**
89
+ * Create a directory listener that just 404s.
90
+ * @private
91
+ */
92
+ function createNotFoundDirectoryListener() {
93
+ return function notFound() {
94
+ this.error(404);
95
+ };
96
+ }
97
+ /**
98
+ * Create a directory listener that performs a redirect.
99
+ * @private
100
+ */
101
+ function createRedirectDirectoryListener() {
102
+ return function redirect(res) {
103
+ if (this.hasTrailingSlash()) {
104
+ this.error(404);
105
+ return;
106
+ }
107
+ var originalUrl = parseUrl.original(this.req);
108
+ originalUrl.path = null;
109
+ originalUrl.pathname = collapseLeadingSlashes(originalUrl.pathname + "/");
110
+ var loc = encodeUrl(url.format(originalUrl));
111
+ var doc = createHtmlDocument("Redirecting", "Redirecting to " + escapeHtml(loc));
112
+ res.statusCode = 301;
113
+ res.setHeader("Content-Type", "text/html; charset=UTF-8");
114
+ res.setHeader("Content-Length", Buffer.byteLength(doc));
115
+ res.setHeader("Content-Security-Policy", "default-src 'none'");
116
+ res.setHeader("X-Content-Type-Options", "nosniff");
117
+ res.setHeader("Location", loc);
118
+ res.end(doc);
119
+ };
120
+ }
121
+ }) });
122
+
123
+ //#endregion
124
+ export { require_serve_static as t };
@@ -0,0 +1,158 @@
1
+ //#region node_modules/.pnpm/std-env@3.10.0/node_modules/std-env/dist/index.mjs
2
+ const r = Object.create(null), i = (e) => globalThis.process?.env || import.meta.env || globalThis.Deno?.env.toObject() || globalThis.__env__ || (e ? r : globalThis), o = new Proxy(r, {
3
+ get(e, s) {
4
+ return i()[s] ?? r[s];
5
+ },
6
+ has(e, s) {
7
+ return s in i() || s in r;
8
+ },
9
+ set(e, s, E) {
10
+ const B = i(!0);
11
+ return B[s] = E, !0;
12
+ },
13
+ deleteProperty(e, s) {
14
+ if (!s) return !1;
15
+ const E = i(!0);
16
+ return delete E[s], !0;
17
+ },
18
+ ownKeys() {
19
+ const e = i(!0);
20
+ return Object.keys(e);
21
+ }
22
+ }), t = typeof process < "u" && process.env && process.env.NODE_ENV || "", f = [
23
+ ["APPVEYOR"],
24
+ [
25
+ "AWS_AMPLIFY",
26
+ "AWS_APP_ID",
27
+ { ci: !0 }
28
+ ],
29
+ ["AZURE_PIPELINES", "SYSTEM_TEAMFOUNDATIONCOLLECTIONURI"],
30
+ ["AZURE_STATIC", "INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN"],
31
+ ["APPCIRCLE", "AC_APPCIRCLE"],
32
+ ["BAMBOO", "bamboo_planKey"],
33
+ ["BITBUCKET", "BITBUCKET_COMMIT"],
34
+ ["BITRISE", "BITRISE_IO"],
35
+ ["BUDDY", "BUDDY_WORKSPACE_ID"],
36
+ ["BUILDKITE"],
37
+ ["CIRCLE", "CIRCLECI"],
38
+ ["CIRRUS", "CIRRUS_CI"],
39
+ [
40
+ "CLOUDFLARE_PAGES",
41
+ "CF_PAGES",
42
+ { ci: !0 }
43
+ ],
44
+ [
45
+ "CLOUDFLARE_WORKERS",
46
+ "WORKERS_CI",
47
+ { ci: !0 }
48
+ ],
49
+ ["CODEBUILD", "CODEBUILD_BUILD_ARN"],
50
+ ["CODEFRESH", "CF_BUILD_ID"],
51
+ ["DRONE"],
52
+ ["DRONE", "DRONE_BUILD_EVENT"],
53
+ ["DSARI"],
54
+ ["GITHUB_ACTIONS"],
55
+ ["GITLAB", "GITLAB_CI"],
56
+ ["GITLAB", "CI_MERGE_REQUEST_ID"],
57
+ ["GOCD", "GO_PIPELINE_LABEL"],
58
+ ["LAYERCI"],
59
+ ["HUDSON", "HUDSON_URL"],
60
+ ["JENKINS", "JENKINS_URL"],
61
+ ["MAGNUM"],
62
+ ["NETLIFY"],
63
+ [
64
+ "NETLIFY",
65
+ "NETLIFY_LOCAL",
66
+ { ci: !1 }
67
+ ],
68
+ ["NEVERCODE"],
69
+ ["RENDER"],
70
+ ["SAIL", "SAILCI"],
71
+ ["SEMAPHORE"],
72
+ ["SCREWDRIVER"],
73
+ ["SHIPPABLE"],
74
+ ["SOLANO", "TDDIUM"],
75
+ ["STRIDER"],
76
+ ["TEAMCITY", "TEAMCITY_VERSION"],
77
+ ["TRAVIS"],
78
+ ["VERCEL", "NOW_BUILDER"],
79
+ [
80
+ "VERCEL",
81
+ "VERCEL",
82
+ { ci: !1 }
83
+ ],
84
+ [
85
+ "VERCEL",
86
+ "VERCEL_ENV",
87
+ { ci: !1 }
88
+ ],
89
+ ["APPCENTER", "APPCENTER_BUILD_ID"],
90
+ [
91
+ "CODESANDBOX",
92
+ "CODESANDBOX_SSE",
93
+ { ci: !1 }
94
+ ],
95
+ [
96
+ "CODESANDBOX",
97
+ "CODESANDBOX_HOST",
98
+ { ci: !1 }
99
+ ],
100
+ ["STACKBLITZ"],
101
+ ["STORMKIT"],
102
+ ["CLEAVR"],
103
+ ["ZEABUR"],
104
+ [
105
+ "CODESPHERE",
106
+ "CODESPHERE_APP_ID",
107
+ { ci: !0 }
108
+ ],
109
+ ["RAILWAY", "RAILWAY_PROJECT_ID"],
110
+ ["RAILWAY", "RAILWAY_SERVICE_ID"],
111
+ ["DENO-DEPLOY", "DENO_DEPLOYMENT_ID"],
112
+ [
113
+ "FIREBASE_APP_HOSTING",
114
+ "FIREBASE_APP_HOSTING",
115
+ { ci: !0 }
116
+ ]
117
+ ];
118
+ function b() {
119
+ if (globalThis.process?.env) for (const e of f) {
120
+ const s = e[1] || e[0];
121
+ if (globalThis.process?.env[s]) return {
122
+ name: e[0].toLowerCase(),
123
+ ...e[2]
124
+ };
125
+ }
126
+ return globalThis.process?.env?.SHELL === "/bin/jsh" && globalThis.process?.versions?.webcontainer ? {
127
+ name: "stackblitz",
128
+ ci: !1
129
+ } : {
130
+ name: "",
131
+ ci: !1
132
+ };
133
+ }
134
+ const l = b(), p = l.name;
135
+ function n(e) {
136
+ return e ? e !== "false" : !1;
137
+ }
138
+ const I = globalThis.process?.platform || "", T = n(o.CI) || l.ci !== !1, R = n(globalThis.process?.stdout && globalThis.process?.stdout.isTTY), U = typeof window < "u", d = n(o.DEBUG), a = t === "test" || n(o.TEST), g = t === "production", h = t === "dev" || t === "development", v = n(o.MINIMAL) || T || a || !R, A = /^win/i.test(I), M = /^linux/i.test(I), m = /^darwin/i.test(I), Y = !n(o.NO_COLOR) && (n(o.FORCE_COLOR) || (R || A) && o.TERM !== "dumb" || T), C = (globalThis.process?.versions?.node || "").replace(/^v/, "") || null, V = Number(C?.split(".")[0]) || null, W = globalThis.process || Object.create(null), _ = { versions: {} }, y = new Proxy(W, { get(e, s) {
139
+ if (s === "env") return o;
140
+ if (s in e) return e[s];
141
+ if (s in _) return _[s];
142
+ } }), O = globalThis.process?.release?.name === "node", c = !!globalThis.Bun || !!globalThis.process?.versions?.bun, D = !!globalThis.Deno, L = !!globalThis.fastly, S = !!globalThis.Netlify, u = !!globalThis.EdgeRuntime, N = globalThis.navigator?.userAgent === "Cloudflare-Workers", F = [
143
+ [S, "netlify"],
144
+ [u, "edge-light"],
145
+ [N, "workerd"],
146
+ [L, "fastly"],
147
+ [D, "deno"],
148
+ [c, "bun"],
149
+ [O, "node"]
150
+ ];
151
+ function G() {
152
+ const e = F.find((s) => s[0]);
153
+ if (e) return { name: e[1] };
154
+ }
155
+ const P = G(), K = P?.name || "";
156
+
157
+ //#endregion
158
+ export { p as i, a as n, d as r, T as t };
@@ -0,0 +1,51 @@
1
+ import { s as __toESM } from "../_chunks/DXMHy5ca.mjs";
2
+ import { t as require_js_tokens } from "./js-tokens.mjs";
3
+
4
+ //#region node_modules/.pnpm/strip-literal@3.1.0/node_modules/strip-literal/dist/index.mjs
5
+ var import_js_tokens = /* @__PURE__ */ __toESM(require_js_tokens(), 1);
6
+ const FILL_COMMENT = " ";
7
+ function stripLiteralFromToken(token, fillChar, filter) {
8
+ if (token.type === "SingleLineComment") return FILL_COMMENT.repeat(token.value.length);
9
+ if (token.type === "MultiLineComment") return token.value.replace(/[^\n]/g, FILL_COMMENT);
10
+ if (token.type === "StringLiteral") {
11
+ if (!token.closed) return token.value;
12
+ const body = token.value.slice(1, -1);
13
+ if (filter(body)) return token.value[0] + fillChar.repeat(body.length) + token.value[token.value.length - 1];
14
+ }
15
+ if (token.type === "NoSubstitutionTemplate") {
16
+ const body = token.value.slice(1, -1);
17
+ if (filter(body)) return `\`${body.replace(/[^\n]/g, fillChar)}\``;
18
+ }
19
+ if (token.type === "RegularExpressionLiteral") {
20
+ const body = token.value;
21
+ if (filter(body)) return body.replace(/\/(.*)\/(\w?)$/g, (_, $1, $2) => `/${fillChar.repeat($1.length)}/${$2}`);
22
+ }
23
+ if (token.type === "TemplateHead") {
24
+ const body = token.value.slice(1, -2);
25
+ if (filter(body)) return `\`${body.replace(/[^\n]/g, fillChar)}\${`;
26
+ }
27
+ if (token.type === "TemplateTail") {
28
+ const body = token.value.slice(0, -2);
29
+ if (filter(body)) return `}${body.replace(/[^\n]/g, fillChar)}\``;
30
+ }
31
+ if (token.type === "TemplateMiddle") {
32
+ const body = token.value.slice(1, -2);
33
+ if (filter(body)) return `}${body.replace(/[^\n]/g, fillChar)}\${`;
34
+ }
35
+ return token.value;
36
+ }
37
+ function optionsWithDefaults(options) {
38
+ return {
39
+ fillChar: options?.fillChar ?? " ",
40
+ filter: options?.filter ?? (() => true)
41
+ };
42
+ }
43
+ function stripLiteral(code, options) {
44
+ let result = "";
45
+ const _options = optionsWithDefaults(options);
46
+ for (const token of (0, import_js_tokens.default)(code, { jsx: false })) result += stripLiteralFromToken(token, _options.fillChar, _options.filter);
47
+ return result;
48
+ }
49
+
50
+ //#endregion
51
+ export { stripLiteral as t };
@@ -0,0 +1,292 @@
1
+ import { s as __toESM } from "../_chunks/DXMHy5ca.mjs";
2
+ import { t as require_picomatch } from "./picomatch.mjs";
3
+ import { t as Builder } from "./fdir.mjs";
4
+ import nativeFs from "fs";
5
+ import path, { posix } from "path";
6
+ import { fileURLToPath } from "url";
7
+
8
+ //#region node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs
9
+ var import_picomatch = /* @__PURE__ */ __toESM(require_picomatch(), 1);
10
+ const isReadonlyArray = Array.isArray;
11
+ const isWin = process.platform === "win32";
12
+ const ONLY_PARENT_DIRECTORIES = /^(\/?\.\.)+$/;
13
+ function getPartialMatcher(patterns, options = {}) {
14
+ const patternsCount = patterns.length;
15
+ const patternsParts = Array(patternsCount);
16
+ const matchers = Array(patternsCount);
17
+ const globstarEnabled = !options.noglobstar;
18
+ for (let i = 0; i < patternsCount; i++) {
19
+ const parts = splitPattern(patterns[i]);
20
+ patternsParts[i] = parts;
21
+ const partsCount = parts.length;
22
+ const partMatchers = Array(partsCount);
23
+ for (let j = 0; j < partsCount; j++) partMatchers[j] = (0, import_picomatch.default)(parts[j], options);
24
+ matchers[i] = partMatchers;
25
+ }
26
+ return (input) => {
27
+ const inputParts = input.split("/");
28
+ if (inputParts[0] === ".." && ONLY_PARENT_DIRECTORIES.test(input)) return true;
29
+ for (let i = 0; i < patterns.length; i++) {
30
+ const patternParts = patternsParts[i];
31
+ const matcher = matchers[i];
32
+ const inputPatternCount = inputParts.length;
33
+ const minParts = Math.min(inputPatternCount, patternParts.length);
34
+ let j = 0;
35
+ while (j < minParts) {
36
+ const part = patternParts[j];
37
+ if (part.includes("/")) return true;
38
+ if (!matcher[j](inputParts[j])) break;
39
+ if (globstarEnabled && part === "**") return true;
40
+ j++;
41
+ }
42
+ if (j === inputPatternCount) return true;
43
+ }
44
+ return false;
45
+ };
46
+ }
47
+ /* node:coverage ignore next 2 */
48
+ const WIN32_ROOT_DIR = /^[A-Z]:\/$/i;
49
+ const isRoot = isWin ? (p) => WIN32_ROOT_DIR.test(p) : (p) => p === "/";
50
+ function buildFormat(cwd, root, absolute) {
51
+ if (cwd === root || root.startsWith(`${cwd}/`)) {
52
+ if (absolute) {
53
+ const start = isRoot(cwd) ? cwd.length : cwd.length + 1;
54
+ return (p, isDir) => p.slice(start, isDir ? -1 : void 0) || ".";
55
+ }
56
+ const prefix = root.slice(cwd.length + 1);
57
+ if (prefix) return (p, isDir) => {
58
+ if (p === ".") return prefix;
59
+ const result = `${prefix}/${p}`;
60
+ return isDir ? result.slice(0, -1) : result;
61
+ };
62
+ return (p, isDir) => isDir && p !== "." ? p.slice(0, -1) : p;
63
+ }
64
+ if (absolute) return (p) => posix.relative(cwd, p) || ".";
65
+ return (p) => posix.relative(cwd, `${root}/${p}`) || ".";
66
+ }
67
+ function buildRelative(cwd, root) {
68
+ if (root.startsWith(`${cwd}/`)) {
69
+ const prefix = root.slice(cwd.length + 1);
70
+ return (p) => `${prefix}/${p}`;
71
+ }
72
+ return (p) => {
73
+ const result = posix.relative(cwd, `${root}/${p}`);
74
+ if (p.endsWith("/") && result !== "") return `${result}/`;
75
+ return result || ".";
76
+ };
77
+ }
78
+ const splitPatternOptions = { parts: true };
79
+ function splitPattern(path$1) {
80
+ var _result$parts;
81
+ const result = import_picomatch.default.scan(path$1, splitPatternOptions);
82
+ return ((_result$parts = result.parts) === null || _result$parts === void 0 ? void 0 : _result$parts.length) ? result.parts : [path$1];
83
+ }
84
+ const POSIX_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}*?|]|^!|[!+@](?=\()|\\(?![()[\]{}!*+?@|]))/g;
85
+ const WIN32_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}]|^!|[!+@](?=\())/g;
86
+ const escapePosixPath = (path$1) => path$1.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, "\\$&");
87
+ const escapeWin32Path = (path$1) => path$1.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, "\\$&");
88
+ /**
89
+ * Escapes a path's special characters depending on the platform.
90
+ * @see {@link https://superchupu.dev/tinyglobby/documentation#escapePath}
91
+ */
92
+ /* node:coverage ignore next */
93
+ const escapePath = isWin ? escapeWin32Path : escapePosixPath;
94
+ /**
95
+ * Checks if a pattern has dynamic parts.
96
+ *
97
+ * Has a few minor differences with [`fast-glob`](https://github.com/mrmlnc/fast-glob) for better accuracy:
98
+ *
99
+ * - Doesn't necessarily return `false` on patterns that include `\`.
100
+ * - Returns `true` if the pattern includes parentheses, regardless of them representing one single pattern or not.
101
+ * - Returns `true` for unfinished glob extensions i.e. `(h`, `+(h`.
102
+ * - Returns `true` for unfinished brace expansions as long as they include `,` or `..`.
103
+ *
104
+ * @see {@link https://superchupu.dev/tinyglobby/documentation#isDynamicPattern}
105
+ */
106
+ function isDynamicPattern(pattern, options) {
107
+ if ((options === null || options === void 0 ? void 0 : options.caseSensitiveMatch) === false) return true;
108
+ const scan = import_picomatch.default.scan(pattern);
109
+ return scan.isGlob || scan.negated;
110
+ }
111
+ function log(...tasks) {
112
+ console.log(`[tinyglobby ${(/* @__PURE__ */ new Date()).toLocaleTimeString("es")}]`, ...tasks);
113
+ }
114
+ const PARENT_DIRECTORY = /^(\/?\.\.)+/;
115
+ const ESCAPING_BACKSLASHES = /\\(?=[()[\]{}!*+?@|])/g;
116
+ const BACKSLASHES = /\\/g;
117
+ function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
118
+ let result = pattern;
119
+ if (pattern.endsWith("/")) result = pattern.slice(0, -1);
120
+ if (!result.endsWith("*") && expandDirectories) result += "/**";
121
+ const escapedCwd = escapePath(cwd);
122
+ if (path.isAbsolute(result.replace(ESCAPING_BACKSLASHES, ""))) result = posix.relative(escapedCwd, result);
123
+ else result = posix.normalize(result);
124
+ const parentDirectoryMatch = PARENT_DIRECTORY.exec(result);
125
+ const parts = splitPattern(result);
126
+ if (parentDirectoryMatch === null || parentDirectoryMatch === void 0 ? void 0 : parentDirectoryMatch[0]) {
127
+ const n = (parentDirectoryMatch[0].length + 1) / 3;
128
+ let i = 0;
129
+ const cwdParts = escapedCwd.split("/");
130
+ while (i < n && parts[i + n] === cwdParts[cwdParts.length + i - n]) {
131
+ result = result.slice(0, (n - i - 1) * 3) + result.slice((n - i) * 3 + parts[i + n].length + 1) || ".";
132
+ i++;
133
+ }
134
+ const potentialRoot = posix.join(cwd, parentDirectoryMatch[0].slice(i * 3));
135
+ if (!potentialRoot.startsWith(".") && props.root.length > potentialRoot.length) {
136
+ props.root = potentialRoot;
137
+ props.depthOffset = -n + i;
138
+ }
139
+ }
140
+ if (!isIgnore && props.depthOffset >= 0) {
141
+ var _props$commonPath;
142
+ (_props$commonPath = props.commonPath) !== null && _props$commonPath !== void 0 || (props.commonPath = parts);
143
+ const newCommonPath = [];
144
+ const length = Math.min(props.commonPath.length, parts.length);
145
+ for (let i = 0; i < length; i++) {
146
+ const part = parts[i];
147
+ if (part === "**" && !parts[i + 1]) {
148
+ newCommonPath.pop();
149
+ break;
150
+ }
151
+ if (part !== props.commonPath[i] || isDynamicPattern(part) || i === parts.length - 1) break;
152
+ newCommonPath.push(part);
153
+ }
154
+ props.depthOffset = newCommonPath.length;
155
+ props.commonPath = newCommonPath;
156
+ props.root = newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd;
157
+ }
158
+ return result;
159
+ }
160
+ function processPatterns({ patterns = ["**/*"], ignore = [], expandDirectories = true }, cwd, props) {
161
+ if (typeof patterns === "string") patterns = [patterns];
162
+ if (typeof ignore === "string") ignore = [ignore];
163
+ const matchPatterns = [];
164
+ const ignorePatterns = [];
165
+ for (const pattern of ignore) {
166
+ if (!pattern) continue;
167
+ if (pattern[0] !== "!" || pattern[1] === "(") ignorePatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, true));
168
+ }
169
+ for (const pattern of patterns) {
170
+ if (!pattern) continue;
171
+ if (pattern[0] !== "!" || pattern[1] === "(") matchPatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, false));
172
+ else if (pattern[1] !== "!" || pattern[2] === "(") ignorePatterns.push(normalizePattern(pattern.slice(1), expandDirectories, cwd, props, true));
173
+ }
174
+ return {
175
+ match: matchPatterns,
176
+ ignore: ignorePatterns
177
+ };
178
+ }
179
+ function formatPaths(paths, relative$1) {
180
+ for (let i = paths.length - 1; i >= 0; i--) {
181
+ const path$1 = paths[i];
182
+ paths[i] = relative$1(path$1);
183
+ }
184
+ return paths;
185
+ }
186
+ function normalizeCwd(cwd) {
187
+ if (!cwd) return process.cwd().replace(BACKSLASHES, "/");
188
+ if (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, "/");
189
+ return path.resolve(cwd).replace(BACKSLASHES, "/");
190
+ }
191
+ function getCrawler(patterns, inputOptions = {}) {
192
+ const options = process.env.TINYGLOBBY_DEBUG ? {
193
+ ...inputOptions,
194
+ debug: true
195
+ } : inputOptions;
196
+ const cwd = normalizeCwd(options.cwd);
197
+ if (options.debug) log("globbing with:", {
198
+ patterns,
199
+ options,
200
+ cwd
201
+ });
202
+ if (Array.isArray(patterns) && patterns.length === 0) return [{
203
+ sync: () => [],
204
+ withPromise: async () => []
205
+ }, false];
206
+ const props = {
207
+ root: cwd,
208
+ commonPath: null,
209
+ depthOffset: 0
210
+ };
211
+ const processed = processPatterns({
212
+ ...options,
213
+ patterns
214
+ }, cwd, props);
215
+ if (options.debug) log("internal processing patterns:", processed);
216
+ const matchOptions = {
217
+ dot: options.dot,
218
+ nobrace: options.braceExpansion === false,
219
+ nocase: options.caseSensitiveMatch === false,
220
+ noextglob: options.extglob === false,
221
+ noglobstar: options.globstar === false,
222
+ posix: true
223
+ };
224
+ const matcher = (0, import_picomatch.default)(processed.match, {
225
+ ...matchOptions,
226
+ ignore: processed.ignore
227
+ });
228
+ const ignore = (0, import_picomatch.default)(processed.ignore, matchOptions);
229
+ const partialMatcher = getPartialMatcher(processed.match, matchOptions);
230
+ const format = buildFormat(cwd, props.root, options.absolute);
231
+ const formatExclude = options.absolute ? format : buildFormat(cwd, props.root, true);
232
+ const fdirOptions = {
233
+ filters: [options.debug ? (p, isDirectory) => {
234
+ const path$1 = format(p, isDirectory);
235
+ const matches = matcher(path$1);
236
+ if (matches) log(`matched ${path$1}`);
237
+ return matches;
238
+ } : (p, isDirectory) => matcher(format(p, isDirectory))],
239
+ exclude: options.debug ? (_, p) => {
240
+ const relativePath = formatExclude(p, true);
241
+ const skipped = relativePath !== "." && !partialMatcher(relativePath) || ignore(relativePath);
242
+ if (skipped) log(`skipped ${p}`);
243
+ else log(`crawling ${p}`);
244
+ return skipped;
245
+ } : (_, p) => {
246
+ const relativePath = formatExclude(p, true);
247
+ return relativePath !== "." && !partialMatcher(relativePath) || ignore(relativePath);
248
+ },
249
+ fs: options.fs ? {
250
+ readdir: options.fs.readdir || nativeFs.readdir,
251
+ readdirSync: options.fs.readdirSync || nativeFs.readdirSync,
252
+ realpath: options.fs.realpath || nativeFs.realpath,
253
+ realpathSync: options.fs.realpathSync || nativeFs.realpathSync,
254
+ stat: options.fs.stat || nativeFs.stat,
255
+ statSync: options.fs.statSync || nativeFs.statSync
256
+ } : void 0,
257
+ pathSeparator: "/",
258
+ relativePaths: true,
259
+ resolveSymlinks: true,
260
+ signal: options.signal
261
+ };
262
+ if (options.deep !== void 0) fdirOptions.maxDepth = Math.round(options.deep - props.depthOffset);
263
+ if (options.absolute) {
264
+ fdirOptions.relativePaths = false;
265
+ fdirOptions.resolvePaths = true;
266
+ fdirOptions.includeBasePath = true;
267
+ }
268
+ if (options.followSymbolicLinks === false) {
269
+ fdirOptions.resolveSymlinks = false;
270
+ fdirOptions.excludeSymlinks = true;
271
+ }
272
+ if (options.onlyDirectories) {
273
+ fdirOptions.excludeFiles = true;
274
+ fdirOptions.includeDirs = true;
275
+ } else if (options.onlyFiles === false) fdirOptions.includeDirs = true;
276
+ props.root = props.root.replace(BACKSLASHES, "");
277
+ const root = props.root;
278
+ if (options.debug) log("internal properties:", props);
279
+ const relative$1 = cwd !== root && !options.absolute && buildRelative(cwd, props.root);
280
+ return [new Builder(fdirOptions).crawl(root), relative$1];
281
+ }
282
+ async function glob(patternsOrOptions, options) {
283
+ if (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error("Cannot pass patterns as both an argument and an option");
284
+ const isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === "string";
285
+ const opts = isModern ? options : patternsOrOptions;
286
+ const [crawler, relative$1] = getCrawler(isModern ? patternsOrOptions : patternsOrOptions.patterns, opts);
287
+ if (!relative$1) return crawler.withPromise();
288
+ return formatPaths(await crawler.withPromise(), relative$1);
289
+ }
290
+
291
+ //#endregion
292
+ export { glob as t };