rollup 4.25.0 → 4.26.0

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.
package/LICENSE.md CHANGED
@@ -13,7 +13,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
13
13
 
14
14
  # Licenses of bundled dependencies
15
15
  The published Rollup artifact additionally contains code with the following licenses:
16
- MIT, ISC
16
+ MIT, ISC, 0BSD
17
17
 
18
18
  # Bundled dependencies:
19
19
  ## @jridgewell/sourcemap-codec
@@ -632,6 +632,26 @@ Repository: micromatch/to-regex-range
632
632
 
633
633
  ---------------------------------------
634
634
 
635
+ ## tslib
636
+ License: 0BSD
637
+ By: Microsoft Corp.
638
+ Repository: https://github.com/Microsoft/tslib.git
639
+
640
+ > Copyright (c) Microsoft Corporation.
641
+ >
642
+ > Permission to use, copy, modify, and/or distribute this software for any
643
+ > purpose with or without fee is hereby granted.
644
+ >
645
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
646
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
647
+ > AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
648
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
649
+ > LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
650
+ > OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
651
+ > PERFORMANCE OF THIS SOFTWARE.
652
+
653
+ ---------------------------------------
654
+
635
655
  ## yargs-parser
636
656
  License: ISC
637
657
  By: Ben Coe
package/dist/bin/rollup CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.25.0
5
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
4
+ Rollup.js v4.26.0
5
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1247,6 +1247,78 @@ yargsParser.camelCase = camelCase;
1247
1247
  yargsParser.decamelize = decamelize;
1248
1248
  yargsParser.looksLikeNumber = looksLikeNumber;
1249
1249
 
1250
+ /******************************************************************************
1251
+ Copyright (c) Microsoft Corporation.
1252
+
1253
+ Permission to use, copy, modify, and/or distribute this software for any
1254
+ purpose with or without fee is hereby granted.
1255
+
1256
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1257
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1258
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1259
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1260
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1261
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1262
+ PERFORMANCE OF THIS SOFTWARE.
1263
+ ***************************************************************************** */
1264
+ /* global Reflect, Promise, SuppressedError, Symbol, Iterator */
1265
+
1266
+
1267
+ function __addDisposableResource(env, value, async) {
1268
+ if (value !== null && value !== void 0) {
1269
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
1270
+ var dispose, inner;
1271
+ if (async) {
1272
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
1273
+ dispose = value[Symbol.asyncDispose];
1274
+ }
1275
+ if (dispose === void 0) {
1276
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
1277
+ dispose = value[Symbol.dispose];
1278
+ if (async) inner = dispose;
1279
+ }
1280
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
1281
+ if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
1282
+ env.stack.push({ value: value, dispose: dispose, async: async });
1283
+ }
1284
+ else if (async) {
1285
+ env.stack.push({ async: true });
1286
+ }
1287
+ return value;
1288
+
1289
+ }
1290
+
1291
+ var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
1292
+ var e = new Error(message);
1293
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
1294
+ };
1295
+
1296
+ function __disposeResources(env) {
1297
+ function fail(e) {
1298
+ env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
1299
+ env.hasError = true;
1300
+ }
1301
+ var r, s = 0;
1302
+ function next() {
1303
+ while (r = env.stack.pop()) {
1304
+ try {
1305
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
1306
+ if (r.dispose) {
1307
+ var result = r.dispose.call(r.value);
1308
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
1309
+ }
1310
+ else s |= 1;
1311
+ }
1312
+ catch (e) {
1313
+ fail(e);
1314
+ }
1315
+ }
1316
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
1317
+ if (env.hasError) throw env.error;
1318
+ }
1319
+ return next();
1320
+ }
1321
+
1250
1322
  const toZeroIfInfinity = value => Number.isFinite(value) ? value : 0;
1251
1323
 
1252
1324
  function parseNumber(milliseconds) {
@@ -1561,48 +1633,59 @@ function printTimings(timings) {
1561
1633
  }
1562
1634
 
1563
1635
  async function build(inputOptions, warnings, silent = false) {
1564
- const outputOptions = inputOptions.output;
1565
- const useStdout = !outputOptions[0].file && !outputOptions[0].dir;
1566
- const start = Date.now();
1567
- const files = useStdout ? ['stdout'] : outputOptions.map(t => parseAst_js.relativeId(t.file || t.dir));
1568
- if (!silent) {
1569
- let inputFiles;
1570
- if (typeof inputOptions.input === 'string') {
1571
- inputFiles = inputOptions.input;
1572
- }
1573
- else if (Array.isArray(inputOptions.input)) {
1574
- inputFiles = inputOptions.input.join(', ');
1575
- }
1576
- else if (typeof inputOptions.input === 'object' && inputOptions.input !== null) {
1577
- inputFiles = Object.values(inputOptions.input).join(', ');
1578
- }
1579
- rollup.stderr(rollup.cyan$1(`\n${rollup.bold(inputFiles)} ${rollup.bold(files.join(', '))}...`));
1580
- }
1581
- const bundle = await rollup.rollup(inputOptions);
1582
- if (useStdout) {
1583
- const output = outputOptions[0];
1584
- if (output.sourcemap && output.sourcemap !== 'inline') {
1585
- rollup.handleError(parseAst_js.logOnlyInlineSourcemapsForStdout());
1636
+ const env_1 = { stack: [], error: void 0, hasError: false };
1637
+ try {
1638
+ const outputOptions = inputOptions.output;
1639
+ const useStdout = !outputOptions[0].file && !outputOptions[0].dir;
1640
+ const start = Date.now();
1641
+ const files = useStdout ? ['stdout'] : outputOptions.map(t => parseAst_js.relativeId(t.file || t.dir));
1642
+ if (!silent) {
1643
+ let inputFiles;
1644
+ if (typeof inputOptions.input === 'string') {
1645
+ inputFiles = inputOptions.input;
1646
+ }
1647
+ else if (Array.isArray(inputOptions.input)) {
1648
+ inputFiles = inputOptions.input.join(', ');
1649
+ }
1650
+ else if (typeof inputOptions.input === 'object' && inputOptions.input !== null) {
1651
+ inputFiles = Object.values(inputOptions.input).join(', ');
1652
+ }
1653
+ rollup.stderr(rollup.cyan$1(`\n${rollup.bold(inputFiles)} ${rollup.bold(files.join(', '))}...`));
1586
1654
  }
1587
- const { output: outputs } = await bundle.generate(output);
1588
- for (const file of outputs) {
1589
- if (outputs.length > 1)
1590
- process$1.stdout.write(`\n${rollup.cyan$1(rollup.bold(`//→ ${file.fileName}:`))}\n`);
1591
- process$1.stdout.write(file.type === 'asset' ? file.source : file.code);
1655
+ const bundle = __addDisposableResource(env_1, await rollup.rollup(inputOptions), true);
1656
+ if (useStdout) {
1657
+ const output = outputOptions[0];
1658
+ if (output.sourcemap && output.sourcemap !== 'inline') {
1659
+ rollup.handleError(parseAst_js.logOnlyInlineSourcemapsForStdout());
1660
+ }
1661
+ const { output: outputs } = await bundle.generate(output);
1662
+ for (const file of outputs) {
1663
+ if (outputs.length > 1)
1664
+ process$1.stdout.write(`\n${rollup.cyan$1(rollup.bold(`//→ ${file.fileName}:`))}\n`);
1665
+ process$1.stdout.write(file.type === 'asset' ? file.source : file.code);
1666
+ }
1667
+ if (!silent) {
1668
+ warnings.flush();
1669
+ }
1670
+ return;
1592
1671
  }
1672
+ await Promise.all(outputOptions.map(bundle.write));
1593
1673
  if (!silent) {
1594
1674
  warnings.flush();
1675
+ rollup.stderr(rollup.green(`created ${rollup.bold(files.join(', '))} in ${rollup.bold(prettyMilliseconds(Date.now() - start))}`));
1676
+ if (bundle && bundle.getTimings) {
1677
+ printTimings(bundle.getTimings());
1678
+ }
1595
1679
  }
1596
- return;
1597
1680
  }
1598
- await Promise.all(outputOptions.map(bundle.write));
1599
- await bundle.close();
1600
- if (!silent) {
1601
- warnings.flush();
1602
- rollup.stderr(rollup.green(`created ${rollup.bold(files.join(', '))} in ${rollup.bold(prettyMilliseconds(Date.now() - start))}`));
1603
- if (bundle && bundle.getTimings) {
1604
- printTimings(bundle.getTimings());
1605
- }
1681
+ catch (e_1) {
1682
+ env_1.error = e_1;
1683
+ env_1.hasError = true;
1684
+ }
1685
+ finally {
1686
+ const result_1 = __disposeResources(env_1);
1687
+ if (result_1)
1688
+ await result_1;
1606
1689
  }
1607
1690
  }
1608
1691
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/es/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -16,7 +16,7 @@ import { performance } from 'node:perf_hooks';
16
16
  import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
17
17
  import * as tty from 'tty';
18
18
 
19
- var version = "4.25.0";
19
+ var version = "4.26.0";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -21662,6 +21662,8 @@ const getSourcemapBaseUrl = (config) => {
21662
21662
  }
21663
21663
  };
21664
21664
 
21665
+ // @ts-expect-error TS2540: the polyfill of `asyncDispose`.
21666
+ Symbol.asyncDispose ??= Symbol('Symbol.asyncDispose');
21665
21667
  function rollup(rawInputOptions) {
21666
21668
  return rollupInternal(rawInputOptions, null);
21667
21669
  }
@@ -21705,6 +21707,9 @@ async function rollupInternal(rawInputOptions, watcher) {
21705
21707
  await graph.pluginDriver.hookParallel('closeBundle', []);
21706
21708
  },
21707
21709
  closed: false,
21710
+ async [Symbol.asyncDispose]() {
21711
+ await this.close();
21712
+ },
21708
21713
  async generate(rawOutputOptions) {
21709
21714
  if (result.closed)
21710
21715
  return error(logAlreadyClosed());
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/parseAst.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/rollup.d.ts CHANGED
@@ -918,6 +918,7 @@ export interface RollupBuild {
918
918
  cache: RollupCache | undefined;
919
919
  close: () => Promise<void>;
920
920
  closed: boolean;
921
+ [Symbol.asyncDispose](): Promise<void>;
921
922
  generate: (outputOptions: OutputOptions) => Promise<RollupOutput>;
922
923
  getTimings?: () => SerializedTimings;
923
924
  watchFiles: string[];
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
31
31
 
32
32
  const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
33
33
 
34
- var version = "4.25.0";
34
+ var version = "4.26.0";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -22059,6 +22059,8 @@ const getSourcemapBaseUrl = (config) => {
22059
22059
  }
22060
22060
  };
22061
22061
 
22062
+ // @ts-expect-error TS2540: the polyfill of `asyncDispose`.
22063
+ Symbol.asyncDispose ??= Symbol('Symbol.asyncDispose');
22062
22064
  function rollup(rawInputOptions) {
22063
22065
  return rollupInternal(rawInputOptions, null);
22064
22066
  }
@@ -22102,6 +22104,9 @@ async function rollupInternal(rawInputOptions, watcher) {
22102
22104
  await graph.pluginDriver.hookParallel('closeBundle', []);
22103
22105
  },
22104
22106
  closed: false,
22107
+ async [Symbol.asyncDispose]() {
22108
+ await this.close();
22109
+ },
22105
22110
  async generate(rawOutputOptions) {
22106
22111
  if (result.closed)
22107
22112
  return parseAst_js.error(parseAst_js.logAlreadyClosed());
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.25.0
4
- Sat, 09 Nov 2024 08:36:52 GMT - commit 42e587e0e37bc0661aa39fe7ad6f1d7fd33f825c
3
+ Rollup.js v4.26.0
4
+ Wed, 13 Nov 2024 06:44:29 GMT - commit ae1d14b7855ff6568a6697d37271a5eb4d8e2d3e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "4.25.0",
3
+ "version": "4.26.0",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -109,24 +109,24 @@
109
109
  "homepage": "https://rollupjs.org/",
110
110
  "optionalDependencies": {
111
111
  "fsevents": "~2.3.2",
112
- "@rollup/rollup-darwin-arm64": "4.25.0",
113
- "@rollup/rollup-android-arm64": "4.25.0",
114
- "@rollup/rollup-win32-arm64-msvc": "4.25.0",
115
- "@rollup/rollup-freebsd-arm64": "4.25.0",
116
- "@rollup/rollup-linux-arm64-gnu": "4.25.0",
117
- "@rollup/rollup-linux-arm64-musl": "4.25.0",
118
- "@rollup/rollup-android-arm-eabi": "4.25.0",
119
- "@rollup/rollup-linux-arm-gnueabihf": "4.25.0",
120
- "@rollup/rollup-linux-arm-musleabihf": "4.25.0",
121
- "@rollup/rollup-win32-ia32-msvc": "4.25.0",
122
- "@rollup/rollup-linux-riscv64-gnu": "4.25.0",
123
- "@rollup/rollup-linux-powerpc64le-gnu": "4.25.0",
124
- "@rollup/rollup-linux-s390x-gnu": "4.25.0",
125
- "@rollup/rollup-darwin-x64": "4.25.0",
126
- "@rollup/rollup-win32-x64-msvc": "4.25.0",
127
- "@rollup/rollup-freebsd-x64": "4.25.0",
128
- "@rollup/rollup-linux-x64-gnu": "4.25.0",
129
- "@rollup/rollup-linux-x64-musl": "4.25.0"
112
+ "@rollup/rollup-darwin-arm64": "4.26.0",
113
+ "@rollup/rollup-android-arm64": "4.26.0",
114
+ "@rollup/rollup-win32-arm64-msvc": "4.26.0",
115
+ "@rollup/rollup-freebsd-arm64": "4.26.0",
116
+ "@rollup/rollup-linux-arm64-gnu": "4.26.0",
117
+ "@rollup/rollup-linux-arm64-musl": "4.26.0",
118
+ "@rollup/rollup-android-arm-eabi": "4.26.0",
119
+ "@rollup/rollup-linux-arm-gnueabihf": "4.26.0",
120
+ "@rollup/rollup-linux-arm-musleabihf": "4.26.0",
121
+ "@rollup/rollup-win32-ia32-msvc": "4.26.0",
122
+ "@rollup/rollup-linux-riscv64-gnu": "4.26.0",
123
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.26.0",
124
+ "@rollup/rollup-linux-s390x-gnu": "4.26.0",
125
+ "@rollup/rollup-darwin-x64": "4.26.0",
126
+ "@rollup/rollup-win32-x64-msvc": "4.26.0",
127
+ "@rollup/rollup-freebsd-x64": "4.26.0",
128
+ "@rollup/rollup-linux-x64-gnu": "4.26.0",
129
+ "@rollup/rollup-linux-x64-musl": "4.26.0"
130
130
  },
131
131
  "dependencies": {
132
132
  "@types/estree": "1.0.6"