rollup 4.33.0-0 → 4.34.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.33.0-0
5
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
4
+ Rollup.js v4.34.0
5
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0";
18
+ var version = "4.34.0";
19
19
 
20
20
  const comma = ','.charCodeAt(0);
21
21
  const semicolon = ';'.charCodeAt(0);
@@ -12951,7 +12951,7 @@ class ImportExpression extends NodeBase {
12951
12951
  return super.parseNode(esTreeNode);
12952
12952
  }
12953
12953
  render(code, options) {
12954
- const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess } } = options;
12954
+ const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess }, importAttributesKey } = options;
12955
12955
  if (this.inlineNamespace) {
12956
12956
  const [left, right] = getDirectReturnFunction([], {
12957
12957
  functionReturn: true,
@@ -12984,7 +12984,7 @@ class ImportExpression extends NodeBase {
12984
12984
  code.overwrite(this.source.end, this.end - 1, '', { contentOnly: true });
12985
12985
  }
12986
12986
  if (this.attributes) {
12987
- code.appendLeft(this.end - 1, `,${_}${getObject([['assert', this.attributes]], {
12987
+ code.appendLeft(this.end - 1, `,${_}${getObject([[importAttributesKey, this.attributes]], {
12988
12988
  lineBreakIndent: null
12989
12989
  })}`);
12990
12990
  }
@@ -13789,6 +13789,8 @@ class LogicalExpression extends NodeBase {
13789
13789
  }
13790
13790
  }
13791
13791
  getLiteralValueAtPath(path, recursionTracker, origin) {
13792
+ if (origin === this)
13793
+ return UnknownValue;
13792
13794
  const usedBranch = this.getUsedBranch();
13793
13795
  if (usedBranch) {
13794
13796
  this.expressionsToBeDeoptimized.push(origin);
@@ -14848,8 +14850,17 @@ class UnaryExpression extends NodeBase {
14848
14850
  if (path.length > 0)
14849
14851
  return UnknownValue;
14850
14852
  const argumentValue = this.argument.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
14851
- if (typeof argumentValue === 'symbol')
14853
+ if (typeof argumentValue === 'symbol') {
14854
+ if (this.operator === 'void')
14855
+ return undefined;
14856
+ if (this.operator === '!') {
14857
+ if (argumentValue === UnknownFalsyValue)
14858
+ return true;
14859
+ if (argumentValue === UnknownTruthyValue)
14860
+ return false;
14861
+ }
14852
14862
  return UnknownValue;
14863
+ }
14853
14864
  return unaryOperators[this.operator](argumentValue);
14854
14865
  }
14855
14866
  hasEffects(context) {
@@ -18366,17 +18377,21 @@ class Chunk {
18366
18377
  .filter((resolution) => resolution !== this &&
18367
18378
  (resolution instanceof Chunk || resolution instanceof ExternalChunk));
18368
18379
  }
18369
- getDynamicImportStringAndAttributes(resolution, fileName) {
18380
+ getDynamicImportStringAndAttributes(resolution, fileName, node) {
18370
18381
  if (resolution instanceof ExternalModule) {
18371
18382
  const chunk = this.externalChunkByModule.get(resolution);
18372
18383
  return [`'${chunk.getImportPath(fileName)}'`, chunk.getImportAttributes(this.snippets)];
18373
18384
  }
18374
- return [
18375
- resolution || '',
18376
- (['es', 'cjs'].includes(this.outputOptions.format) &&
18377
- this.outputOptions.externalImportAttributes) ||
18378
- null
18379
- ];
18385
+ let attributes = null;
18386
+ if (['es', 'cjs'].includes(this.outputOptions.format) &&
18387
+ this.outputOptions.externalImportAttributes) {
18388
+ const attributesFromImportAttributes = getAttributesFromImportExpression(node);
18389
+ attributes =
18390
+ attributesFromImportAttributes === EMPTY_OBJECT
18391
+ ? true
18392
+ : formatAttributes(attributesFromImportAttributes, this.snippets);
18393
+ }
18394
+ return [resolution || '', attributes];
18380
18395
  }
18381
18396
  getFallbackChunkName() {
18382
18397
  if (this.manualChunkAlias) {
@@ -18592,7 +18607,7 @@ class Chunk {
18592
18607
  // This method changes properties on the AST before rendering and must not be async
18593
18608
  renderModules(fileName) {
18594
18609
  const { accessedGlobalsByScope, dependencies, exportNamesByVariable, includedNamespaces, inputOptions: { onLog }, isEmpty, orderedModules, outputOptions, pluginDriver, renderedModules, snippets } = this;
18595
- const { compact, format, freeze, generatedCode: { symbols } } = outputOptions;
18610
+ const { compact, format, freeze, generatedCode: { symbols }, importAttributesKey } = outputOptions;
18596
18611
  const { _, cnst, n } = snippets;
18597
18612
  this.setDynamicImportResolutions(fileName);
18598
18613
  this.setImportMetaResolutions(fileName);
@@ -18608,6 +18623,7 @@ class Chunk {
18608
18623
  exportNamesByVariable,
18609
18624
  format,
18610
18625
  freeze,
18626
+ importAttributesKey,
18611
18627
  indent,
18612
18628
  pluginDriver,
18613
18629
  snippets,
@@ -18686,7 +18702,7 @@ class Chunk {
18686
18702
  }
18687
18703
  else {
18688
18704
  const { node, resolution } = resolvedDynamicImport;
18689
- const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName);
18705
+ const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName, node);
18690
18706
  node.setExternalResolution('external', resolution, outputOptions, snippets, pluginDriver, accessedGlobalsByScope, resolutionString, false, attributes);
18691
18707
  }
18692
18708
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0";
20
+ var version = "4.34.0";
21
21
 
22
22
  function ensureArray$1(items) {
23
23
  if (Array.isArray(items)) {
@@ -14419,7 +14419,7 @@ class ImportExpression extends NodeBase {
14419
14419
  return super.parseNode(esTreeNode);
14420
14420
  }
14421
14421
  render(code, options) {
14422
- const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess } } = options;
14422
+ const { snippets: { _, getDirectReturnFunction, getObject, getPropertyAccess }, importAttributesKey } = options;
14423
14423
  if (this.inlineNamespace) {
14424
14424
  const [left, right] = getDirectReturnFunction([], {
14425
14425
  functionReturn: true,
@@ -14452,7 +14452,7 @@ class ImportExpression extends NodeBase {
14452
14452
  code.overwrite(this.source.end, this.end - 1, '', { contentOnly: true });
14453
14453
  }
14454
14454
  if (this.attributes) {
14455
- code.appendLeft(this.end - 1, `,${_}${getObject([['assert', this.attributes]], {
14455
+ code.appendLeft(this.end - 1, `,${_}${getObject([[importAttributesKey, this.attributes]], {
14456
14456
  lineBreakIndent: null
14457
14457
  })}`);
14458
14458
  }
@@ -15257,6 +15257,8 @@ class LogicalExpression extends NodeBase {
15257
15257
  }
15258
15258
  }
15259
15259
  getLiteralValueAtPath(path, recursionTracker, origin) {
15260
+ if (origin === this)
15261
+ return UnknownValue;
15260
15262
  const usedBranch = this.getUsedBranch();
15261
15263
  if (usedBranch) {
15262
15264
  this.expressionsToBeDeoptimized.push(origin);
@@ -16316,8 +16318,17 @@ class UnaryExpression extends NodeBase {
16316
16318
  if (path.length > 0)
16317
16319
  return UnknownValue;
16318
16320
  const argumentValue = this.argument.getLiteralValueAtPath(EMPTY_PATH, recursionTracker, origin);
16319
- if (typeof argumentValue === 'symbol')
16321
+ if (typeof argumentValue === 'symbol') {
16322
+ if (this.operator === 'void')
16323
+ return undefined;
16324
+ if (this.operator === '!') {
16325
+ if (argumentValue === UnknownFalsyValue)
16326
+ return true;
16327
+ if (argumentValue === UnknownTruthyValue)
16328
+ return false;
16329
+ }
16320
16330
  return UnknownValue;
16331
+ }
16321
16332
  return unaryOperators[this.operator](argumentValue);
16322
16333
  }
16323
16334
  hasEffects(context) {
@@ -19718,17 +19729,21 @@ class Chunk {
19718
19729
  .filter((resolution) => resolution !== this &&
19719
19730
  (resolution instanceof Chunk || resolution instanceof ExternalChunk));
19720
19731
  }
19721
- getDynamicImportStringAndAttributes(resolution, fileName) {
19732
+ getDynamicImportStringAndAttributes(resolution, fileName, node) {
19722
19733
  if (resolution instanceof ExternalModule) {
19723
19734
  const chunk = this.externalChunkByModule.get(resolution);
19724
19735
  return [`'${chunk.getImportPath(fileName)}'`, chunk.getImportAttributes(this.snippets)];
19725
19736
  }
19726
- return [
19727
- resolution || '',
19728
- (['es', 'cjs'].includes(this.outputOptions.format) &&
19729
- this.outputOptions.externalImportAttributes) ||
19730
- null
19731
- ];
19737
+ let attributes = null;
19738
+ if (['es', 'cjs'].includes(this.outputOptions.format) &&
19739
+ this.outputOptions.externalImportAttributes) {
19740
+ const attributesFromImportAttributes = getAttributesFromImportExpression(node);
19741
+ attributes =
19742
+ attributesFromImportAttributes === parseAst_js.EMPTY_OBJECT
19743
+ ? true
19744
+ : formatAttributes(attributesFromImportAttributes, this.snippets);
19745
+ }
19746
+ return [resolution || '', attributes];
19732
19747
  }
19733
19748
  getFallbackChunkName() {
19734
19749
  if (this.manualChunkAlias) {
@@ -19944,7 +19959,7 @@ class Chunk {
19944
19959
  // This method changes properties on the AST before rendering and must not be async
19945
19960
  renderModules(fileName) {
19946
19961
  const { accessedGlobalsByScope, dependencies, exportNamesByVariable, includedNamespaces, inputOptions: { onLog }, isEmpty, orderedModules, outputOptions, pluginDriver, renderedModules, snippets } = this;
19947
- const { compact, format, freeze, generatedCode: { symbols } } = outputOptions;
19962
+ const { compact, format, freeze, generatedCode: { symbols }, importAttributesKey } = outputOptions;
19948
19963
  const { _, cnst, n } = snippets;
19949
19964
  this.setDynamicImportResolutions(fileName);
19950
19965
  this.setImportMetaResolutions(fileName);
@@ -19960,6 +19975,7 @@ class Chunk {
19960
19975
  exportNamesByVariable,
19961
19976
  format,
19962
19977
  freeze,
19978
+ importAttributesKey,
19963
19979
  indent,
19964
19980
  pluginDriver,
19965
19981
  snippets,
@@ -20038,7 +20054,7 @@ class Chunk {
20038
20054
  }
20039
20055
  else {
20040
20056
  const { node, resolution } = resolvedDynamicImport;
20041
- const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName);
20057
+ const [resolutionString, attributes] = this.getDynamicImportStringAndAttributes(resolution, fileName, node);
20042
20058
  node.setExternalResolution('external', resolution, outputOptions, snippets, pluginDriver, accessedGlobalsByScope, resolutionString, false, attributes);
20043
20059
  }
20044
20060
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.33.0-0
4
- Tue, 28 Jan 2025 08:29:38 GMT - commit f854e1988542d09f9691923eddd80888e92240d3
3
+ Rollup.js v4.34.0
4
+ Sat, 01 Feb 2025 08:39:54 GMT - commit 979d62888dbe75f92e50fdd64246c737c52f5f1f
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.33.0-0",
3
+ "version": "4.34.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.33.0-0",
114
- "@rollup/rollup-android-arm64": "4.33.0-0",
115
- "@rollup/rollup-win32-arm64-msvc": "4.33.0-0",
116
- "@rollup/rollup-freebsd-arm64": "4.33.0-0",
117
- "@rollup/rollup-linux-arm64-gnu": "4.33.0-0",
118
- "@rollup/rollup-linux-arm64-musl": "4.33.0-0",
119
- "@rollup/rollup-android-arm-eabi": "4.33.0-0",
120
- "@rollup/rollup-linux-arm-gnueabihf": "4.33.0-0",
121
- "@rollup/rollup-linux-arm-musleabihf": "4.33.0-0",
122
- "@rollup/rollup-win32-ia32-msvc": "4.33.0-0",
123
- "@rollup/rollup-linux-loongarch64-gnu": "4.33.0-0",
124
- "@rollup/rollup-linux-riscv64-gnu": "4.33.0-0",
125
- "@rollup/rollup-linux-powerpc64le-gnu": "4.33.0-0",
126
- "@rollup/rollup-linux-s390x-gnu": "4.33.0-0",
127
- "@rollup/rollup-darwin-x64": "4.33.0-0",
128
- "@rollup/rollup-win32-x64-msvc": "4.33.0-0",
129
- "@rollup/rollup-freebsd-x64": "4.33.0-0",
130
- "@rollup/rollup-linux-x64-gnu": "4.33.0-0",
131
- "@rollup/rollup-linux-x64-musl": "4.33.0-0"
113
+ "@rollup/rollup-darwin-arm64": "4.34.0",
114
+ "@rollup/rollup-android-arm64": "4.34.0",
115
+ "@rollup/rollup-win32-arm64-msvc": "4.34.0",
116
+ "@rollup/rollup-freebsd-arm64": "4.34.0",
117
+ "@rollup/rollup-linux-arm64-gnu": "4.34.0",
118
+ "@rollup/rollup-linux-arm64-musl": "4.34.0",
119
+ "@rollup/rollup-android-arm-eabi": "4.34.0",
120
+ "@rollup/rollup-linux-arm-gnueabihf": "4.34.0",
121
+ "@rollup/rollup-linux-arm-musleabihf": "4.34.0",
122
+ "@rollup/rollup-win32-ia32-msvc": "4.34.0",
123
+ "@rollup/rollup-linux-loongarch64-gnu": "4.34.0",
124
+ "@rollup/rollup-linux-riscv64-gnu": "4.34.0",
125
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.34.0",
126
+ "@rollup/rollup-linux-s390x-gnu": "4.34.0",
127
+ "@rollup/rollup-darwin-x64": "4.34.0",
128
+ "@rollup/rollup-win32-x64-msvc": "4.34.0",
129
+ "@rollup/rollup-freebsd-x64": "4.34.0",
130
+ "@rollup/rollup-linux-x64-gnu": "4.34.0",
131
+ "@rollup/rollup-linux-x64-musl": "4.34.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",