@rolldown/browser 1.0.0-beta.31-commit.832324a → 1.0.0-beta.33

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 (43) hide show
  1. package/dist/cli.cjs +31 -31
  2. package/dist/cli.d.cts +1 -1
  3. package/dist/cli.d.mts +1 -1
  4. package/dist/cli.mjs +33 -32
  5. package/dist/config.cjs +3 -3
  6. package/dist/config.d.cts +2 -2
  7. package/dist/config.d.mts +2 -2
  8. package/dist/config.mjs +3 -3
  9. package/dist/experimental-index.browser.mjs +1 -1
  10. package/dist/experimental-index.cjs +2 -2
  11. package/dist/experimental-index.d.cts +2 -2
  12. package/dist/experimental-index.d.mts +2 -2
  13. package/dist/experimental-index.mjs +2 -2
  14. package/dist/filter-index.d.cts +2 -2
  15. package/dist/filter-index.d.mts +2 -2
  16. package/dist/index.browser.mjs +1 -1
  17. package/dist/index.cjs +2 -2
  18. package/dist/index.d.cts +2 -2
  19. package/dist/index.d.mts +2 -2
  20. package/dist/index.mjs +2 -2
  21. package/dist/parallel-plugin-worker.cjs +2 -2
  22. package/dist/parallel-plugin-worker.d.cts +1 -1
  23. package/dist/parallel-plugin-worker.d.mts +1 -1
  24. package/dist/parallel-plugin-worker.mjs +4 -3
  25. package/dist/parallel-plugin.d.cts +2 -2
  26. package/dist/parallel-plugin.d.mts +2 -2
  27. package/dist/parse-ast-index.cjs +1 -1
  28. package/dist/parse-ast-index.d.cts +1 -1
  29. package/dist/parse-ast-index.d.mts +1 -1
  30. package/dist/parse-ast-index.mjs +1 -1
  31. package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
  32. package/dist/shared/{binding-BIqlUgrm.d.cts → binding-CFhvYkVn.d.mts} +4 -3
  33. package/dist/shared/{binding-COE5UL-B.d.mts → binding-DQk9TN_A.d.cts} +4 -3
  34. package/dist/shared/{define-config-DFC0Nu7H.d.cts → define-config-B3QOs3Kt.d.cts} +7 -1
  35. package/dist/shared/{define-config-Cf2D2abn.d.mts → define-config-DyjJkNqG.d.mts} +7 -1
  36. package/dist/shared/{load-config-CoJFc3w2.mjs → load-config-CLPLfZVe.mjs} +1 -1
  37. package/dist/shared/{load-config-Dw0YNzS-.cjs → load-config-xKQFLlGV.cjs} +1 -1
  38. package/dist/shared/{parse-ast-index-CqHkFxPM.mjs → parse-ast-index-BGzB5Bo-.mjs} +1 -1
  39. package/dist/shared/{parse-ast-index-DAsDnaa1.cjs → parse-ast-index-BZfwAN9P.cjs} +1 -1
  40. package/dist/shared/{src-DEIlKgUM.cjs → src-CGziNJPr.cjs} +145 -141
  41. package/dist/shared/{src-38thNb51.mjs → src-CZgQg1yE.mjs} +142 -138
  42. package/dist/{src-jf6KDQ1I.js → src-D_htlJ_o.js} +252 -248
  43. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  const require_chunk = require('./chunk-DDkG_k5U.cjs');
2
- const require_parse_ast_index = require('./parse-ast-index-DAsDnaa1.cjs');
2
+ const require_parse_ast_index = require('./parse-ast-index-BZfwAN9P.cjs');
3
3
  const require_dist = require('./dist-CK0hotcm.cjs');
4
4
  const src_rolldown_binding_wasi_cjs = require_chunk.__toESM(require("../rolldown-binding.wasi.cjs"));
5
5
  const node_path = require_chunk.__toESM(require("node:path"));
@@ -9,7 +9,7 @@ const node_os = require_chunk.__toESM(require("node:os"));
9
9
  const node_worker_threads = require_chunk.__toESM(require("node:worker_threads"));
10
10
 
11
11
  //#region package.json
12
- var version = "1.0.0-beta.31-commit.832324a";
12
+ var version = "1.0.0-beta.33";
13
13
  var description$1 = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
14
14
 
15
15
  //#endregion
@@ -31,9 +31,9 @@ function makeBuiltinPluginCallable(plugin) {
31
31
  for (const key in callablePlugin) wrappedPlugin[key] = async function(...args$1) {
32
32
  try {
33
33
  return await callablePlugin[key](...args$1);
34
- } catch (e$1) {
35
- if (e$1 instanceof Error && !e$1.stack?.includes("at ")) Error.captureStackTrace(e$1, wrappedPlugin[key]);
36
- return require_parse_ast_index.error(require_parse_ast_index.logPluginError(e$1, plugin.name, {
34
+ } catch (e$2) {
35
+ if (e$2 instanceof Error && !e$2.stack?.includes("at ")) Error.captureStackTrace(e$2, wrappedPlugin[key]);
36
+ return require_parse_ast_index.error(require_parse_ast_index.logPluginError(e$2, plugin.name, {
37
37
  hook: key,
38
38
  id: key === "transform" ? args$1[2] : void 0
39
39
  }));
@@ -352,8 +352,8 @@ var MinimalPluginContextImpl = class {
352
352
  watchMode
353
353
  };
354
354
  }
355
- error(e$1) {
356
- return require_parse_ast_index.error(require_parse_ast_index.logPluginError(normalizeLog(e$1), this.pluginName, { hook: this.hookName }));
355
+ error(e$2) {
356
+ return require_parse_ast_index.error(require_parse_ast_index.logPluginError(normalizeLog(e$2), this.pluginName, { hook: this.hookName }));
357
357
  }
358
358
  };
359
359
 
@@ -1808,22 +1808,22 @@ function toJsonSchema(schema, config) {
1808
1808
  //#endregion
1809
1809
  //#region ../../node_modules/.pnpm/ansis@4.1.0/node_modules/ansis/index.cjs
1810
1810
  var require_ansis = /* @__PURE__ */ require_chunk.__commonJS({ "../../node_modules/.pnpm/ansis@4.1.0/node_modules/ansis/index.cjs": ((exports, module) => {
1811
- let e, t, r, { defineProperty: n, setPrototypeOf: l, create: o, keys: s } = Object, i$1 = "", { round: c, max: a$1 } = Math, p = (e$1) => {
1812
- let t$1 = /([a-f\d]{3,6})/i.exec(e$1)?.[1], r$1 = t$1?.length, n$1 = parseInt(6 ^ r$1 ? 3 ^ r$1 ? "0" : t$1[0] + t$1[0] + t$1[1] + t$1[1] + t$1[2] + t$1[2] : t$1, 16);
1811
+ let e$1, t$2, r, { defineProperty: n$1, setPrototypeOf: l, create: o, keys: s } = Object, i = "", { round: c, max: a$1 } = Math, p = (e$2) => {
1812
+ let t$3 = /([a-f\d]{3,6})/i.exec(e$2)?.[1], r$1 = t$3?.length, n$2 = parseInt(6 ^ r$1 ? 3 ^ r$1 ? "0" : t$3[0] + t$3[0] + t$3[1] + t$3[1] + t$3[2] + t$3[2] : t$3, 16);
1813
1813
  return [
1814
- n$1 >> 16 & 255,
1815
- n$1 >> 8 & 255,
1816
- 255 & n$1
1814
+ n$2 >> 16 & 255,
1815
+ n$2 >> 8 & 255,
1816
+ 255 & n$2
1817
1817
  ];
1818
- }, u$2 = (e$1, t$1, r$1) => e$1 ^ t$1 || t$1 ^ r$1 ? 16 + 36 * c(e$1 / 51) + 6 * c(t$1 / 51) + c(r$1 / 51) : 8 > e$1 ? 16 : e$1 > 248 ? 231 : c(24 * (e$1 - 8) / 247) + 232, d$1 = (e$1) => {
1819
- let t$1, r$1, n$1, l$1, o$1;
1820
- return 8 > e$1 ? 30 + e$1 : 16 > e$1 ? e$1 - 8 + 90 : (232 > e$1 ? (o$1 = (e$1 -= 16) % 36, t$1 = (e$1 / 36 | 0) / 5, r$1 = (o$1 / 6 | 0) / 5, n$1 = o$1 % 6 / 5) : t$1 = r$1 = n$1 = (10 * (e$1 - 232) + 8) / 255, l$1 = 2 * a$1(t$1, r$1, n$1), l$1 ? 30 + (c(n$1) << 2 | c(r$1) << 1 | c(t$1)) + (2 ^ l$1 ? 0 : 60) : 30);
1818
+ }, u = (e$2, t$3, r$1) => e$2 ^ t$3 || t$3 ^ r$1 ? 16 + 36 * c(e$2 / 51) + 6 * c(t$3 / 51) + c(r$1 / 51) : 8 > e$2 ? 16 : e$2 > 248 ? 231 : c(24 * (e$2 - 8) / 247) + 232, d = (e$2) => {
1819
+ let t$3, r$1, n$2, l$1, o$1;
1820
+ return 8 > e$2 ? 30 + e$2 : 16 > e$2 ? e$2 - 8 + 90 : (232 > e$2 ? (o$1 = (e$2 -= 16) % 36, t$3 = (e$2 / 36 | 0) / 5, r$1 = (o$1 / 6 | 0) / 5, n$2 = o$1 % 6 / 5) : t$3 = r$1 = n$2 = (10 * (e$2 - 232) + 8) / 255, l$1 = 2 * a$1(t$3, r$1, n$2), l$1 ? 30 + (c(n$2) << 2 | c(r$1) << 1 | c(t$3)) + (2 ^ l$1 ? 0 : 60) : 30);
1821
1821
  }, g = (() => {
1822
- let r$1 = (e$1) => o$1.some(((t$1) => e$1.test(t$1))), n$1 = globalThis, l$1 = n$1.process ?? {}, o$1 = l$1.argv ?? [], i$2 = l$1.env ?? {}, c$1 = -1;
1822
+ let r$1 = (e$2) => o$1.some(((t$3) => e$2.test(t$3))), n$2 = globalThis, l$1 = n$2.process ?? {}, o$1 = l$1.argv ?? [], i$1 = l$1.env ?? {}, c$1 = -1;
1823
1823
  try {
1824
- e = "," + s(i$2).join(",");
1825
- } catch (e$1) {
1826
- i$2 = {}, c$1 = 0;
1824
+ e$1 = "," + s(i$1).join(",");
1825
+ } catch (e$2) {
1826
+ i$1 = {}, c$1 = 0;
1827
1827
  }
1828
1828
  let a$2 = "FORCE_COLOR", p$1 = {
1829
1829
  false: 0,
@@ -1831,61 +1831,61 @@ var require_ansis = /* @__PURE__ */ require_chunk.__commonJS({ "../../node_modul
1831
1831
  1: 1,
1832
1832
  2: 2,
1833
1833
  3: 3
1834
- }[i$2[a$2]] ?? -1, u$3 = a$2 in i$2 && p$1 || r$1(/^--color=?(true|always)?$/);
1835
- return u$3 && (c$1 = p$1), ~c$1 || (c$1 = ((r$2, n$2, l$2) => (t = r$2.TERM, {
1834
+ }[i$1[a$2]] ?? -1, u$1 = a$2 in i$1 && p$1 || r$1(/^--color=?(true|always)?$/);
1835
+ return u$1 && (c$1 = p$1), ~c$1 || (c$1 = ((r$2, n$3, l$2) => (t$2 = r$2.TERM, {
1836
1836
  "24bit": 3,
1837
1837
  truecolor: 3,
1838
1838
  ansi256: 2,
1839
1839
  ansi: 1
1840
- }[r$2.COLORTERM] || (r$2.CI ? /,GITHUB/.test(e) ? 3 : 1 : n$2 && "dumb" !== t ? l$2 ? 3 : /-256/.test(t) ? 2 : 1 : 0)))(i$2, !!i$2.PM2_HOME || i$2.NEXT_RUNTIME?.includes("edge") || !!l$1.stdout?.isTTY, "win32" === l$1.platform)), !p$1 || i$2.NO_COLOR || r$1(/^--(no-color|color=(false|never))$/) ? 0 : n$1.window?.chrome || u$3 && !c$1 ? 3 : c$1;
1840
+ }[r$2.COLORTERM] || (r$2.CI ? /,GITHUB/.test(e$1) ? 3 : 1 : n$3 && "dumb" !== t$2 ? l$2 ? 3 : /-256/.test(t$2) ? 2 : 1 : 0)))(i$1, !!i$1.PM2_HOME || i$1.NEXT_RUNTIME?.includes("edge") || !!l$1.stdout?.isTTY, "win32" === l$1.platform)), !p$1 || i$1.NO_COLOR || r$1(/^--(no-color|color=(false|never))$/) ? 0 : n$2.window?.chrome || u$1 && !c$1 ? 3 : c$1;
1841
1841
  })(), f = {
1842
- open: i$1,
1843
- close: i$1
1844
- }, h = 39, b = 49, O = {}, m = ({ p: e$1 }, { open: t$1, close: n$1 }) => {
1845
- let o$1 = (e$2, ...r$1) => {
1846
- if (!e$2) {
1847
- if (t$1 && t$1 === n$1) return t$1;
1848
- if ((e$2 ?? i$1) === i$1) return i$1;
1842
+ open: i,
1843
+ close: i
1844
+ }, h = 39, b = 49, O = {}, m = ({ p: e$2 }, { open: t$3, close: n$2 }) => {
1845
+ let o$1 = (e$3, ...r$1) => {
1846
+ if (!e$3) {
1847
+ if (t$3 && t$3 === n$2) return t$3;
1848
+ if ((e$3 ?? i) === i) return i;
1849
1849
  }
1850
- let l$1, s$2 = e$2.raw ? String.raw({ raw: e$2 }, ...r$1) : i$1 + e$2, c$2 = o$1.p, a$2 = c$2.o, p$1 = c$2.c;
1850
+ let l$1, s$2 = e$3.raw ? String.raw({ raw: e$3 }, ...r$1) : i + e$3, c$2 = o$1.p, a$2 = c$2.o, p$1 = c$2.c;
1851
1851
  if (s$2.includes("\x1B")) for (; c$2; c$2 = c$2.p) {
1852
- let { open: e$3, close: t$2 } = c$2, r$2 = t$2.length, n$2 = i$1, o$2 = 0;
1853
- if (r$2) for (; ~(l$1 = s$2.indexOf(t$2, o$2)); o$2 = l$1 + r$2) n$2 += s$2.slice(o$2, l$1) + e$3;
1854
- s$2 = n$2 + s$2.slice(o$2);
1852
+ let { open: e$4, close: t$4 } = c$2, r$2 = t$4.length, n$3 = i, o$2 = 0;
1853
+ if (r$2) for (; ~(l$1 = s$2.indexOf(t$4, o$2)); o$2 = l$1 + r$2) n$3 += s$2.slice(o$2, l$1) + e$4;
1854
+ s$2 = n$3 + s$2.slice(o$2);
1855
1855
  }
1856
1856
  return a$2 + (s$2.includes("\n") ? s$2.replace(/(\r?\n)/g, p$1 + "$1" + a$2) : s$2) + p$1;
1857
- }, s$1 = t$1, c$1 = n$1;
1858
- return e$1 && (s$1 = e$1.o + t$1, c$1 = n$1 + e$1.c), l(o$1, r), o$1.p = {
1859
- open: t$1,
1860
- close: n$1,
1857
+ }, s$1 = t$3, c$1 = n$2;
1858
+ return e$2 && (s$1 = e$2.o + t$3, c$1 = n$2 + e$2.c), l(o$1, r), o$1.p = {
1859
+ open: t$3,
1860
+ close: n$2,
1861
1861
  o: s$1,
1862
1862
  c: c$1,
1863
- p: e$1
1863
+ p: e$2
1864
1864
  }, o$1.open = s$1, o$1.close = c$1, o$1;
1865
1865
  };
1866
- const w = function(e$1 = g) {
1867
- let t$1 = {
1866
+ const w = function(e$2 = g) {
1867
+ let t$3 = {
1868
1868
  Ansis: w,
1869
- level: e$1,
1869
+ level: e$2,
1870
1870
  isSupported: () => s$1,
1871
- strip: (e$2) => e$2.replace(/[›][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, i$1),
1872
- extend(e$2) {
1873
- for (let t$2 in e$2) {
1874
- let r$1 = e$2[t$2], l$1 = (typeof r$1)[0], o$1 = "s" === l$1 ? x(...p(r$1)) : r$1;
1875
- O[t$2] = "f" === l$1 ? { get() {
1876
- return (...e$3) => m(this, r$1(...e$3));
1871
+ strip: (e$3) => e$3.replace(/[›][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, i),
1872
+ extend(e$3) {
1873
+ for (let t$4 in e$3) {
1874
+ let r$1 = e$3[t$4], l$1 = (typeof r$1)[0], o$1 = "s" === l$1 ? x(...p(r$1)) : r$1;
1875
+ O[t$4] = "f" === l$1 ? { get() {
1876
+ return (...e$4) => m(this, r$1(...e$4));
1877
1877
  } } : { get() {
1878
- let e$3 = m(this, o$1);
1879
- return n(this, t$2, { value: e$3 }), e$3;
1878
+ let e$4 = m(this, o$1);
1879
+ return n$1(this, t$4, { value: e$4 }), e$4;
1880
1880
  } };
1881
1881
  }
1882
- return r = o({}, O), l(t$1, r), t$1;
1882
+ return r = o({}, O), l(t$3, r), t$3;
1883
1883
  }
1884
- }, s$1 = e$1 > 0, c$1 = (e$2, t$2) => s$1 ? {
1885
- open: `[${e$2}m`,
1886
- close: `[${t$2}m`
1887
- } : f, a$2 = (e$2) => (t$2) => e$2(...p(t$2)), y$1 = (e$2, t$2) => (r$1, n$1, l$1) => c$1(`${e$2}8;2;${r$1};${n$1};${l$1}`, t$2), R = (e$2, t$2) => (r$1, n$1, l$1) => c$1(((e$3, t$3, r$2) => d$1(u$2(e$3, t$3, r$2)))(r$1, n$1, l$1) + e$2, t$2), $ = (e$2) => (t$2, r$1, n$1) => e$2(u$2(t$2, r$1, n$1)), x = y$1(3, h), T = y$1(4, b), v = (e$2) => c$1("38;5;" + e$2, h), C = (e$2) => c$1("48;5;" + e$2, b);
1888
- 2 === e$1 ? (x = $(v), T = $(C)) : 1 === e$1 && (x = R(0, h), T = R(10, b), v = (e$2) => c$1(d$1(e$2), h), C = (e$2) => c$1(d$1(e$2) + 10, b));
1884
+ }, s$1 = e$2 > 0, c$1 = (e$3, t$4) => s$1 ? {
1885
+ open: `[${e$3}m`,
1886
+ close: `[${t$4}m`
1887
+ } : f, a$2 = (e$3) => (t$4) => e$3(...p(t$4)), y$1 = (e$3, t$4) => (r$1, n$2, l$1) => c$1(`${e$3}8;2;${r$1};${n$2};${l$1}`, t$4), R = (e$3, t$4) => (r$1, n$2, l$1) => c$1(((e$4, t$5, r$2) => d(u(e$4, t$5, r$2)))(r$1, n$2, l$1) + e$3, t$4), $ = (e$3) => (t$4, r$1, n$2) => e$3(u(t$4, r$1, n$2)), x = y$1(3, h), T = y$1(4, b), v = (e$3) => c$1("38;5;" + e$3, h), C = (e$3) => c$1("48;5;" + e$3, b);
1888
+ 2 === e$2 ? (x = $(v), T = $(C)) : 1 === e$2 && (x = R(0, h), T = R(10, b), v = (e$3) => c$1(d(e$3), h), C = (e$3) => c$1(d(e$3) + 10, b));
1889
1889
  let E, M = {
1890
1890
  fg: v,
1891
1891
  bg: C,
@@ -1903,9 +1903,9 @@ var require_ansis = /* @__PURE__ */ require_chunk.__commonJS({ "../../node_modul
1903
1903
  hidden: c$1(8, 28),
1904
1904
  strikethrough: c$1(9, 29)
1905
1905
  }, I = "Bright";
1906
- return "black,red,green,yellow,blue,magenta,cyan,white,gray".split(",").map(((e$2, t$2) => {
1907
- E = "bg" + e$2[0].toUpperCase() + e$2.slice(1), 8 > t$2 ? (M[e$2 + I] = c$1(90 + t$2, h), M[E + I] = c$1(100 + t$2, b)) : t$2 = 60, M[e$2] = c$1(30 + t$2, h), M[E] = c$1(40 + t$2, b);
1908
- })), t$1.extend(M);
1906
+ return "black,red,green,yellow,blue,magenta,cyan,white,gray".split(",").map(((e$3, t$4) => {
1907
+ E = "bg" + e$3[0].toUpperCase() + e$3.slice(1), 8 > t$4 ? (M[e$3 + I] = c$1(90 + t$4, h), M[E + I] = c$1(100 + t$4, b)) : t$4 = 60, M[e$3] = c$1(30 + t$4, h), M[E] = c$1(40 + t$4, b);
1908
+ })), t$3.extend(M);
1909
1909
  }, y = new w();
1910
1910
  module.exports = y, y.default = y;
1911
1911
  }) });
@@ -1913,7 +1913,6 @@ var require_ansis = /* @__PURE__ */ require_chunk.__commonJS({ "../../node_modul
1913
1913
  //#endregion
1914
1914
  //#region ../../node_modules/.pnpm/ansis@4.1.0/node_modules/ansis/index.mjs
1915
1915
  var import_ansis = /* @__PURE__ */ require_chunk.__toESM(require_ansis(), 1);
1916
- var ansis_default = import_ansis.default;
1917
1916
  const { Ansis, fg, bg, rgb, bgRgb, hex, bgHex, reset, inverse, hidden, visible, bold, dim, italic, underline, strikethrough, black, red, green, yellow, blue, magenta, cyan, white, gray, redBright, greenBright, yellowBright, blueBright, magentaBright, cyanBright, whiteBright, bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite, bgGray, bgRedBright, bgGreenBright, bgYellowBright, bgBlueBright, bgMagentaBright, bgCyanBright, bgWhiteBright } = import_ansis.default;
1918
1917
 
1919
1918
  //#endregion
@@ -2092,11 +2091,11 @@ const InputOptionsSchema = strictObject({
2092
2091
  literal("browser"),
2093
2092
  literal("neutral"),
2094
2093
  literal("node")
2095
- ])), description(`Platform for which the code should be generated (node, ${ansis_default.underline("browser")}, neutral)`)),
2094
+ ])), description(`Platform for which the code should be generated (node, ${import_ansis.default.underline("browser")}, neutral)`)),
2096
2095
  shimMissingExports: pipe(optional(boolean()), description("Create shim variables for missing exports")),
2097
2096
  treeshake: optional(TreeshakingOptionsSchema),
2098
2097
  optimization: optional(OptimizationOptionsSchema),
2099
- logLevel: pipe(optional(LogLevelOptionSchema), description(`Log level (${ansis_default.dim("silent")}, ${ansis_default.underline(ansis_default.gray("info"))}, debug, ${ansis_default.yellow("warn")})`)),
2098
+ logLevel: pipe(optional(LogLevelOptionSchema), description(`Log level (${import_ansis.default.dim("silent")}, ${import_ansis.default.underline(import_ansis.default.gray("info"))}, debug, ${import_ansis.default.yellow("warn")})`)),
2100
2099
  onLog: optional(OnLogSchema),
2101
2100
  onwarn: optional(OnwarnSchema),
2102
2101
  moduleTypes: pipe(optional(ModuleTypesSchema), description("Module types for customized extensions")),
@@ -2214,18 +2213,18 @@ const OutputOptionsSchema = strictObject({
2214
2213
  literal("named"),
2215
2214
  literal("default"),
2216
2215
  literal("none")
2217
- ])), description(`Specify a export mode (${ansis_default.underline("auto")}, named, default, none)`)),
2216
+ ])), description(`Specify a export mode (${import_ansis.default.underline("auto")}, named, default, none)`)),
2218
2217
  hashCharacters: pipe(optional(union([
2219
2218
  literal("base64"),
2220
2219
  literal("base36"),
2221
2220
  literal("hex")
2222
2221
  ])), description("Use the specified character set for file hashes")),
2223
- format: pipe(optional(ModuleFormatSchema), description(`Output format of the generated bundle (supports ${ansis_default.underline("esm")}, cjs, and iife)`)),
2222
+ format: pipe(optional(ModuleFormatSchema), description(`Output format of the generated bundle (supports ${import_ansis.default.underline("esm")}, cjs, and iife)`)),
2224
2223
  sourcemap: pipe(optional(union([
2225
2224
  boolean(),
2226
2225
  literal("inline"),
2227
2226
  literal("hidden")
2228
- ])), description(`Generate sourcemap (\`-s inline\` for inline, or ${ansis_default.bold("pass the `-s` on the last argument if you want to generate `.map` file")})`)),
2227
+ ])), description(`Generate sourcemap (\`-s inline\` for inline, or ${import_ansis.default.bold("pass the `-s` on the last argument if you want to generate `.map` file")})`)),
2229
2228
  sourcemapBaseUrl: pipe(optional(string()), description("Base URL used to prefix sourcemap paths")),
2230
2229
  sourcemapDebugIds: pipe(optional(boolean()), description("Inject sourcemap debug IDs")),
2231
2230
  sourcemapIgnoreList: optional(union([boolean(), custom(() => true)])),
@@ -2266,7 +2265,7 @@ const OutputOptionsSchema = strictObject({
2266
2265
  minifyInternalExports: pipe(optional(boolean()), description("Minify internal exports"))
2267
2266
  });
2268
2267
  const getAddonDescription = (placement, wrapper) => {
2269
- return `Code to insert the ${ansis_default.bold(placement)} of the bundled file (${ansis_default.bold(wrapper)} the wrapper function)`;
2268
+ return `Code to insert the ${import_ansis.default.bold(placement)} of the bundled file (${import_ansis.default.bold(wrapper)} the wrapper function)`;
2270
2269
  };
2271
2270
  const OutputCliOverrideSchema = strictObject({
2272
2271
  assetFileNames: pipe(optional(string()), description("Name pattern for asset files")),
@@ -2321,7 +2320,7 @@ function validateOption(key, options) {
2321
2320
  const issuePaths = issue.path.map((path$2) => path$2.key);
2322
2321
  let issueMsg = issue.message;
2323
2322
  if (issue.type === "union") {
2324
- const subIssue = issue.issues?.find((i$2) => !(i$2.type !== issue.received && i$2.input === issue.input));
2323
+ const subIssue = issue.issues?.find((i$1) => !(i$1.type !== issue.received && i$1.input === issue.input));
2325
2324
  if (subIssue) {
2326
2325
  if (subIssue.path) issuePaths.push(subIssue.path.map((path$2) => path$2.key));
2327
2326
  issueMsg = subIssue.message;
@@ -2364,19 +2363,19 @@ function bindingifySourcemap$1(map) {
2364
2363
  //#endregion
2365
2364
  //#region src/utils/error.ts
2366
2365
  function normalizeErrors(rawErrors) {
2367
- const errors = rawErrors.map((e$1) => e$1 instanceof Error ? e$1 : Object.assign(/* @__PURE__ */ new Error(), {
2368
- kind: e$1.kind,
2369
- message: e$1.message,
2366
+ const errors = rawErrors.map((e$2) => e$2 instanceof Error ? e$2 : Object.assign(/* @__PURE__ */ new Error(), {
2367
+ kind: e$2.kind,
2368
+ message: e$2.message,
2370
2369
  stack: void 0
2371
2370
  }));
2372
2371
  let summary = `Build failed with ${errors.length} error${errors.length < 2 ? "" : "s"}:\n`;
2373
- for (let i$2 = 0; i$2 < errors.length; i$2++) {
2372
+ for (let i$1 = 0; i$1 < errors.length; i$1++) {
2374
2373
  summary += "\n";
2375
- if (i$2 >= 5) {
2374
+ if (i$1 >= 5) {
2376
2375
  summary += "...";
2377
2376
  break;
2378
2377
  }
2379
- summary += getErrorMessage(errors[i$2]);
2378
+ summary += getErrorMessage(errors[i$1]);
2380
2379
  }
2381
2380
  const wrapper = new Error(summary);
2382
2381
  Object.defineProperty(wrapper, "errors", {
@@ -2391,20 +2390,20 @@ function normalizeErrors(rawErrors) {
2391
2390
  });
2392
2391
  return wrapper;
2393
2392
  }
2394
- function getErrorMessage(e$1) {
2395
- if (Object.hasOwn(e$1, "kind")) return e$1.message;
2393
+ function getErrorMessage(e$2) {
2394
+ if (Object.hasOwn(e$2, "kind")) return e$2.message;
2396
2395
  let s$1 = "";
2397
- if (e$1.plugin) s$1 += `[plugin ${e$1.plugin}]`;
2398
- const id$1 = e$1.id ?? e$1.loc?.file;
2396
+ if (e$2.plugin) s$1 += `[plugin ${e$2.plugin}]`;
2397
+ const id$1 = e$2.id ?? e$2.loc?.file;
2399
2398
  if (id$1) {
2400
2399
  s$1 += " " + id$1;
2401
- if (e$1.loc) s$1 += `:${e$1.loc.line}:${e$1.loc.column}`;
2400
+ if (e$2.loc) s$1 += `:${e$2.loc.line}:${e$2.loc.column}`;
2402
2401
  }
2403
2402
  if (s$1) s$1 += "\n";
2404
- const message = `${e$1.name ?? "Error"}: ${e$1.message}`;
2403
+ const message = `${e$2.name ?? "Error"}: ${e$2.message}`;
2405
2404
  s$1 += message;
2406
- if (e$1.frame) s$1 = joinNewLine(s$1, e$1.frame);
2407
- if (e$1.stack) s$1 = joinNewLine(s$1, e$1.stack.replace(message, ""));
2405
+ if (e$2.frame) s$1 = joinNewLine(s$1, e$2.frame);
2406
+ if (e$2.stack) s$1 = joinNewLine(s$1, e$2.stack.replace(message, ""));
2408
2407
  return s$1;
2409
2408
  }
2410
2409
  function joinNewLine(s1, s2) {
@@ -2448,33 +2447,33 @@ function normalizeTransformHookSourcemap(id$1, originalCode, rawMap) {
2448
2447
  }
2449
2448
 
2450
2449
  //#endregion
2451
- //#region ../../node_modules/.pnpm/remeda@2.28.0/node_modules/remeda/dist/chunk-D6FCK2GA.js
2452
- function u$1(o$1, n$1, a$2) {
2453
- let t$1 = (r$1) => o$1(r$1, ...n$1);
2454
- return a$2 === void 0 ? t$1 : Object.assign(t$1, {
2455
- lazy: a$2,
2456
- lazyArgs: n$1
2450
+ //#region ../../node_modules/.pnpm/remeda@2.30.0/node_modules/remeda/dist/lazyDataLastImpl-BDhrIOwR.js
2451
+ function e(e$2, t$3, n$2) {
2452
+ let r$1 = (n$3) => e$2(n$3, ...t$3);
2453
+ return n$2 === void 0 ? r$1 : Object.assign(r$1, {
2454
+ lazy: n$2,
2455
+ lazyArgs: t$3
2457
2456
  });
2458
2457
  }
2459
2458
 
2460
2459
  //#endregion
2461
- //#region ../../node_modules/.pnpm/remeda@2.28.0/node_modules/remeda/dist/chunk-WIMGWYZL.js
2462
- function u(r$1, n$1, o$1) {
2463
- let a$2 = r$1.length - n$1.length;
2464
- if (a$2 === 0) return r$1(...n$1);
2465
- if (a$2 === 1) return u$1(r$1, n$1, o$1);
2466
- throw new Error("Wrong number of arguments");
2460
+ //#region ../../node_modules/.pnpm/remeda@2.30.0/node_modules/remeda/dist/purry-DH9cw9sy.js
2461
+ function t(t$3, n$2, r$1) {
2462
+ let i$1 = t$3.length - n$2.length;
2463
+ if (i$1 === 0) return t$3(...n$2);
2464
+ if (i$1 === 1) return e(t$3, n$2, r$1);
2465
+ throw Error(`Wrong number of arguments`);
2467
2466
  }
2468
2467
 
2469
2468
  //#endregion
2470
- //#region ../../node_modules/.pnpm/remeda@2.28.0/node_modules/remeda/dist/chunk-3IFJP4R5.js
2471
- function d(...r$1) {
2472
- return u(i, r$1);
2473
- }
2474
- var i = (r$1, t$1) => {
2475
- let a$2 = [[], []];
2476
- for (let [o$1, e$1] of r$1.entries()) t$1(e$1, o$1, r$1) ? a$2[0].push(e$1) : a$2[1].push(e$1);
2477
- return a$2;
2469
+ //#region ../../node_modules/.pnpm/remeda@2.30.0/node_modules/remeda/dist/partition-BJYkp-a7.js
2470
+ function t$1(...t$3) {
2471
+ return t(n, t$3);
2472
+ }
2473
+ const n = (e$2, t$3) => {
2474
+ let n$2 = [[], []];
2475
+ for (let [r$1, i$1] of e$2.entries()) t$3(i$1, r$1, e$2) ? n$2[0].push(i$1) : n$2[1].push(i$1);
2476
+ return n$2;
2478
2477
  };
2479
2478
 
2480
2479
  //#endregion
@@ -2499,8 +2498,8 @@ function transformFilterMatcherToFilterExprs(filterOption) {
2499
2498
  let idExcludes = [];
2500
2499
  let codeIncludes = [];
2501
2500
  let codeExcludes = [];
2502
- if (id$1) [idIncludes, idExcludes] = d(generalHookFilterMatcherToFilterExprs(id$1, "id") ?? [], (m$1) => m$1.kind === "include");
2503
- if (code$1) [codeIncludes, codeExcludes] = d(generalHookFilterMatcherToFilterExprs(code$1, "code") ?? [], (m$1) => m$1.kind === "include");
2501
+ if (id$1) [idIncludes, idExcludes] = t$1(generalHookFilterMatcherToFilterExprs(id$1, "id") ?? [], (m$1) => m$1.kind === "include");
2502
+ if (code$1) [codeIncludes, codeExcludes] = t$1(generalHookFilterMatcherToFilterExprs(code$1, "code") ?? [], (m$1) => m$1.kind === "include");
2504
2503
  ret.push(...idExcludes);
2505
2504
  ret.push(...codeExcludes);
2506
2505
  let andExprList = [];
@@ -2528,7 +2527,7 @@ function bindingifyFilterExprImpl(expr, list) {
2528
2527
  switch (expr.kind) {
2529
2528
  case "and": {
2530
2529
  let args$1 = expr.args;
2531
- for (let i$2 = args$1.length - 1; i$2 >= 0; i$2--) bindingifyFilterExprImpl(args$1[i$2], list);
2530
+ for (let i$1 = args$1.length - 1; i$1 >= 0; i$1--) bindingifyFilterExprImpl(args$1[i$1], list);
2532
2531
  list.push({
2533
2532
  kind: "And",
2534
2533
  payload: args$1.length
@@ -2537,7 +2536,7 @@ function bindingifyFilterExprImpl(expr, list) {
2537
2536
  }
2538
2537
  case "or": {
2539
2538
  let args$1 = expr.args;
2540
- for (let i$2 = args$1.length - 1; i$2 >= 0; i$2--) bindingifyFilterExprImpl(args$1[i$2], list);
2539
+ for (let i$1 = args$1.length - 1; i$1 >= 0; i$1--) bindingifyFilterExprImpl(args$1[i$1], list);
2541
2540
  list.push({
2542
2541
  kind: "Or",
2543
2542
  payload: args$1.length
@@ -2687,10 +2686,10 @@ var PluginContextImpl = class extends MinimalPluginContextImpl {
2687
2686
  data.loadModulePromiseMap.set(id$1, promise$1);
2688
2687
  try {
2689
2688
  await context.load(id$1, options.moduleSideEffects ?? void 0);
2690
- } catch (e$1) {
2689
+ } catch (e$2) {
2691
2690
  data.loadModulePromiseMap.delete(id$1);
2692
2691
  data.loadModulePromiseResolveFnMap.delete(id$1);
2693
- throw e$1;
2692
+ throw e$2;
2694
2693
  }
2695
2694
  return promise$1;
2696
2695
  }
@@ -2777,12 +2776,12 @@ var TransformPluginContextImpl = class extends PluginContextImpl {
2777
2776
  this.warn = getLogHandler$1(this.warn);
2778
2777
  this.info = getLogHandler$1(this.info);
2779
2778
  }
2780
- error(e$1, pos) {
2781
- if (typeof e$1 === "string") e$1 = { message: e$1 };
2782
- if (pos) require_parse_ast_index.augmentCodeLocation(e$1, pos, this.moduleSource, this.moduleId);
2783
- e$1.id = this.moduleId;
2784
- e$1.hook = "transform";
2785
- return require_parse_ast_index.error(require_parse_ast_index.logPluginError(normalizeLog(e$1), this.pluginName));
2779
+ error(e$2, pos) {
2780
+ if (typeof e$2 === "string") e$2 = { message: e$2 };
2781
+ if (pos) require_parse_ast_index.augmentCodeLocation(e$2, pos, this.moduleSource, this.moduleId);
2782
+ e$2.id = this.moduleId;
2783
+ e$2.hook = "transform";
2784
+ return require_parse_ast_index.error(require_parse_ast_index.logPluginError(normalizeLog(e$2), this.pluginName));
2786
2785
  }
2787
2786
  getCombinedSourcemap() {
2788
2787
  return JSON.parse(this.inner.getCombinedSourcemap());
@@ -3008,9 +3007,9 @@ function transformRenderedChunk(chunk) {
3008
3007
  }
3009
3008
  function transformChunkModules(modules) {
3010
3009
  const result = {};
3011
- for (let i$2 = 0; i$2 < modules.values.length; i$2++) {
3012
- let key = modules.keys[i$2];
3013
- const mod = modules.values[i$2];
3010
+ for (let i$1 = 0; i$1 < modules.values.length; i$1++) {
3011
+ let key = modules.keys[i$1];
3012
+ const mod = modules.values[i$1];
3014
3013
  result[key] = transformToRenderedModule(mod);
3015
3014
  }
3016
3015
  return result;
@@ -3519,8 +3518,8 @@ function wrapHandlers(plugin) {
3519
3518
  if (handler) plugin[hookName] = async (...args$1) => {
3520
3519
  try {
3521
3520
  return await handler(...args$1);
3522
- } catch (e$1) {
3523
- return require_parse_ast_index.error(require_parse_ast_index.logPluginError(e$1, plugin.name, {
3521
+ } catch (e$2) {
3522
+ return require_parse_ast_index.error(require_parse_ast_index.logPluginError(e$2, plugin.name, {
3524
3523
  hook: hookName,
3525
3524
  id: hookName === "transform" ? args$1[2] : void 0
3526
3525
  }));
@@ -3550,6 +3549,9 @@ var NormalizedInputOptionsImpl = class {
3550
3549
  get platform() {
3551
3550
  return this.inner.platform;
3552
3551
  }
3552
+ get context() {
3553
+ return this.inner.context;
3554
+ }
3553
3555
  };
3554
3556
 
3555
3557
  //#endregion
@@ -4181,7 +4183,7 @@ async function initializeParallelPlugins(plugins) {
4181
4183
  };
4182
4184
  }
4183
4185
  function initializeWorkers(registryId, count, pluginInfos) {
4184
- return Promise.all(Array.from({ length: count }, (_, i$2) => initializeWorker(registryId, pluginInfos, i$2)));
4186
+ return Promise.all(Array.from({ length: count }, (_, i$1) => initializeWorker(registryId, pluginInfos, i$1)));
4185
4187
  }
4186
4188
  async function initializeWorker(registryId, pluginInfos, threadNumber) {
4187
4189
  const urlString = (void 0)("#parallel-plugin-worker");
@@ -4201,9 +4203,9 @@ async function initializeWorker(registryId, pluginInfos, threadNumber) {
4201
4203
  });
4202
4204
  });
4203
4205
  return worker;
4204
- } catch (e$1) {
4206
+ } catch (e$2) {
4205
4207
  worker?.terminate();
4206
- throw e$1;
4208
+ throw e$2;
4207
4209
  }
4208
4210
  }
4209
4211
  const availableParallelism = () => {
@@ -4219,12 +4221,12 @@ const availableParallelism = () => {
4219
4221
 
4220
4222
  //#endregion
4221
4223
  //#region src/utils/create-bundler-option.ts
4222
- async function createBundlerOptions(inputOptions, outputOptions, watchMode, isClose) {
4224
+ async function createBundlerOptions(inputOptions, outputOptions, watchMode) {
4223
4225
  const inputPlugins = await normalizePluginOption(inputOptions.plugins);
4224
4226
  const outputPlugins = await normalizePluginOption(outputOptions.plugins);
4225
4227
  const logLevel = inputOptions.logLevel || LOG_LEVEL_INFO;
4226
4228
  const onLog = getLogger(getObjectPlugins(inputPlugins), getOnLog(inputOptions, logLevel), logLevel, watchMode);
4227
- if (!isClose) outputOptions = PluginDriver.callOutputOptionsHook([...inputPlugins, ...outputPlugins], outputOptions, onLog, logLevel, watchMode);
4229
+ outputOptions = PluginDriver.callOutputOptionsHook([...inputPlugins, ...outputPlugins], outputOptions, onLog, logLevel, watchMode);
4228
4230
  const normalizedOutputPlugins = await normalizePluginOption(outputOptions.plugins);
4229
4231
  let plugins = [
4230
4232
  ...BUILTIN_PLUGINS,
@@ -4245,17 +4247,17 @@ async function createBundlerOptions(inputOptions, outputOptions, watchMode, isCl
4245
4247
  onLog,
4246
4248
  stopWorkers: parallelPluginInitResult?.stopWorkers
4247
4249
  };
4248
- } catch (e$1) {
4250
+ } catch (e$2) {
4249
4251
  await parallelPluginInitResult?.stopWorkers();
4250
- throw e$1;
4252
+ throw e$2;
4251
4253
  }
4252
4254
  }
4253
4255
 
4254
4256
  //#endregion
4255
4257
  //#region src/utils/create-bundler.ts
4256
4258
  let asyncRuntimeShutdown = false;
4257
- async function createBundlerImpl(bundler, inputOptions, outputOptions, isClose) {
4258
- const option = await createBundlerOptions(inputOptions, outputOptions, false, isClose);
4259
+ async function createBundlerImpl(bundler, inputOptions, outputOptions) {
4260
+ const option = await createBundlerOptions(inputOptions, outputOptions, false);
4259
4261
  if (asyncRuntimeShutdown) (0, src_rolldown_binding_wasi_cjs.startAsyncRuntime)();
4260
4262
  try {
4261
4263
  return {
@@ -4266,9 +4268,9 @@ async function createBundlerImpl(bundler, inputOptions, outputOptions, isClose)
4266
4268
  asyncRuntimeShutdown = true;
4267
4269
  }
4268
4270
  };
4269
- } catch (e$1) {
4271
+ } catch (e$2) {
4270
4272
  await option.stopWorkers?.();
4271
- throw e$1;
4273
+ throw e$2;
4272
4274
  }
4273
4275
  }
4274
4276
 
@@ -4296,11 +4298,11 @@ var RolldownBuild = class {
4296
4298
  this.#bundler = new src_rolldown_binding_wasi_cjs.BindingBundler();
4297
4299
  }
4298
4300
  get closed() {
4299
- return this.#bundlerImpl?.impl.closed ?? false;
4301
+ return this.#bundlerImpl?.impl.closed ?? true;
4300
4302
  }
4301
- async #getBundlerWithStopWorker(outputOptions, isClose) {
4303
+ async #getBundlerWithStopWorker(outputOptions) {
4302
4304
  if (this.#bundlerImpl) await this.#bundlerImpl.stopWorkers?.();
4303
- return this.#bundlerImpl = await createBundlerImpl(this.#bundler, this.#inputOptions, outputOptions, isClose);
4305
+ return this.#bundlerImpl = await createBundlerImpl(this.#bundler, this.#inputOptions, outputOptions);
4304
4306
  }
4305
4307
  async generate(outputOptions = {}) {
4306
4308
  validateOption("output", outputOptions);
@@ -4315,10 +4317,12 @@ var RolldownBuild = class {
4315
4317
  return transformToRollupOutput(output);
4316
4318
  }
4317
4319
  async close() {
4318
- const { impl, stopWorkers, shutdown } = await this.#getBundlerWithStopWorker({}, true);
4319
- await stopWorkers?.();
4320
- await impl.close();
4321
- shutdown();
4320
+ if (this.#bundlerImpl) {
4321
+ await this.#bundlerImpl.stopWorkers?.();
4322
+ await this.#bundlerImpl.impl.close();
4323
+ this.#bundlerImpl.shutdown();
4324
+ this.#bundlerImpl = void 0;
4325
+ }
4322
4326
  }
4323
4327
  async [Symbol.asyncDispose]() {
4324
4328
  await this.close();
@@ -4531,12 +4535,6 @@ Object.defineProperty(exports, 'VERSION', {
4531
4535
  return VERSION;
4532
4536
  }
4533
4537
  });
4534
- Object.defineProperty(exports, 'ansis_default', {
4535
- enumerable: true,
4536
- get: function () {
4537
- return ansis_default;
4538
- }
4539
- });
4540
4538
  Object.defineProperty(exports, 'assetPlugin', {
4541
4539
  enumerable: true,
4542
4540
  get: function () {
@@ -4615,6 +4613,12 @@ Object.defineProperty(exports, 'importGlobPlugin', {
4615
4613
  return importGlobPlugin;
4616
4614
  }
4617
4615
  });
4616
+ Object.defineProperty(exports, 'import_ansis', {
4617
+ enumerable: true,
4618
+ get: function () {
4619
+ return import_ansis;
4620
+ }
4621
+ });
4618
4622
  Object.defineProperty(exports, 'isolatedDeclarationPlugin', {
4619
4623
  enumerable: true,
4620
4624
  get: function () {