rollup 4.32.1 → 4.33.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/dist/bin/rollup CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.32.1
5
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
4
+ Rollup.js v4.33.0
5
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
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.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -15,7 +15,7 @@ import process$1, { env } from 'node:process';
15
15
  import { performance } from 'node:perf_hooks';
16
16
  import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
17
17
 
18
- var version = "4.32.1";
18
+ var version = "4.33.0";
19
19
 
20
20
  const comma = ','.charCodeAt(0);
21
21
  const semicolon = ';'.charCodeAt(0);
@@ -12320,7 +12320,7 @@ class ImportExpression extends NodeBase {
12320
12320
  return super.parseNode(esTreeNode);
12321
12321
  }
12322
12322
  render(code, options) {
12323
- const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess } } = options;
12323
+ const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess }, importAttributesKey } = options;
12324
12324
  if (this.inlineNamespace) {
12325
12325
  const [left, right] = getDirectReturnFunction([], {
12326
12326
  functionReturn: true,
@@ -12353,7 +12353,7 @@ class ImportExpression extends NodeBase {
12353
12353
  code.overwrite(this.source.end, this.end - 1, '', { contentOnly: true });
12354
12354
  }
12355
12355
  if (this.attributes) {
12356
- code.appendLeft(this.end - 1, `,${_}${getObject([['assert', this.attributes]], {
12356
+ code.appendLeft(this.end - 1, `,${_}${getObject([[importAttributesKey, this.attributes]], {
12357
12357
  lineBreakIndent: null
12358
12358
  })}`);
12359
12359
  }
@@ -13085,6 +13085,8 @@ class LogicalExpression extends NodeBase {
13085
13085
  }
13086
13086
  }
13087
13087
  getLiteralValueAtPath(path, recursionTracker, origin) {
13088
+ if (origin === this)
13089
+ return UnknownValue;
13088
13090
  const usedBranch = this.getUsedBranch();
13089
13091
  if (usedBranch) {
13090
13092
  this.expressionsToBeDeoptimized.push(origin);
@@ -14014,8 +14016,17 @@ class UnaryExpression extends NodeBase {
14014
14016
  if (path.length > 0)
14015
14017
  return UnknownValue;
14016
14018
  const argumentValue = this.argument.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
14017
- if (typeof argumentValue === 'symbol')
14019
+ if (typeof argumentValue === 'symbol') {
14020
+ if (this.operator === 'void')
14021
+ return undefined;
14022
+ if (this.operator === '!') {
14023
+ if (argumentValue === UnknownFalsyValue)
14024
+ return true;
14025
+ if (argumentValue === UnknownTruthyValue)
14026
+ return false;
14027
+ }
14018
14028
  return UnknownValue;
14029
+ }
14019
14030
  return unaryOperators[this.operator](argumentValue);
14020
14031
  }
14021
14032
  hasEffects(context) {
@@ -17517,17 +17528,21 @@ class Chunk {
17517
17528
  .filter((resolution) => resolution !== this &&
17518
17529
  (resolution instanceof Chunk || resolution instanceof ExternalChunk));
17519
17530
  }
17520
- getDynamicImportStringAndAttributes(resolution, fileName) {
17531
+ getDynamicImportStringAndAttributes(resolution, fileName, node) {
17521
17532
  if (resolution instanceof ExternalModule) {
17522
17533
  const chunk = this.externalChunkByModule.get(resolution);
17523
17534
  return [`'${chunk.getImportPath(fileName)}'`, chunk.getImportAttributes(this.snippets)];
17524
17535
  }
17525
- return [
17526
- resolution || '',
17527
- (['es', 'cjs'].includes(this.outputOptions.format) &&
17528
- this.outputOptions.externalImportAttributes) ||
17529
- null
17530
- ];
17536
+ let attributes = null;
17537
+ if (['es', 'cjs'].includes(this.outputOptions.format) &&
17538
+ this.outputOptions.externalImportAttributes) {
17539
+ const attributesFromImportAttributes = getAttributesFromImportExpression(node);
17540
+ attributes =
17541
+ attributesFromImportAttributes === EMPTY_OBJECT
17542
+ ? true
17543
+ : formatAttributes(attributesFromImportAttributes, this.snippets);
17544
+ }
17545
+ return [resolution || '', attributes];
17531
17546
  }
17532
17547
  getFallbackChunkName() {
17533
17548
  if (this.manualChunkAlias) {
@@ -17743,7 +17758,7 @@ class Chunk {
17743
17758
  // This method changes properties on the AST before rendering and must not be async
17744
17759
  renderModules(fileName) {
17745
17760
  const { accessedGlobalsByScope, dependencies, exportNamesByVariable, includedNamespaces, inputOptions: { onLog }, isEmpty, orderedModules, outputOptions, pluginDriver, renderedModules, snippets } = this;
17746
- const { compact, format, freeze, generatedCode: { symbols } } = outputOptions;
17761
+ const { compact, format, freeze, generatedCode: { symbols }, importAttributesKey } = outputOptions;
17747
17762
  const { _, cnst, n } = snippets;
17748
17763
  this.setDynamicImportResolutions(fileName);
17749
17764
  this.setImportMetaResolutions(fileName);
@@ -17759,6 +17774,7 @@ class Chunk {
17759
17774
  exportNamesByVariable,
17760
17775
  format,
17761
17776
  freeze,
17777
+ importAttributesKey,
17762
17778
  indent,
17763
17779
  pluginDriver,
17764
17780
  snippets,
@@ -17837,7 +17853,7 @@ class Chunk {
17837
17853
  }
17838
17854
  else {
17839
17855
  const { node, resolution } = resolvedDynamicImport;
17840
- const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName);
17856
+ const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName, node);
17841
17857
  node.setExternalResolution('external', resolution, outputOptions, snippets, pluginDriver, accessedGlobalsByScope, resolutionString, false, attributes);
17842
17858
  }
17843
17859
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
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.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
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.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -17,7 +17,7 @@ const native_js = require('../native.js');
17
17
  const node_perf_hooks = require('node:perf_hooks');
18
18
  const promises = require('node:fs/promises');
19
19
 
20
- var version = "4.32.1";
20
+ var version = "4.33.0";
21
21
 
22
22
  function ensureArray$1(items) {
23
23
  if (Array.isArray(items)) {
@@ -13788,7 +13788,7 @@ class ImportExpression extends NodeBase {
13788
13788
  return super.parseNode(esTreeNode);
13789
13789
  }
13790
13790
  render(code, options) {
13791
- const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess } } = options;
13791
+ const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess }, importAttributesKey } = options;
13792
13792
  if (this.inlineNamespace) {
13793
13793
  const [left, right] = getDirectReturnFunction([], {
13794
13794
  functionReturn: true,
@@ -13821,7 +13821,7 @@ class ImportExpression extends NodeBase {
13821
13821
  code.overwrite(this.source.end, this.end - 1, '', { contentOnly: true });
13822
13822
  }
13823
13823
  if (this.attributes) {
13824
- code.appendLeft(this.end - 1, `,${_}${getObject([['assert', this.attributes]], {
13824
+ code.appendLeft(this.end - 1, `,${_}${getObject([[importAttributesKey, this.attributes]], {
13825
13825
  lineBreakIndent: null
13826
13826
  })}`);
13827
13827
  }
@@ -14553,6 +14553,8 @@ class LogicalExpression extends NodeBase {
14553
14553
  }
14554
14554
  }
14555
14555
  getLiteralValueAtPath(path, recursionTracker, origin) {
14556
+ if (origin === this)
14557
+ return UnknownValue;
14556
14558
  const usedBranch = this.getUsedBranch();
14557
14559
  if (usedBranch) {
14558
14560
  this.expressionsToBeDeoptimized.push(origin);
@@ -15482,8 +15484,17 @@ class UnaryExpression extends NodeBase {
15482
15484
  if (path.length > 0)
15483
15485
  return UnknownValue;
15484
15486
  const argumentValue = this.argument.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
15485
- if (typeof argumentValue === 'symbol')
15487
+ if (typeof argumentValue === 'symbol') {
15488
+ if (this.operator === 'void')
15489
+ return undefined;
15490
+ if (this.operator === '!') {
15491
+ if (argumentValue === UnknownFalsyValue)
15492
+ return true;
15493
+ if (argumentValue === UnknownTruthyValue)
15494
+ return false;
15495
+ }
15486
15496
  return UnknownValue;
15497
+ }
15487
15498
  return unaryOperators[this.operator](argumentValue);
15488
15499
  }
15489
15500
  hasEffects(context) {
@@ -18869,17 +18880,21 @@ class Chunk {
18869
18880
  .filter((resolution) => resolution !== this &&
18870
18881
  (resolution instanceof Chunk || resolution instanceof ExternalChunk));
18871
18882
  }
18872
- getDynamicImportStringAndAttributes(resolution, fileName) {
18883
+ getDynamicImportStringAndAttributes(resolution, fileName, node) {
18873
18884
  if (resolution instanceof ExternalModule) {
18874
18885
  const chunk = this.externalChunkByModule.get(resolution);
18875
18886
  return [`'${chunk.getImportPath(fileName)}'`, chunk.getImportAttributes(this.snippets)];
18876
18887
  }
18877
- return [
18878
- resolution || '',
18879
- (['es', 'cjs'].includes(this.outputOptions.format) &&
18880
- this.outputOptions.externalImportAttributes) ||
18881
- null
18882
- ];
18888
+ let attributes = null;
18889
+ if (['es', 'cjs'].includes(this.outputOptions.format) &&
18890
+ this.outputOptions.externalImportAttributes) {
18891
+ const attributesFromImportAttributes = getAttributesFromImportExpression(node);
18892
+ attributes =
18893
+ attributesFromImportAttributes === parseAst_js.EMPTY_OBJECT
18894
+ ? true
18895
+ : formatAttributes(attributesFromImportAttributes, this.snippets);
18896
+ }
18897
+ return [resolution || '', attributes];
18883
18898
  }
18884
18899
  getFallbackChunkName() {
18885
18900
  if (this.manualChunkAlias) {
@@ -19095,7 +19110,7 @@ class Chunk {
19095
19110
  // This method changes properties on the AST before rendering and must not be async
19096
19111
  renderModules(fileName) {
19097
19112
  const { accessedGlobalsByScope, dependencies, exportNamesByVariable, includedNamespaces, inputOptions: { onLog }, isEmpty, orderedModules, outputOptions, pluginDriver, renderedModules, snippets } = this;
19098
- const { compact, format, freeze, generatedCode: { symbols } } = outputOptions;
19113
+ const { compact, format, freeze, generatedCode: { symbols }, importAttributesKey } = outputOptions;
19099
19114
  const { _, cnst, n } = snippets;
19100
19115
  this.setDynamicImportResolutions(fileName);
19101
19116
  this.setImportMetaResolutions(fileName);
@@ -19111,6 +19126,7 @@ class Chunk {
19111
19126
  exportNamesByVariable,
19112
19127
  format,
19113
19128
  freeze,
19129
+ importAttributesKey,
19114
19130
  indent,
19115
19131
  pluginDriver,
19116
19132
  snippets,
@@ -19189,7 +19205,7 @@ class Chunk {
19189
19205
  }
19190
19206
  else {
19191
19207
  const { node, resolution } = resolvedDynamicImport;
19192
- const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName);
19208
+ const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName, node);
19193
19209
  node.setExternalResolution('external', resolution, outputOptions, snippets, pluginDriver, accessedGlobalsByScope, resolutionString, false, attributes);
19194
19210
  }
19195
19211
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.32.1
4
- Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
3
+ Rollup.js v4.33.0
4
+ Sat, 01 Feb 2025 07:11:29 GMT - commit 494483e8df7b5d04796b30e37f54d7e96fa91a97
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.32.1",
3
+ "version": "4.33.0",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -110,25 +110,25 @@
110
110
  "homepage": "https://rollupjs.org/",
111
111
  "optionalDependencies": {
112
112
  "fsevents": "~2.3.2",
113
- "@rollup/rollup-darwin-arm64": "4.32.1",
114
- "@rollup/rollup-android-arm64": "4.32.1",
115
- "@rollup/rollup-win32-arm64-msvc": "4.32.1",
116
- "@rollup/rollup-freebsd-arm64": "4.32.1",
117
- "@rollup/rollup-linux-arm64-gnu": "4.32.1",
118
- "@rollup/rollup-linux-arm64-musl": "4.32.1",
119
- "@rollup/rollup-android-arm-eabi": "4.32.1",
120
- "@rollup/rollup-linux-arm-gnueabihf": "4.32.1",
121
- "@rollup/rollup-linux-arm-musleabihf": "4.32.1",
122
- "@rollup/rollup-win32-ia32-msvc": "4.32.1",
123
- "@rollup/rollup-linux-loongarch64-gnu": "4.32.1",
124
- "@rollup/rollup-linux-riscv64-gnu": "4.32.1",
125
- "@rollup/rollup-linux-powerpc64le-gnu": "4.32.1",
126
- "@rollup/rollup-linux-s390x-gnu": "4.32.1",
127
- "@rollup/rollup-darwin-x64": "4.32.1",
128
- "@rollup/rollup-win32-x64-msvc": "4.32.1",
129
- "@rollup/rollup-freebsd-x64": "4.32.1",
130
- "@rollup/rollup-linux-x64-gnu": "4.32.1",
131
- "@rollup/rollup-linux-x64-musl": "4.32.1"
113
+ "@rollup/rollup-darwin-arm64": "4.33.0",
114
+ "@rollup/rollup-android-arm64": "4.33.0",
115
+ "@rollup/rollup-win32-arm64-msvc": "4.33.0",
116
+ "@rollup/rollup-freebsd-arm64": "4.33.0",
117
+ "@rollup/rollup-linux-arm64-gnu": "4.33.0",
118
+ "@rollup/rollup-linux-arm64-musl": "4.33.0",
119
+ "@rollup/rollup-android-arm-eabi": "4.33.0",
120
+ "@rollup/rollup-linux-arm-gnueabihf": "4.33.0",
121
+ "@rollup/rollup-linux-arm-musleabihf": "4.33.0",
122
+ "@rollup/rollup-win32-ia32-msvc": "4.33.0",
123
+ "@rollup/rollup-linux-loongarch64-gnu": "4.33.0",
124
+ "@rollup/rollup-linux-riscv64-gnu": "4.33.0",
125
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.33.0",
126
+ "@rollup/rollup-linux-s390x-gnu": "4.33.0",
127
+ "@rollup/rollup-darwin-x64": "4.33.0",
128
+ "@rollup/rollup-win32-x64-msvc": "4.33.0",
129
+ "@rollup/rollup-freebsd-x64": "4.33.0",
130
+ "@rollup/rollup-linux-x64-gnu": "4.33.0",
131
+ "@rollup/rollup-linux-x64-musl": "4.33.0"
132
132
  },
133
133
  "dependencies": {
134
134
  "@types/estree": "1.0.6"
@@ -143,7 +143,7 @@
143
143
  "@codemirror/search": "^6.5.8",
144
144
  "@codemirror/state": "^6.5.1",
145
145
  "@codemirror/view": "^6.36.2",
146
- "@eslint/js": "^9.18.0",
146
+ "@eslint/js": "^9.19.0",
147
147
  "@inquirer/prompts": "^7.2.3",
148
148
  "@jridgewell/sourcemap-codec": "^1.5.0",
149
149
  "@mermaid-js/mermaid-cli": "^11.4.2",
@@ -157,9 +157,9 @@
157
157
  "@rollup/plugin-terser": "^0.4.4",
158
158
  "@rollup/plugin-typescript": "^12.1.2",
159
159
  "@rollup/pluginutils": "^5.1.4",
160
- "@shikijs/vitepress-twoslash": "^2.0.3",
160
+ "@shikijs/vitepress-twoslash": "^2.1.0",
161
161
  "@types/mocha": "^10.0.10",
162
- "@types/node": "^18.19.71",
162
+ "@types/node": "^18.19.74",
163
163
  "@types/semver": "^7.5.8",
164
164
  "@types/yargs-parser": "^21.0.3",
165
165
  "@vue/language-server": "^2.2.0",
@@ -175,7 +175,7 @@
175
175
  "date-time": "^4.0.0",
176
176
  "es5-shim": "^4.6.7",
177
177
  "es6-shim": "^0.35.8",
178
- "eslint": "^9.18.0",
178
+ "eslint": "^9.19.0",
179
179
  "eslint-config-prettier": "^10.0.1",
180
180
  "eslint-plugin-prettier": "^5.2.3",
181
181
  "eslint-plugin-unicorn": "^56.0.1",
@@ -187,7 +187,7 @@
187
187
  "globals": "^15.14.0",
188
188
  "husky": "^9.1.7",
189
189
  "is-reference": "^3.0.3",
190
- "lint-staged": "^15.4.1",
190
+ "lint-staged": "^15.4.3",
191
191
  "locate-character": "^3.0.0",
192
192
  "magic-string": "^0.30.17",
193
193
  "mocha": "^11.1.0",
@@ -201,7 +201,7 @@
201
201
  "pretty-bytes": "^6.1.1",
202
202
  "pretty-ms": "^9.2.0",
203
203
  "requirejs": "^2.3.7",
204
- "rollup": "^4.31.0",
204
+ "rollup": "^4.32.0",
205
205
  "rollup-plugin-license": "^3.5.3",
206
206
  "rollup-plugin-string": "^3.0.0",
207
207
  "semver": "^7.6.3",
@@ -213,9 +213,9 @@
213
213
  "terser": "^5.37.0",
214
214
  "tslib": "^2.8.1",
215
215
  "typescript": "^5.7.3",
216
- "typescript-eslint": "^8.21.0",
217
- "vite": "^6.0.10",
218
- "vitepress": "^1.6.1",
216
+ "typescript-eslint": "^8.22.0",
217
+ "vite": "^6.0.11",
218
+ "vitepress": "^1.6.3",
219
219
  "vue": "^3.5.13",
220
220
  "vue-tsc": "^2.2.0",
221
221
  "wasm-pack": "^0.13.1",