rollup 3.12.0 → 3.12.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
@@ -2,8 +2,8 @@
2
2
 
3
3
  /*
4
4
  @license
5
- Rollup.js v3.12.0
6
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
5
+ Rollup.js v3.12.1
6
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
7
7
 
8
8
  https://github.com/rollup/rollup
9
9
 
package/dist/es/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -16,7 +16,7 @@ import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/pr
16
16
  import { EventEmitter } from 'node:events';
17
17
  import * as tty from 'tty';
18
18
 
19
- var version$1 = "3.12.0";
19
+ var version$1 = "3.12.1";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -222,7 +222,7 @@ let Chunk$1 = class Chunk {
222
222
  }
223
223
 
224
224
  clone() {
225
- const chunk = new Chunk$1(this.start, this.end, this.original);
225
+ const chunk = new Chunk(this.start, this.end, this.original);
226
226
 
227
227
  chunk.intro = this.intro;
228
228
  chunk.outro = this.outro;
@@ -282,7 +282,7 @@ let Chunk$1 = class Chunk {
282
282
 
283
283
  this.original = originalBefore;
284
284
 
285
- const newChunk = new Chunk$1(index, this.end, originalAfter);
285
+ const newChunk = new Chunk(index, this.end, originalAfter);
286
286
  newChunk.outro = this.outro;
287
287
  this.outro = '';
288
288
 
@@ -1380,7 +1380,7 @@ let Bundle$1 = class Bundle {
1380
1380
  }
1381
1381
 
1382
1382
  clone() {
1383
- const bundle = new Bundle$1({
1383
+ const bundle = new Bundle({
1384
1384
  intro: this.intro,
1385
1385
  separator: this.separator,
1386
1386
  });
@@ -1898,7 +1898,10 @@ class Variable extends ExpressionEntity {
1898
1898
  getBaseVariableName() {
1899
1899
  return this.renderBaseName || this.renderName || this.name;
1900
1900
  }
1901
- getName(getPropertyAccess) {
1901
+ getName(getPropertyAccess, useOriginalName) {
1902
+ if (useOriginalName?.(this)) {
1903
+ return this.name;
1904
+ }
1902
1905
  const name = this.renderName || this.name;
1903
1906
  return this.renderBaseName ? `${this.renderBaseName}${getPropertyAccess(name)}` : name;
1904
1907
  }
@@ -2206,12 +2209,12 @@ function errorCircularReexport(exportName, exporter) {
2206
2209
  message: `"${exportName}" cannot be exported from "${relativeId(exporter)}" as it is a reexport that references itself.`
2207
2210
  };
2208
2211
  }
2209
- function errorCyclicCrossChunkReexport(exportName, exporter, reexporter, importer) {
2212
+ function errorCyclicCrossChunkReexport(exportName, exporter, reexporter, importer, preserveModules) {
2210
2213
  return {
2211
2214
  code: CYCLIC_CROSS_CHUNK_REEXPORT,
2212
2215
  exporter,
2213
2216
  id: importer,
2214
- message: `Export "${exportName}" of module "${relativeId(exporter)}" was reexported through module "${relativeId(reexporter)}" while both modules are dependencies of each other and will end up in different chunks by current Rollup settings. This scenario is not well supported at the moment as it will produce a circular dependency between chunks and will likely lead to broken execution order.\nEither change the import in "${relativeId(importer)}" to point directly to the exporting module or do not use "preserveModules" to ensure these modules end up in the same chunk.`,
2217
+ message: `Export "${exportName}" of module "${relativeId(exporter)}" was reexported through module "${relativeId(reexporter)}" while both modules are dependencies of each other and will end up in different chunks by current Rollup settings. This scenario is not well supported at the moment as it will produce a circular dependency between chunks and will likely lead to broken execution order.\nEither change the import in "${relativeId(importer)}" to point directly to the exporting module or ${preserveModules ? 'do not use "output.preserveModules"' : 'reconfigure "output.manualChunks"'} to ensure these modules end up in the same chunk.`,
2215
2218
  reexporter
2216
2219
  };
2217
2220
  }
@@ -8034,9 +8037,9 @@ class Identifier extends NodeBase {
8034
8037
  markDeclarationReached() {
8035
8038
  this.variable.initReached = true;
8036
8039
  }
8037
- render(code, { snippets: { getPropertyAccess } }, { renderedParentType, isCalleeOfRenderedParent, isShorthandProperty } = BLANK) {
8040
+ render(code, { snippets: { getPropertyAccess }, useOriginalName }, { renderedParentType, isCalleeOfRenderedParent, isShorthandProperty } = BLANK) {
8038
8041
  if (this.variable) {
8039
- const name = this.variable.getName(getPropertyAccess);
8042
+ const name = this.variable.getName(getPropertyAccess, useOriginalName);
8040
8043
  if (name !== this.name) {
8041
8044
  code.overwrite(this.start, this.end, name, {
8042
8045
  contentOnly: true,
@@ -9835,7 +9838,10 @@ class ClassDeclaration extends ClassNode {
9835
9838
  const renderedVariable = variable.getName(getPropertyAccess);
9836
9839
  if (renderedVariable !== name) {
9837
9840
  this.superClass?.render(code, options);
9838
- this.body.render(code, options);
9841
+ this.body.render(code, {
9842
+ ...options,
9843
+ useOriginalName: (_variable) => _variable === variable
9844
+ });
9839
9845
  code.prependRight(this.start, `let ${renderedVariable}${_}=${_}`);
9840
9846
  code.prependLeft(this.end, ';');
9841
9847
  return;
@@ -15428,8 +15434,10 @@ class Chunk {
15428
15434
  alternativeReexportModule = importingModule.alternativeReexportModules.get(variable);
15429
15435
  if (alternativeReexportModule) {
15430
15436
  const exportingChunk = this.chunkByModule.get(alternativeReexportModule);
15431
- if (exportingChunk && exportingChunk !== exportChunk) {
15432
- this.inputOptions.onwarn(errorCyclicCrossChunkReexport(variableModule.getExportNamesByVariable().get(variable)[0], variableModule.id, alternativeReexportModule.id, importingModule.id));
15437
+ if (exportingChunk !== exportChunk) {
15438
+ this.inputOptions.onwarn(errorCyclicCrossChunkReexport(
15439
+ // Namespaces do not have an export name
15440
+ variableModule.getExportNamesByVariable().get(variable)?.[0] || '*', variableModule.id, alternativeReexportModule.id, importingModule.id, this.outputOptions.preserveModules));
15433
15441
  }
15434
15442
  importingModule = alternativeReexportModule;
15435
15443
  }
@@ -15442,8 +15450,10 @@ class Chunk {
15442
15450
  for (const exportedVariable of map.keys()) {
15443
15451
  const isSynthetic = exportedVariable instanceof SyntheticNamedExportVariable;
15444
15452
  const importedVariable = isSynthetic ? exportedVariable.getBaseVariable() : exportedVariable;
15453
+ this.checkCircularDependencyImport(importedVariable, module);
15454
+ // When preserving modules, we do not create namespace objects but directly
15455
+ // use the actual namespaces, which would be broken by this logic.
15445
15456
  if (!(importedVariable instanceof NamespaceVariable && this.outputOptions.preserveModules)) {
15446
- this.checkCircularDependencyImport(importedVariable, module);
15447
15457
  const exportingModule = importedVariable.module;
15448
15458
  if (exportingModule instanceof Module) {
15449
15459
  const chunk = this.chunkByModule.get(exportingModule);
@@ -15814,7 +15824,8 @@ class Chunk {
15814
15824
  indent,
15815
15825
  namespaceToStringTag,
15816
15826
  pluginDriver,
15817
- snippets
15827
+ snippets,
15828
+ useOriginalName: null
15818
15829
  };
15819
15830
  let usesTopLevelAwait = false;
15820
15831
  for (const module of orderedModules) {
@@ -15972,10 +15983,13 @@ class Chunk {
15972
15983
  const chunk = this.chunkByModule.get(variable.module);
15973
15984
  if (chunk !== this) {
15974
15985
  this.imports.add(variable);
15975
- if (!(variable instanceof NamespaceVariable && this.outputOptions.preserveModules) &&
15976
- variable.module instanceof Module) {
15977
- chunk.exports.add(variable);
15986
+ if (variable.module instanceof Module) {
15978
15987
  this.checkCircularDependencyImport(variable, module);
15988
+ // When preserving modules, we do not create namespace objects but directly
15989
+ // use the actual namespaces, which would be broken by this logic.
15990
+ if (!(variable instanceof NamespaceVariable && this.outputOptions.preserveModules)) {
15991
+ chunk.exports.add(variable);
15992
+ }
15979
15993
  }
15980
15994
  }
15981
15995
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
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 v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
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$1 = "3.12.0";
34
+ var version$1 = "3.12.1";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -378,12 +378,12 @@ function errorCircularReexport(exportName, exporter) {
378
378
  message: `"${exportName}" cannot be exported from "${relativeId(exporter)}" as it is a reexport that references itself.`
379
379
  };
380
380
  }
381
- function errorCyclicCrossChunkReexport(exportName, exporter, reexporter, importer) {
381
+ function errorCyclicCrossChunkReexport(exportName, exporter, reexporter, importer, preserveModules) {
382
382
  return {
383
383
  code: CYCLIC_CROSS_CHUNK_REEXPORT,
384
384
  exporter,
385
385
  id: importer,
386
- message: `Export "${exportName}" of module "${relativeId(exporter)}" was reexported through module "${relativeId(reexporter)}" while both modules are dependencies of each other and will end up in different chunks by current Rollup settings. This scenario is not well supported at the moment as it will produce a circular dependency between chunks and will likely lead to broken execution order.\nEither change the import in "${relativeId(importer)}" to point directly to the exporting module or do not use "preserveModules" to ensure these modules end up in the same chunk.`,
386
+ message: `Export "${exportName}" of module "${relativeId(exporter)}" was reexported through module "${relativeId(reexporter)}" while both modules are dependencies of each other and will end up in different chunks by current Rollup settings. This scenario is not well supported at the moment as it will produce a circular dependency between chunks and will likely lead to broken execution order.\nEither change the import in "${relativeId(importer)}" to point directly to the exporting module or ${preserveModules ? 'do not use "output.preserveModules"' : 'reconfigure "output.manualChunks"'} to ensure these modules end up in the same chunk.`,
387
387
  reexporter
388
388
  };
389
389
  }
@@ -1492,7 +1492,7 @@ let Chunk$1 = class Chunk {
1492
1492
  }
1493
1493
 
1494
1494
  clone() {
1495
- const chunk = new Chunk$1(this.start, this.end, this.original);
1495
+ const chunk = new Chunk(this.start, this.end, this.original);
1496
1496
 
1497
1497
  chunk.intro = this.intro;
1498
1498
  chunk.outro = this.outro;
@@ -1552,7 +1552,7 @@ let Chunk$1 = class Chunk {
1552
1552
 
1553
1553
  this.original = originalBefore;
1554
1554
 
1555
- const newChunk = new Chunk$1(index, this.end, originalAfter);
1555
+ const newChunk = new Chunk(index, this.end, originalAfter);
1556
1556
  newChunk.outro = this.outro;
1557
1557
  this.outro = '';
1558
1558
 
@@ -2650,7 +2650,7 @@ let Bundle$1 = class Bundle {
2650
2650
  }
2651
2651
 
2652
2652
  clone() {
2653
- const bundle = new Bundle$1({
2653
+ const bundle = new Bundle({
2654
2654
  intro: this.intro,
2655
2655
  separator: this.separator,
2656
2656
  });
@@ -3104,7 +3104,10 @@ class Variable extends ExpressionEntity {
3104
3104
  getBaseVariableName() {
3105
3105
  return this.renderBaseName || this.renderName || this.name;
3106
3106
  }
3107
- getName(getPropertyAccess) {
3107
+ getName(getPropertyAccess, useOriginalName) {
3108
+ if (useOriginalName?.(this)) {
3109
+ return this.name;
3110
+ }
3108
3111
  const name = this.renderName || this.name;
3109
3112
  return this.renderBaseName ? `${this.renderBaseName}${getPropertyAccess(name)}` : name;
3110
3113
  }
@@ -8552,9 +8555,9 @@ class Identifier extends NodeBase {
8552
8555
  markDeclarationReached() {
8553
8556
  this.variable.initReached = true;
8554
8557
  }
8555
- render(code, { snippets: { getPropertyAccess } }, { renderedParentType, isCalleeOfRenderedParent, isShorthandProperty } = BLANK) {
8558
+ render(code, { snippets: { getPropertyAccess }, useOriginalName }, { renderedParentType, isCalleeOfRenderedParent, isShorthandProperty } = BLANK) {
8556
8559
  if (this.variable) {
8557
- const name = this.variable.getName(getPropertyAccess);
8560
+ const name = this.variable.getName(getPropertyAccess, useOriginalName);
8558
8561
  if (name !== this.name) {
8559
8562
  code.overwrite(this.start, this.end, name, {
8560
8563
  contentOnly: true,
@@ -10353,7 +10356,10 @@ class ClassDeclaration extends ClassNode {
10353
10356
  const renderedVariable = variable.getName(getPropertyAccess);
10354
10357
  if (renderedVariable !== name) {
10355
10358
  this.superClass?.render(code, options);
10356
- this.body.render(code, options);
10359
+ this.body.render(code, {
10360
+ ...options,
10361
+ useOriginalName: (_variable) => _variable === variable
10362
+ });
10357
10363
  code.prependRight(this.start, `let ${renderedVariable}${_}=${_}`);
10358
10364
  code.prependLeft(this.end, ';');
10359
10365
  return;
@@ -15946,8 +15952,10 @@ class Chunk {
15946
15952
  alternativeReexportModule = importingModule.alternativeReexportModules.get(variable);
15947
15953
  if (alternativeReexportModule) {
15948
15954
  const exportingChunk = this.chunkByModule.get(alternativeReexportModule);
15949
- if (exportingChunk && exportingChunk !== exportChunk) {
15950
- this.inputOptions.onwarn(errorCyclicCrossChunkReexport(variableModule.getExportNamesByVariable().get(variable)[0], variableModule.id, alternativeReexportModule.id, importingModule.id));
15955
+ if (exportingChunk !== exportChunk) {
15956
+ this.inputOptions.onwarn(errorCyclicCrossChunkReexport(
15957
+ // Namespaces do not have an export name
15958
+ variableModule.getExportNamesByVariable().get(variable)?.[0] || '*', variableModule.id, alternativeReexportModule.id, importingModule.id, this.outputOptions.preserveModules));
15951
15959
  }
15952
15960
  importingModule = alternativeReexportModule;
15953
15961
  }
@@ -15960,8 +15968,10 @@ class Chunk {
15960
15968
  for (const exportedVariable of map.keys()) {
15961
15969
  const isSynthetic = exportedVariable instanceof SyntheticNamedExportVariable;
15962
15970
  const importedVariable = isSynthetic ? exportedVariable.getBaseVariable() : exportedVariable;
15971
+ this.checkCircularDependencyImport(importedVariable, module);
15972
+ // When preserving modules, we do not create namespace objects but directly
15973
+ // use the actual namespaces, which would be broken by this logic.
15963
15974
  if (!(importedVariable instanceof NamespaceVariable && this.outputOptions.preserveModules)) {
15964
- this.checkCircularDependencyImport(importedVariable, module);
15965
15975
  const exportingModule = importedVariable.module;
15966
15976
  if (exportingModule instanceof Module) {
15967
15977
  const chunk = this.chunkByModule.get(exportingModule);
@@ -16332,7 +16342,8 @@ class Chunk {
16332
16342
  indent,
16333
16343
  namespaceToStringTag,
16334
16344
  pluginDriver,
16335
- snippets
16345
+ snippets,
16346
+ useOriginalName: null
16336
16347
  };
16337
16348
  let usesTopLevelAwait = false;
16338
16349
  for (const module of orderedModules) {
@@ -16490,10 +16501,13 @@ class Chunk {
16490
16501
  const chunk = this.chunkByModule.get(variable.module);
16491
16502
  if (chunk !== this) {
16492
16503
  this.imports.add(variable);
16493
- if (!(variable instanceof NamespaceVariable && this.outputOptions.preserveModules) &&
16494
- variable.module instanceof Module) {
16495
- chunk.exports.add(variable);
16504
+ if (variable.module instanceof Module) {
16496
16505
  this.checkCircularDependencyImport(variable, module);
16506
+ // When preserving modules, we do not create namespace objects but directly
16507
+ // use the actual namespaces, which would be broken by this logic.
16508
+ if (!(variable instanceof NamespaceVariable && this.outputOptions.preserveModules)) {
16509
+ chunk.exports.add(variable);
16510
+ }
16497
16511
  }
16498
16512
  }
16499
16513
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.12.0
4
- Sat, 28 Jan 2023 05:55:49 GMT - commit 01ddea09dfdf1c396c1c24ba3d97743698fe1508
3
+ Rollup.js v3.12.1
4
+ Wed, 01 Feb 2023 09:25:11 GMT - commit 0c5aa76cb0e30a66ce7c7972f484c003a5b7b8c1
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": "3.12.0",
3
+ "version": "3.12.1",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -62,12 +62,12 @@
62
62
  "fsevents": "~2.3.2"
63
63
  },
64
64
  "devDependencies": {
65
- "@codemirror/commands": "^6.1.3",
65
+ "@codemirror/commands": "^6.2.0",
66
66
  "@codemirror/lang-javascript": "^6.1.2",
67
- "@codemirror/language": "^6.3.2",
67
+ "@codemirror/language": "^6.4.0",
68
68
  "@codemirror/search": "^6.2.3",
69
69
  "@codemirror/state": "^6.2.0",
70
- "@codemirror/view": "^6.7.2",
70
+ "@codemirror/view": "^6.7.3",
71
71
  "@jridgewell/sourcemap-codec": "^1.4.14",
72
72
  "@rollup/plugin-alias": "^4.0.2",
73
73
  "@rollup/plugin-buble": "^1.0.1",
@@ -82,8 +82,8 @@
82
82
  "@types/node": "^14.18.36",
83
83
  "@types/signal-exit": "^3.0.1",
84
84
  "@types/yargs-parser": "^21.0.0",
85
- "@typescript-eslint/eslint-plugin": "^5.48.0",
86
- "@typescript-eslint/parser": "^5.48.0",
85
+ "@typescript-eslint/eslint-plugin": "^5.50.0",
86
+ "@typescript-eslint/parser": "^5.50.0",
87
87
  "@vue/eslint-config-prettier": "^7.0.0",
88
88
  "@vue/eslint-config-typescript": "^11.0.2",
89
89
  "acorn": "^8.8.1",
@@ -99,12 +99,12 @@
99
99
  "date-time": "^4.0.0",
100
100
  "es5-shim": "^4.6.7",
101
101
  "es6-shim": "^0.35.7",
102
- "eslint": "^8.31.0",
102
+ "eslint": "^8.33.0",
103
103
  "eslint-config-prettier": "^8.6.0",
104
- "eslint-plugin-import": "^2.26.0",
104
+ "eslint-plugin-import": "^2.27.5",
105
105
  "eslint-plugin-prettier": "^4.2.1",
106
106
  "eslint-plugin-unicorn": "^45.0.2",
107
- "eslint-plugin-vue": "^9.8.0",
107
+ "eslint-plugin-vue": "^9.9.0",
108
108
  "fixturify": "^3.0.0",
109
109
  "flru": "^1.0.2",
110
110
  "fs-extra": "^11.1.0",
@@ -116,11 +116,10 @@
116
116
  "lint-staged": "^13.1.0",
117
117
  "locate-character": "^2.0.5",
118
118
  "magic-string": "^0.27.0",
119
- "mermaid": "~9.1.7",
120
119
  "mocha": "^10.2.0",
121
120
  "nyc": "^15.1.0",
122
- "pinia": "^2.0.28",
123
- "prettier": "^2.8.2",
121
+ "pinia": "^2.0.29",
122
+ "prettier": "^2.8.3",
124
123
  "pretty-bytes": "^6.0.0",
125
124
  "pretty-ms": "^8.0.0",
126
125
  "requirejs": "^2.3.6",
@@ -137,7 +136,7 @@
137
136
  "terser": "^5.16.1",
138
137
  "tslib": "^2.4.1",
139
138
  "typescript": "^4.9.4",
140
- "vitepress": "^1.0.0-alpha.35",
139
+ "vitepress": "^1.0.0-alpha.44",
141
140
  "vitepress-plugin-mermaid": "^2.0.8",
142
141
  "vue": "^3.2.45",
143
142
  "weak-napi": "^2.0.2",