rollup 4.9.1 → 4.9.2

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/README.md CHANGED
@@ -6,6 +6,9 @@
6
6
  <a href="https://www.npmjs.com/package/rollup">
7
7
  <img src="https://img.shields.io/npm/v/rollup.svg" alt="npm version" >
8
8
  </a>
9
+ <a href="https://nodejs.org/en/about/previous-releases">
10
+ <img src="https://img.shields.io/node/v/rollup.svg" alt="node compatibility">
11
+ </a>
9
12
  <a href="https://packagephobia.now.sh/result?p=rollup">
10
13
  <img src="https://packagephobia.now.sh/badge?p=rollup" alt="install size" >
11
14
  </a>
@@ -13,7 +16,7 @@
13
16
  <img src="https://codecov.io/gh/rollup/rollup/graph/badge.svg" alt="code coverage" >
14
17
  </a>
15
18
  <a href="#backers" alt="sponsors on Open Collective">
16
- <img src="https://opencollective.com/rollup/backers/badge.svg" alt="backers" >
19
+ <img src="https://opencollective.com/rollup/backers/badge.svg" alt="backers" >
17
20
  </a>
18
21
  <a href="#sponsors" alt="Sponsors on Open Collective">
19
22
  <img src="https://opencollective.com/rollup/sponsors/badge.svg" alt="sponsors" >
@@ -21,7 +24,6 @@
21
24
  <a href="https://github.com/rollup/rollup/blob/master/LICENSE.md">
22
25
  <img src="https://img.shields.io/npm/l/rollup.svg" alt="license">
23
26
  </a>
24
-
25
27
  <a href='https://is.gd/rollup_chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
26
28
  <img src='https://img.shields.io/discord/466787075518365708?color=778cd1&label=chat' alt='Join the chat at https://is.gd/rollup_chat'>
27
29
  </a>
package/dist/bin/rollup CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.9.1
5
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
4
+ Rollup.js v4.9.2
5
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
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.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -16,7 +16,7 @@ import { xxhashBase64Url } from '../../native.js';
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.9.1";
19
+ var version = "4.9.2";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -2041,11 +2041,10 @@ const RESERVED_NAMES = new Set([
2041
2041
  'with',
2042
2042
  'yield'
2043
2043
  ]);
2044
- const RESERVED_NAMES$1 = RESERVED_NAMES;
2045
2044
 
2046
2045
  const illegalCharacters = /[^\w$]/g;
2047
2046
  const startsWithDigit = (value) => /\d/.test(value[0]);
2048
- const needsEscape = (value) => startsWithDigit(value) || RESERVED_NAMES$1.has(value) || value === 'arguments';
2047
+ const needsEscape = (value) => startsWithDigit(value) || RESERVED_NAMES.has(value) || value === 'arguments';
2049
2048
  function isLegal(value) {
2050
2049
  if (needsEscape(value)) {
2051
2050
  return false;
@@ -5780,7 +5779,7 @@ function toBase64(value) {
5780
5779
  function getSafeName(baseName, usedNames, forbiddenNames) {
5781
5780
  let safeName = baseName;
5782
5781
  let count = 1;
5783
- while (usedNames.has(safeName) || RESERVED_NAMES$1.has(safeName) || forbiddenNames?.has(safeName)) {
5782
+ while (usedNames.has(safeName) || RESERVED_NAMES.has(safeName) || forbiddenNames?.has(safeName)) {
5784
5783
  safeName = `${baseName}$${toBase64(count++)}`;
5785
5784
  }
5786
5785
  usedNames.add(safeName);
@@ -7311,7 +7310,9 @@ class Identifier extends NodeBase {
7311
7310
  // in the same function or at top level of module
7312
7311
  return (this.isTDZAccess = true);
7313
7312
  }
7314
- if (!this.variable.initReached) {
7313
+ // We ignore the case where the module is not yet executed because
7314
+ // moduleSideEffects are false.
7315
+ if (!this.variable.initReached && this.scope.context.module.isExecuted) {
7315
7316
  // Either a const/let TDZ violation or
7316
7317
  // var use before declaration was encountered.
7317
7318
  return (this.isTDZAccess = true);
@@ -9597,7 +9598,7 @@ class ExportDefaultDeclaration extends NodeBase {
9597
9598
  const hasTrailingSemicolon = code.original.charCodeAt(this.end - 1) === 59; /*";"*/
9598
9599
  const systemExportNames = format === 'system' && exportNamesByVariable.get(this.variable);
9599
9600
  if (systemExportNames) {
9600
- code.overwrite(this.start, declarationStart, `${cnst} ${this.variable.getName(getPropertyAccess)} = exports('${systemExportNames[0]}', `);
9601
+ code.overwrite(this.start, declarationStart, `${cnst} ${this.variable.getName(getPropertyAccess)} = exports(${JSON.stringify(systemExportNames[0])}, `);
9601
9602
  code.appendRight(hasTrailingSemicolon ? this.end - 1 : this.end, ')' + (hasTrailingSemicolon ? '' : ';'));
9602
9603
  }
9603
9604
  else {
@@ -14200,7 +14201,7 @@ function analyzeDependencies(dependencies, exports, t, { _, cnst, getObject, get
14200
14201
  }
14201
14202
  else {
14202
14203
  const [key, value] = reexportedNames[0];
14203
- setter.push(`exports('${key}',${_}${value});`);
14204
+ setter.push(`exports(${JSON.stringify(key)},${_}${value});`);
14204
14205
  }
14205
14206
  }
14206
14207
  setters.push(setter.join(`${n}${t}${t}${t}`));
@@ -14230,10 +14231,12 @@ function getExportsBlock(exports, t, { _, n }) {
14230
14231
  return '';
14231
14232
  }
14232
14233
  if (exports.length === 1) {
14233
- return `exports('${exports[0].name}',${_}${exports[0].value});${n}${n}`;
14234
+ return `exports(${JSON.stringify(exports[0].name)},${_}${exports[0].value});${n}${n}`;
14234
14235
  }
14235
14236
  return (`exports({${n}` +
14236
- exports.map(({ name, value }) => `${t}${name}:${_}${value}`).join(`,${n}`) +
14237
+ exports
14238
+ .map(({ name, value }) => `${t}${stringifyObjectKeyIfNeeded(name)}:${_}${value}`)
14239
+ .join(`,${n}`) +
14237
14240
  `${n}});${n}${n}`);
14238
14241
  }
14239
14242
  const getSyntheticExportsBlock = (exports, t, snippets) => getExportsBlock(exports
@@ -14507,7 +14510,7 @@ function assignExportsToMangledNames(exports, exportsByName, exportNamesByVariab
14507
14510
  nameIndex += 9 * 64 ** (exportName.length - 1);
14508
14511
  exportName = toBase64(nameIndex);
14509
14512
  }
14510
- } while (RESERVED_NAMES$1.has(exportName) || exportsByName.has(exportName));
14513
+ } while (RESERVED_NAMES.has(exportName) || exportsByName.has(exportName));
14511
14514
  }
14512
14515
  exportsByName.set(exportName, variable);
14513
14516
  exportNamesByVariable.set(variable, [exportName]);
@@ -16547,7 +16550,7 @@ function getGenerateCodeSnippets({ compact, generatedCode: { arrowFunctions, con
16547
16550
  ];
16548
16551
  const isValidPropertyName = reservedNamesAsProps
16549
16552
  ? (name) => VALID_IDENTIFIER_REGEXP.test(name)
16550
- : (name) => !RESERVED_NAMES$1.has(name) && VALID_IDENTIFIER_REGEXP.test(name);
16553
+ : (name) => !RESERVED_NAMES.has(name) && VALID_IDENTIFIER_REGEXP.test(name);
16551
16554
  return {
16552
16555
  _,
16553
16556
  cnst,
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
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.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
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.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
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.9.1";
34
+ var version = "4.9.2";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -3487,11 +3487,10 @@ const RESERVED_NAMES = new Set([
3487
3487
  'with',
3488
3488
  'yield'
3489
3489
  ]);
3490
- const RESERVED_NAMES$1 = RESERVED_NAMES;
3491
3490
 
3492
3491
  const illegalCharacters = /[^\w$]/g;
3493
3492
  const startsWithDigit = (value) => /\d/.test(value[0]);
3494
- const needsEscape = (value) => startsWithDigit(value) || RESERVED_NAMES$1.has(value) || value === 'arguments';
3493
+ const needsEscape = (value) => startsWithDigit(value) || RESERVED_NAMES.has(value) || value === 'arguments';
3495
3494
  function isLegal(value) {
3496
3495
  if (needsEscape(value)) {
3497
3496
  return false;
@@ -7214,7 +7213,7 @@ class ParameterVariable extends LocalVariable {
7214
7213
  function getSafeName(baseName, usedNames, forbiddenNames) {
7215
7214
  let safeName = baseName;
7216
7215
  let count = 1;
7217
- while (usedNames.has(safeName) || RESERVED_NAMES$1.has(safeName) || forbiddenNames?.has(safeName)) {
7216
+ while (usedNames.has(safeName) || RESERVED_NAMES.has(safeName) || forbiddenNames?.has(safeName)) {
7218
7217
  safeName = `${baseName}$${toBase64(count++)}`;
7219
7218
  }
7220
7219
  usedNames.add(safeName);
@@ -8743,7 +8742,9 @@ class Identifier extends NodeBase {
8743
8742
  // in the same function or at top level of module
8744
8743
  return (this.isTDZAccess = true);
8745
8744
  }
8746
- if (!this.variable.initReached) {
8745
+ // We ignore the case where the module is not yet executed because
8746
+ // moduleSideEffects are false.
8747
+ if (!this.variable.initReached && this.scope.context.module.isExecuted) {
8747
8748
  // Either a const/let TDZ violation or
8748
8749
  // var use before declaration was encountered.
8749
8750
  return (this.isTDZAccess = true);
@@ -11029,7 +11030,7 @@ class ExportDefaultDeclaration extends NodeBase {
11029
11030
  const hasTrailingSemicolon = code.original.charCodeAt(this.end - 1) === 59; /*";"*/
11030
11031
  const systemExportNames = format === 'system' && exportNamesByVariable.get(this.variable);
11031
11032
  if (systemExportNames) {
11032
- code.overwrite(this.start, declarationStart, `${cnst} ${this.variable.getName(getPropertyAccess)} = exports('${systemExportNames[0]}', `);
11033
+ code.overwrite(this.start, declarationStart, `${cnst} ${this.variable.getName(getPropertyAccess)} = exports(${JSON.stringify(systemExportNames[0])}, `);
11033
11034
  code.appendRight(hasTrailingSemicolon ? this.end - 1 : this.end, ')' + (hasTrailingSemicolon ? '' : ';'));
11034
11035
  }
11035
11036
  else {
@@ -15625,7 +15626,7 @@ function analyzeDependencies(dependencies, exports, t, { _, cnst, getObject, get
15625
15626
  }
15626
15627
  else {
15627
15628
  const [key, value] = reexportedNames[0];
15628
- setter.push(`exports('${key}',${_}${value});`);
15629
+ setter.push(`exports(${JSON.stringify(key)},${_}${value});`);
15629
15630
  }
15630
15631
  }
15631
15632
  setters.push(setter.join(`${n}${t}${t}${t}`));
@@ -15655,10 +15656,12 @@ function getExportsBlock(exports, t, { _, n }) {
15655
15656
  return '';
15656
15657
  }
15657
15658
  if (exports.length === 1) {
15658
- return `exports('${exports[0].name}',${_}${exports[0].value});${n}${n}`;
15659
+ return `exports(${JSON.stringify(exports[0].name)},${_}${exports[0].value});${n}${n}`;
15659
15660
  }
15660
15661
  return (`exports({${n}` +
15661
- exports.map(({ name, value }) => `${t}${name}:${_}${value}`).join(`,${n}`) +
15662
+ exports
15663
+ .map(({ name, value }) => `${t}${stringifyObjectKeyIfNeeded(name)}:${_}${value}`)
15664
+ .join(`,${n}`) +
15662
15665
  `${n}});${n}${n}`);
15663
15666
  }
15664
15667
  const getSyntheticExportsBlock = (exports, t, snippets) => getExportsBlock(exports
@@ -15932,7 +15935,7 @@ function assignExportsToMangledNames(exports, exportsByName, exportNamesByVariab
15932
15935
  nameIndex += 9 * 64 ** (exportName.length - 1);
15933
15936
  exportName = toBase64(nameIndex);
15934
15937
  }
15935
- } while (RESERVED_NAMES$1.has(exportName) || exportsByName.has(exportName));
15938
+ } while (RESERVED_NAMES.has(exportName) || exportsByName.has(exportName));
15936
15939
  }
15937
15940
  exportsByName.set(exportName, variable);
15938
15941
  exportNamesByVariable.set(variable, [exportName]);
@@ -17867,7 +17870,7 @@ function getGenerateCodeSnippets({ compact, generatedCode: { arrowFunctions, con
17867
17870
  ];
17868
17871
  const isValidPropertyName = reservedNamesAsProps
17869
17872
  ? (name) => VALID_IDENTIFIER_REGEXP.test(name)
17870
- : (name) => !RESERVED_NAMES$1.has(name) && VALID_IDENTIFIER_REGEXP.test(name);
17873
+ : (name) => !RESERVED_NAMES.has(name) && VALID_IDENTIFIER_REGEXP.test(name);
17871
17874
  return {
17872
17875
  _,
17873
17876
  cnst,
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.1
4
- Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
3
+ Rollup.js v4.9.2
4
+ Sat, 30 Dec 2023 06:23:00 GMT - commit 347a34745b2679c1192535db3c0f60889861d3ad
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.9.1",
3
+ "version": "4.9.2",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -81,7 +81,7 @@
81
81
  "test:package": "node scripts/test-package.js",
82
82
  "test:options": "node scripts/test-options.js",
83
83
  "test:only": "mocha test/test.js",
84
- "test:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/ && tsc --noEmit -p test/typescript && tsc --noEmit",
84
+ "test:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/ && tsc --noEmit -p test/typescript && tsc --noEmit && tsc --noEmit -p scripts",
85
85
  "test:browser": "mocha test/browser/index.js",
86
86
  "watch": "rollup --config rollup.config.ts --configPlugin typescript --watch"
87
87
  },
@@ -101,19 +101,19 @@
101
101
  "homepage": "https://rollupjs.org/",
102
102
  "optionalDependencies": {
103
103
  "fsevents": "~2.3.2",
104
- "@rollup/rollup-darwin-arm64": "4.9.1",
105
- "@rollup/rollup-android-arm64": "4.9.1",
106
- "@rollup/rollup-win32-arm64-msvc": "4.9.1",
107
- "@rollup/rollup-linux-arm64-gnu": "4.9.1",
108
- "@rollup/rollup-linux-arm64-musl": "4.9.1",
109
- "@rollup/rollup-android-arm-eabi": "4.9.1",
110
- "@rollup/rollup-linux-arm-gnueabihf": "4.9.1",
111
- "@rollup/rollup-win32-ia32-msvc": "4.9.1",
112
- "@rollup/rollup-linux-riscv64-gnu": "4.9.1",
113
- "@rollup/rollup-darwin-x64": "4.9.1",
114
- "@rollup/rollup-win32-x64-msvc": "4.9.1",
115
- "@rollup/rollup-linux-x64-gnu": "4.9.1",
116
- "@rollup/rollup-linux-x64-musl": "4.9.1"
104
+ "@rollup/rollup-darwin-arm64": "4.9.2",
105
+ "@rollup/rollup-android-arm64": "4.9.2",
106
+ "@rollup/rollup-win32-arm64-msvc": "4.9.2",
107
+ "@rollup/rollup-linux-arm64-gnu": "4.9.2",
108
+ "@rollup/rollup-linux-arm64-musl": "4.9.2",
109
+ "@rollup/rollup-android-arm-eabi": "4.9.2",
110
+ "@rollup/rollup-linux-arm-gnueabihf": "4.9.2",
111
+ "@rollup/rollup-win32-ia32-msvc": "4.9.2",
112
+ "@rollup/rollup-linux-riscv64-gnu": "4.9.2",
113
+ "@rollup/rollup-darwin-x64": "4.9.2",
114
+ "@rollup/rollup-win32-x64-msvc": "4.9.2",
115
+ "@rollup/rollup-linux-x64-gnu": "4.9.2",
116
+ "@rollup/rollup-linux-x64-musl": "4.9.2"
117
117
  },
118
118
  "devDependenciesComments": {
119
119
  "@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
@@ -124,25 +124,26 @@
124
124
  "@codemirror/language": "^6.9.3",
125
125
  "@codemirror/search": "^6.5.5",
126
126
  "@codemirror/state": "^6.3.3",
127
- "@codemirror/view": "^6.22.2",
127
+ "@codemirror/view": "^6.22.3",
128
128
  "@jridgewell/sourcemap-codec": "^1.4.15",
129
129
  "@mermaid-js/mermaid-cli": "^10.6.1",
130
130
  "@napi-rs/cli": "^2.17.0",
131
131
  "@rollup/plugin-alias": "^5.1.0",
132
132
  "@rollup/plugin-buble": "^1.0.3",
133
133
  "@rollup/plugin-commonjs": "^25.0.7",
134
- "@rollup/plugin-json": "^6.0.1",
134
+ "@rollup/plugin-json": "^6.1.0",
135
135
  "@rollup/plugin-node-resolve": "^15.2.3",
136
136
  "@rollup/plugin-replace": "^5.0.5",
137
137
  "@rollup/plugin-terser": "^0.4.4",
138
138
  "@rollup/plugin-typescript": "11.1.5",
139
139
  "@rollup/pluginutils": "^5.1.0",
140
140
  "@types/estree": "1.0.5",
141
+ "@types/inquirer": "^9.0.7",
141
142
  "@types/mocha": "^10.0.6",
142
143
  "@types/node": "18.0.0",
143
144
  "@types/yargs-parser": "^21.0.3",
144
- "@typescript-eslint/eslint-plugin": "^6.14.0",
145
- "@typescript-eslint/parser": "^6.14.0",
145
+ "@typescript-eslint/eslint-plugin": "^6.16.0",
146
+ "@typescript-eslint/parser": "^6.16.0",
146
147
  "@vue/eslint-config-prettier": "^8.0.0",
147
148
  "@vue/eslint-config-typescript": "^12.0.0",
148
149
  "acorn": "^8.11.2",
@@ -156,11 +157,11 @@
156
157
  "date-time": "^4.0.0",
157
158
  "es5-shim": "^4.6.7",
158
159
  "es6-shim": "^0.35.8",
159
- "eslint": "^8.55.0",
160
+ "eslint": "^8.56.0",
160
161
  "eslint-config-prettier": "^9.1.0",
161
- "eslint-plugin-import": "^2.29.0",
162
- "eslint-plugin-prettier": "^5.0.1",
163
- "eslint-plugin-unicorn": "^49.0.0",
162
+ "eslint-plugin-import": "^2.29.1",
163
+ "eslint-plugin-prettier": "^5.1.2",
164
+ "eslint-plugin-unicorn": "^50.0.1",
164
165
  "eslint-plugin-vue": "^9.19.2",
165
166
  "fixturify": "^3.0.0",
166
167
  "flru": "^1.0.2",
@@ -179,10 +180,9 @@
179
180
  "pretty-bytes": "^6.1.1",
180
181
  "pretty-ms": "^8.0.0",
181
182
  "requirejs": "^2.3.6",
182
- "rollup": "^4.8.0",
183
+ "rollup": "^4.9.1",
183
184
  "rollup-plugin-license": "^3.2.0",
184
185
  "rollup-plugin-string": "^3.0.0",
185
- "rollup-plugin-thatworks": "^1.0.4",
186
186
  "semver": "^7.5.4",
187
187
  "shx": "^0.3.4",
188
188
  "signal-exit": "^4.1.0",
@@ -192,9 +192,9 @@
192
192
  "terser": "^5.26.0",
193
193
  "tslib": "^2.6.2",
194
194
  "typescript": "^5.3.3",
195
- "vite": "^5.0.7",
196
- "vitepress": "^1.0.0-rc.31",
197
- "vue": "^3.3.11",
195
+ "vite": "^5.0.10",
196
+ "vitepress": "^1.0.0-rc.32",
197
+ "vue": "^3.3.13",
198
198
  "wasm-pack": "^0.12.1",
199
199
  "weak-napi": "^2.0.2",
200
200
  "yargs-parser": "^21.1.1"