rollup 4.45.3 → 4.46.1

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/dist/bin/rollup CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.45.3
5
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
4
+ Rollup.js v4.46.1
5
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
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.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -27,7 +27,7 @@ function _mergeNamespaces(n, m) {
27
27
  return Object.defineProperty(n, Symbol.toStringTag, { value: 'Module' });
28
28
  }
29
29
 
30
- var version = "4.45.3";
30
+ var version = "4.46.1";
31
31
 
32
32
  // src/vlq.ts
33
33
  var comma = ",".charCodeAt(0);
@@ -11759,6 +11759,33 @@ class AwaitExpression extends NodeBase {
11759
11759
  }
11760
11760
  const THEN_PATH = ['then'];
11761
11761
 
11762
+ function getRenderedLiteralValue(value) {
11763
+ if (value === undefined) {
11764
+ return 'void 0';
11765
+ }
11766
+ if (typeof value === 'boolean') {
11767
+ return String(value);
11768
+ }
11769
+ if (typeof value === 'string') {
11770
+ return JSON.stringify(value);
11771
+ }
11772
+ if (typeof value === 'number') {
11773
+ return getSimplifiedNumber(value);
11774
+ }
11775
+ return UnknownValue;
11776
+ }
11777
+ function getSimplifiedNumber(value) {
11778
+ if (Object.is(-0, value)) {
11779
+ return '-0';
11780
+ }
11781
+ const exp = value.toExponential();
11782
+ const [base, exponent] = exp.split('e');
11783
+ const floatLength = base.split('.')[1]?.length || 0;
11784
+ const finalizedExp = `${base.replace('.', '')}e${parseInt(exponent) - floatLength}`;
11785
+ const stringifiedValue = String(value).replace('+', '');
11786
+ return finalizedExp.length < stringifiedValue.length ? finalizedExp : stringifiedValue;
11787
+ }
11788
+
11762
11789
  const binaryOperators = {
11763
11790
  '!=': (left, right) => left != right,
11764
11791
  '!==': (left, right) => left !== right,
@@ -11785,14 +11812,25 @@ const binaryOperators = {
11785
11812
  // in: () => UnknownValue,
11786
11813
  // instanceof: () => UnknownValue,
11787
11814
  };
11815
+ const UNASSIGNED$1 = Symbol('Unassigned');
11788
11816
  class BinaryExpression extends NodeBase {
11789
- deoptimizeCache() { }
11817
+ constructor() {
11818
+ super(...arguments);
11819
+ this.renderedLiteralValue = UNASSIGNED$1;
11820
+ }
11821
+ deoptimizeCache() {
11822
+ this.renderedLiteralValue = UnknownValue;
11823
+ }
11790
11824
  getLiteralValueAtPath(path, recursionTracker, origin) {
11791
11825
  if (path.length > 0)
11792
11826
  return UnknownValue;
11793
11827
  const leftValue = this.left.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
11794
11828
  if (typeof leftValue === 'symbol')
11795
11829
  return UnknownValue;
11830
+ // Optimize `'export' in namespace`
11831
+ if (this.operator === 'in' && this.right.variable instanceof NamespaceVariable) {
11832
+ return this.right.variable.context.traceExport(String(leftValue))[0] != null;
11833
+ }
11796
11834
  const rightValue = this.right.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
11797
11835
  if (typeof rightValue === 'symbol')
11798
11836
  return UnknownValue;
@@ -11801,6 +11839,14 @@ class BinaryExpression extends NodeBase {
11801
11839
  return UnknownValue;
11802
11840
  return operatorFunction(leftValue, rightValue);
11803
11841
  }
11842
+ getRenderedLiteralValue() {
11843
+ // Only optimize `'export' in ns`
11844
+ if (this.operator !== 'in' || !this.right.variable?.isNamespace)
11845
+ return UnknownValue;
11846
+ if (this.renderedLiteralValue !== UNASSIGNED$1)
11847
+ return this.renderedLiteralValue;
11848
+ return (this.renderedLiteralValue = getRenderedLiteralValue(this.getLiteralValueAtPath(EMPTY_PATH, SHARED_RECURSION_TRACKER, this)));
11849
+ }
11804
11850
  hasEffects(context) {
11805
11851
  // support some implicit type coercion runtime errors
11806
11852
  if (this.operator === '+' &&
@@ -11813,9 +11859,15 @@ class BinaryExpression extends NodeBase {
11813
11859
  hasEffectsOnInteractionAtPath(path, { type }) {
11814
11860
  return type !== INTERACTION_ACCESSED || path.length > 1;
11815
11861
  }
11862
+ include(context, includeChildrenRecursively, _options) {
11863
+ this.included = true;
11864
+ if (typeof this.getRenderedLiteralValue() === 'symbol') {
11865
+ super.include(context, includeChildrenRecursively, _options);
11866
+ }
11867
+ }
11816
11868
  includeNode(context) {
11817
11869
  this.included = true;
11818
- if (this.operator === 'in') {
11870
+ if (this.operator === 'in' && typeof this.getRenderedLiteralValue() === 'symbol') {
11819
11871
  this.right.includePath(UNKNOWN_PATH, context);
11820
11872
  }
11821
11873
  }
@@ -11823,8 +11875,14 @@ class BinaryExpression extends NodeBase {
11823
11875
  this.left.removeAnnotations(code);
11824
11876
  }
11825
11877
  render(code, options, { renderedSurroundingElement } = BLANK) {
11826
- this.left.render(code, options, { renderedSurroundingElement });
11827
- this.right.render(code, options);
11878
+ const renderedLiteralValue = this.getRenderedLiteralValue();
11879
+ if (typeof renderedLiteralValue !== 'symbol') {
11880
+ code.overwrite(this.start, this.end, renderedLiteralValue);
11881
+ }
11882
+ else {
11883
+ this.left.render(code, options, { renderedSurroundingElement });
11884
+ this.right.render(code, options);
11885
+ }
11828
11886
  }
11829
11887
  }
11830
11888
  BinaryExpression.prototype.applyDeoptimizations = doNotDeoptimize;
@@ -15164,33 +15222,6 @@ class UnaryExpression extends NodeBase {
15164
15222
  }
15165
15223
  }
15166
15224
  const CHARACTERS_THAT_DO_NOT_REQUIRE_SPACE = /[\s([=%&*+-/<>^|,?:;]/;
15167
- function getRenderedLiteralValue(value) {
15168
- if (value === undefined) {
15169
- // At the moment, the undefined only happens when the operator is void
15170
- return 'void 0';
15171
- }
15172
- if (typeof value === 'boolean') {
15173
- return String(value);
15174
- }
15175
- if (typeof value === 'string') {
15176
- return JSON.stringify(value);
15177
- }
15178
- if (typeof value === 'number') {
15179
- return getSimplifiedNumber(value);
15180
- }
15181
- return UnknownValue;
15182
- }
15183
- function getSimplifiedNumber(value) {
15184
- if (Object.is(-0, value)) {
15185
- return '-0';
15186
- }
15187
- const exp = value.toExponential();
15188
- const [base, exponent] = exp.split('e');
15189
- const floatLength = base.split('.')[1]?.length || 0;
15190
- const finalizedExp = `${base.replace('.', '')}e${parseInt(exponent) - floatLength}`;
15191
- const stringifiedValue = String(value).replace('+', '');
15192
- return finalizedExp.length < stringifiedValue.length ? finalizedExp : stringifiedValue;
15193
- }
15194
15225
  UnaryExpression.prototype.includeNode = onlyIncludeSelf;
15195
15226
 
15196
15227
  class UpdateExpression extends NodeBase {
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
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.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -42,7 +42,7 @@ function _mergeNamespaces(n, m) {
42
42
 
43
43
  const promises__namespace = /*#__PURE__*/_interopNamespaceDefault(promises);
44
44
 
45
- var version = "4.45.3";
45
+ var version = "4.46.1";
46
46
 
47
47
  function ensureArray$1(items) {
48
48
  if (Array.isArray(items)) {
@@ -13368,6 +13368,33 @@ class AwaitExpression extends NodeBase {
13368
13368
  }
13369
13369
  const THEN_PATH = ['then'];
13370
13370
 
13371
+ function getRenderedLiteralValue(value) {
13372
+ if (value === undefined) {
13373
+ return 'void 0';
13374
+ }
13375
+ if (typeof value === 'boolean') {
13376
+ return String(value);
13377
+ }
13378
+ if (typeof value === 'string') {
13379
+ return JSON.stringify(value);
13380
+ }
13381
+ if (typeof value === 'number') {
13382
+ return getSimplifiedNumber(value);
13383
+ }
13384
+ return UnknownValue;
13385
+ }
13386
+ function getSimplifiedNumber(value) {
13387
+ if (Object.is(-0, value)) {
13388
+ return '-0';
13389
+ }
13390
+ const exp = value.toExponential();
13391
+ const [base, exponent] = exp.split('e');
13392
+ const floatLength = base.split('.')[1]?.length || 0;
13393
+ const finalizedExp = `${base.replace('.', '')}e${parseInt(exponent) - floatLength}`;
13394
+ const stringifiedValue = String(value).replace('+', '');
13395
+ return finalizedExp.length < stringifiedValue.length ? finalizedExp : stringifiedValue;
13396
+ }
13397
+
13371
13398
  const binaryOperators = {
13372
13399
  '!=': (left, right) => left != right,
13373
13400
  '!==': (left, right) => left !== right,
@@ -13394,14 +13421,25 @@ const binaryOperators = {
13394
13421
  // in: () => UnknownValue,
13395
13422
  // instanceof: () => UnknownValue,
13396
13423
  };
13424
+ const UNASSIGNED$1 = Symbol('Unassigned');
13397
13425
  class BinaryExpression extends NodeBase {
13398
- deoptimizeCache() { }
13426
+ constructor() {
13427
+ super(...arguments);
13428
+ this.renderedLiteralValue = UNASSIGNED$1;
13429
+ }
13430
+ deoptimizeCache() {
13431
+ this.renderedLiteralValue = UnknownValue;
13432
+ }
13399
13433
  getLiteralValueAtPath(path, recursionTracker, origin) {
13400
13434
  if (path.length > 0)
13401
13435
  return UnknownValue;
13402
13436
  const leftValue = this.left.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
13403
13437
  if (typeof leftValue === 'symbol')
13404
13438
  return UnknownValue;
13439
+ // Optimize `'export' in namespace`
13440
+ if (this.operator === 'in' && this.right.variable instanceof NamespaceVariable) {
13441
+ return this.right.variable.context.traceExport(String(leftValue))[0] != null;
13442
+ }
13405
13443
  const rightValue = this.right.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
13406
13444
  if (typeof rightValue === 'symbol')
13407
13445
  return UnknownValue;
@@ -13410,6 +13448,14 @@ class BinaryExpression extends NodeBase {
13410
13448
  return UnknownValue;
13411
13449
  return operatorFunction(leftValue, rightValue);
13412
13450
  }
13451
+ getRenderedLiteralValue() {
13452
+ // Only optimize `'export' in ns`
13453
+ if (this.operator !== 'in' || !this.right.variable?.isNamespace)
13454
+ return UnknownValue;
13455
+ if (this.renderedLiteralValue !== UNASSIGNED$1)
13456
+ return this.renderedLiteralValue;
13457
+ return (this.renderedLiteralValue = getRenderedLiteralValue(this.getLiteralValueAtPath(EMPTY_PATH, SHARED_RECURSION_TRACKER, this)));
13458
+ }
13413
13459
  hasEffects(context) {
13414
13460
  // support some implicit type coercion runtime errors
13415
13461
  if (this.operator === '+' &&
@@ -13422,9 +13468,15 @@ class BinaryExpression extends NodeBase {
13422
13468
  hasEffectsOnInteractionAtPath(path, { type }) {
13423
13469
  return type !== INTERACTION_ACCESSED || path.length > 1;
13424
13470
  }
13471
+ include(context, includeChildrenRecursively, _options) {
13472
+ this.included = true;
13473
+ if (typeof this.getRenderedLiteralValue() === 'symbol') {
13474
+ super.include(context, includeChildrenRecursively, _options);
13475
+ }
13476
+ }
13425
13477
  includeNode(context) {
13426
13478
  this.included = true;
13427
- if (this.operator === 'in') {
13479
+ if (this.operator === 'in' && typeof this.getRenderedLiteralValue() === 'symbol') {
13428
13480
  this.right.includePath(UNKNOWN_PATH, context);
13429
13481
  }
13430
13482
  }
@@ -13432,8 +13484,14 @@ class BinaryExpression extends NodeBase {
13432
13484
  this.left.removeAnnotations(code);
13433
13485
  }
13434
13486
  render(code, options, { renderedSurroundingElement } = parseAst_js.BLANK) {
13435
- this.left.render(code, options, { renderedSurroundingElement });
13436
- this.right.render(code, options);
13487
+ const renderedLiteralValue = this.getRenderedLiteralValue();
13488
+ if (typeof renderedLiteralValue !== 'symbol') {
13489
+ code.overwrite(this.start, this.end, renderedLiteralValue);
13490
+ }
13491
+ else {
13492
+ this.left.render(code, options, { renderedSurroundingElement });
13493
+ this.right.render(code, options);
13494
+ }
13437
13495
  }
13438
13496
  }
13439
13497
  BinaryExpression.prototype.applyDeoptimizations = doNotDeoptimize;
@@ -16773,33 +16831,6 @@ class UnaryExpression extends NodeBase {
16773
16831
  }
16774
16832
  }
16775
16833
  const CHARACTERS_THAT_DO_NOT_REQUIRE_SPACE = /[\s([=%&*+-/<>^|,?:;]/;
16776
- function getRenderedLiteralValue(value) {
16777
- if (value === undefined) {
16778
- // At the moment, the undefined only happens when the operator is void
16779
- return 'void 0';
16780
- }
16781
- if (typeof value === 'boolean') {
16782
- return String(value);
16783
- }
16784
- if (typeof value === 'string') {
16785
- return JSON.stringify(value);
16786
- }
16787
- if (typeof value === 'number') {
16788
- return getSimplifiedNumber(value);
16789
- }
16790
- return UnknownValue;
16791
- }
16792
- function getSimplifiedNumber(value) {
16793
- if (Object.is(-0, value)) {
16794
- return '-0';
16795
- }
16796
- const exp = value.toExponential();
16797
- const [base, exponent] = exp.split('e');
16798
- const floatLength = base.split('.')[1]?.length || 0;
16799
- const finalizedExp = `${base.replace('.', '')}e${parseInt(exponent) - floatLength}`;
16800
- const stringifiedValue = String(value).replace('+', '');
16801
- return finalizedExp.length < stringifiedValue.length ? finalizedExp : stringifiedValue;
16802
- }
16803
16834
  UnaryExpression.prototype.includeNode = onlyIncludeSelf;
16804
16835
 
16805
16836
  class UpdateExpression extends NodeBase {
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.45.3
4
- Sat, 26 Jul 2025 13:41:14 GMT - commit d6908c90c26220f490ff43b226e61288c864d06a
3
+ Rollup.js v4.46.1
4
+ Mon, 28 Jul 2025 04:48:09 GMT - commit 244dc20bab1cd59221b70cd759e0a0ec15044c2e
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.45.3",
3
+ "version": "4.46.1",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -104,26 +104,26 @@
104
104
  "homepage": "https://rollupjs.org/",
105
105
  "optionalDependencies": {
106
106
  "fsevents": "~2.3.2",
107
- "@rollup/rollup-darwin-arm64": "4.45.3",
108
- "@rollup/rollup-android-arm64": "4.45.3",
109
- "@rollup/rollup-win32-arm64-msvc": "4.45.3",
110
- "@rollup/rollup-freebsd-arm64": "4.45.3",
111
- "@rollup/rollup-linux-arm64-gnu": "4.45.3",
112
- "@rollup/rollup-linux-arm64-musl": "4.45.3",
113
- "@rollup/rollup-android-arm-eabi": "4.45.3",
114
- "@rollup/rollup-linux-arm-gnueabihf": "4.45.3",
115
- "@rollup/rollup-linux-arm-musleabihf": "4.45.3",
116
- "@rollup/rollup-win32-ia32-msvc": "4.45.3",
117
- "@rollup/rollup-linux-loongarch64-gnu": "4.45.3",
118
- "@rollup/rollup-linux-riscv64-gnu": "4.45.3",
119
- "@rollup/rollup-linux-riscv64-musl": "4.45.3",
120
- "@rollup/rollup-linux-ppc64-gnu": "4.45.3",
121
- "@rollup/rollup-linux-s390x-gnu": "4.45.3",
122
- "@rollup/rollup-darwin-x64": "4.45.3",
123
- "@rollup/rollup-win32-x64-msvc": "4.45.3",
124
- "@rollup/rollup-freebsd-x64": "4.45.3",
125
- "@rollup/rollup-linux-x64-gnu": "4.45.3",
126
- "@rollup/rollup-linux-x64-musl": "4.45.3"
107
+ "@rollup/rollup-darwin-arm64": "4.46.1",
108
+ "@rollup/rollup-android-arm64": "4.46.1",
109
+ "@rollup/rollup-win32-arm64-msvc": "4.46.1",
110
+ "@rollup/rollup-freebsd-arm64": "4.46.1",
111
+ "@rollup/rollup-linux-arm64-gnu": "4.46.1",
112
+ "@rollup/rollup-linux-arm64-musl": "4.46.1",
113
+ "@rollup/rollup-android-arm-eabi": "4.46.1",
114
+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.1",
115
+ "@rollup/rollup-linux-arm-musleabihf": "4.46.1",
116
+ "@rollup/rollup-win32-ia32-msvc": "4.46.1",
117
+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.1",
118
+ "@rollup/rollup-linux-riscv64-gnu": "4.46.1",
119
+ "@rollup/rollup-linux-riscv64-musl": "4.46.1",
120
+ "@rollup/rollup-linux-ppc64-gnu": "4.46.1",
121
+ "@rollup/rollup-linux-s390x-gnu": "4.46.1",
122
+ "@rollup/rollup-darwin-x64": "4.46.1",
123
+ "@rollup/rollup-win32-x64-msvc": "4.46.1",
124
+ "@rollup/rollup-freebsd-x64": "4.46.1",
125
+ "@rollup/rollup-linux-x64-gnu": "4.46.1",
126
+ "@rollup/rollup-linux-x64-musl": "4.46.1"
127
127
  },
128
128
  "dependencies": {
129
129
  "@types/estree": "1.0.8"