rollup 3.23.0 → 3.24.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
@@ -2,8 +2,8 @@
2
2
 
3
3
  /*
4
4
  @license
5
- Rollup.js v3.23.0
6
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
5
+ Rollup.js v3.24.0
6
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
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.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -15,7 +15,7 @@ import { createHash as createHash$1 } from 'node:crypto';
15
15
  import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
16
16
  import * as tty from 'tty';
17
17
 
18
- var version$1 = "3.23.0";
18
+ var version$1 = "3.24.0";
19
19
 
20
20
  const comma = ','.charCodeAt(0);
21
21
  const semicolon = ';'.charCodeAt(0);
@@ -2083,6 +2083,12 @@ function isValidUrl(url) {
2083
2083
  function getRollupUrl(snippet) {
2084
2084
  return `https://rollupjs.org/${snippet}`;
2085
2085
  }
2086
+ function addTrailingSlashIfMissed(url) {
2087
+ if (!url.endsWith('/')) {
2088
+ return url + '/';
2089
+ }
2090
+ return url;
2091
+ }
2086
2092
 
2087
2093
  // troubleshooting
2088
2094
  const URL_AVOIDING_EVAL = 'troubleshooting/#avoiding-eval';
@@ -5533,7 +5539,10 @@ const BlockStatement$1 = 'BlockStatement';
5533
5539
  const CallExpression$1 = 'CallExpression';
5534
5540
  const ChainExpression$1 = 'ChainExpression';
5535
5541
  const ConditionalExpression$1 = 'ConditionalExpression';
5542
+ const ExportDefaultDeclaration$1 = 'ExportDefaultDeclaration';
5543
+ const ExportNamedDeclaration$1 = 'ExportNamedDeclaration';
5536
5544
  const ExpressionStatement$1 = 'ExpressionStatement';
5545
+ const FunctionDeclaration$1 = 'FunctionDeclaration';
5537
5546
  const Identifier$1 = 'Identifier';
5538
5547
  const LogicalExpression$1 = 'LogicalExpression';
5539
5548
  const NewExpression$1 = 'NewExpression';
@@ -5541,6 +5550,8 @@ const Program$1 = 'Program';
5541
5550
  const Property$1 = 'Property';
5542
5551
  const ReturnStatement$1 = 'ReturnStatement';
5543
5552
  const SequenceExpression$1 = 'SequenceExpression';
5553
+ const VariableDeclarator$1 = 'VariableDeclarator';
5554
+ const VariableDeclaration$1 = 'VariableDeclaration';
5544
5555
 
5545
5556
  // this looks ridiculous, but it prevents sourcemap tooling from mistaking
5546
5557
  // this for an actual sourceMappingURL
@@ -5612,6 +5623,28 @@ function markPureNode(node, comment, code) {
5612
5623
  invalidAnnotation = true;
5613
5624
  break;
5614
5625
  }
5626
+ case ExportNamedDeclaration$1:
5627
+ case ExportDefaultDeclaration$1: {
5628
+ node = node.declaration;
5629
+ continue;
5630
+ }
5631
+ case VariableDeclaration$1: {
5632
+
5633
+ const declaration = node;
5634
+ if (declaration.kind === 'const') {
5635
+ // jsdoc only applies to the first declaration
5636
+ node = declaration.declarations[0].init;
5637
+ continue;
5638
+ }
5639
+ invalidAnnotation = true;
5640
+ break;
5641
+ }
5642
+ case VariableDeclarator$1: {
5643
+ node = node.init;
5644
+ continue;
5645
+ }
5646
+ case FunctionDeclaration$1:
5647
+ case ArrowFunctionExpression$1:
5615
5648
  case CallExpression$1:
5616
5649
  case NewExpression$1: {
5617
5650
  break;
@@ -5654,15 +5687,20 @@ function doesNotMatchOutsideComment(code, forbiddenChars) {
5654
5687
  }
5655
5688
  return true;
5656
5689
  }
5657
- const pureCommentRegex = /[#@]__PURE__/;
5690
+ const annotationsRegexes = [
5691
+ ['pure', /[#@]__PURE__/],
5692
+ ['noSideEffects', /[#@]__NO_SIDE_EFFECTS__/]
5693
+ ];
5658
5694
  function addAnnotations(comments, esTreeAst, code) {
5659
5695
  const annotations = [];
5660
5696
  const sourceMappingComments = [];
5661
5697
  for (const comment of comments) {
5662
- if (pureCommentRegex.test(comment.value)) {
5663
- annotations.push(comment);
5698
+ for (const [annotationType, regex] of annotationsRegexes) {
5699
+ if (regex.test(comment.value)) {
5700
+ annotations.push({ ...comment, annotationType });
5701
+ }
5664
5702
  }
5665
- else if (SOURCEMAPPING_URL_RE.test(comment.value)) {
5703
+ if (SOURCEMAPPING_URL_RE.test(comment.value)) {
5666
5704
  sourceMappingComments.push(comment);
5667
5705
  }
5668
5706
  }
@@ -5806,7 +5844,12 @@ class NodeBase extends ExpressionEntity {
5806
5844
  continue;
5807
5845
  if (key.charCodeAt(0) === 95 /* _ */) {
5808
5846
  if (key === ANNOTATION_KEY) {
5809
- this.annotations = value;
5847
+ const annotations = value;
5848
+ this.annotations = annotations;
5849
+ if (this.context.options.treeshake.annotations) {
5850
+ this.annotationNoSideEffects = annotations.some(comment => comment.annotationType === 'noSideEffects');
5851
+ this.annotationPure = annotations.some(comment => comment.annotationType === 'pure');
5852
+ }
5810
5853
  }
5811
5854
  else if (key === INVALID_COMMENT_KEY) {
5812
5855
  for (const { start, end } of value)
@@ -8724,6 +8767,9 @@ class ArrowFunctionExpression extends FunctionBase {
8724
8767
  if (super.hasEffectsOnInteractionAtPath(path, interaction, context))
8725
8768
  return true;
8726
8769
  if (interaction.type === INTERACTION_CALLED) {
8770
+ if (this.annotationNoSideEffects) {
8771
+ return false;
8772
+ }
8727
8773
  const { ignore, brokenFlow } = context;
8728
8774
  context.ignore = {
8729
8775
  breaks: false,
@@ -9028,11 +9074,17 @@ class FunctionNode extends FunctionBase {
9028
9074
  hasEffects(context) {
9029
9075
  if (!this.deoptimized)
9030
9076
  this.applyDeoptimizations();
9077
+ if (this.annotationNoSideEffects) {
9078
+ return false;
9079
+ }
9031
9080
  return !!this.id?.hasEffects(context);
9032
9081
  }
9033
9082
  hasEffectsOnInteractionAtPath(path, interaction, context) {
9034
9083
  if (super.hasEffectsOnInteractionAtPath(path, interaction, context))
9035
9084
  return true;
9085
+ if (this.annotationNoSideEffects) {
9086
+ return false;
9087
+ }
9036
9088
  if (interaction.type === INTERACTION_CALLED) {
9037
9089
  const thisInit = context.replacedVariableInits.get(this.scope.thisVariable);
9038
9090
  context.replacedVariableInits.set(this.scope.thisVariable, interaction.withNew ? this.constructedEntity : UNKNOWN_EXPRESSION);
@@ -9704,9 +9756,9 @@ class CallExpression extends CallExpressionBase {
9704
9756
  if (argument.hasEffects(context))
9705
9757
  return true;
9706
9758
  }
9707
- if (this.context.options.treeshake.annotations &&
9708
- this.annotations)
9759
+ if (this.annotationPure) {
9709
9760
  return false;
9761
+ }
9710
9762
  return (this.callee.hasEffects(context) ||
9711
9763
  this.callee.hasEffectsOnInteractionAtPath(EMPTY_PATH, this.interaction, context));
9712
9764
  }
@@ -11677,8 +11729,7 @@ class NewExpression extends NodeBase {
11677
11729
  if (argument.hasEffects(context))
11678
11730
  return true;
11679
11731
  }
11680
- if (this.context.options.treeshake.annotations &&
11681
- this.annotations) {
11732
+ if (this.annotationPure) {
11682
11733
  return false;
11683
11734
  }
11684
11735
  return (this.callee.hasEffects(context) ||
@@ -25847,7 +25898,7 @@ const getSourcemapBaseUrl = (config) => {
25847
25898
  const { sourcemapBaseUrl } = config;
25848
25899
  if (sourcemapBaseUrl) {
25849
25900
  if (isValidUrl(sourcemapBaseUrl)) {
25850
- return sourcemapBaseUrl;
25901
+ return addTrailingSlashIfMissed(sourcemapBaseUrl);
25851
25902
  }
25852
25903
  return error(errorInvalidOption('output.sourcemapBaseUrl', URL_OUTPUT_SOURCEMAPBASEURL, `must be a valid URL, received ${JSON.stringify(sourcemapBaseUrl)}`));
25853
25904
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
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.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -30,7 +30,7 @@ function _interopNamespaceDefault(e) {
30
30
 
31
31
  const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
32
32
 
33
- var version$1 = "3.23.0";
33
+ var version$1 = "3.24.0";
34
34
 
35
35
  function ensureArray$1(items) {
36
36
  if (Array.isArray(items)) {
@@ -272,6 +272,12 @@ function isValidUrl(url) {
272
272
  function getRollupUrl(snippet) {
273
273
  return `https://rollupjs.org/${snippet}`;
274
274
  }
275
+ function addTrailingSlashIfMissed(url) {
276
+ if (!url.endsWith('/')) {
277
+ return url + '/';
278
+ }
279
+ return url;
280
+ }
275
281
 
276
282
  function error(base) {
277
283
  if (!(base instanceof Error)) {
@@ -6028,7 +6034,10 @@ const BlockStatement$1 = 'BlockStatement';
6028
6034
  const CallExpression$1 = 'CallExpression';
6029
6035
  const ChainExpression$1 = 'ChainExpression';
6030
6036
  const ConditionalExpression$1 = 'ConditionalExpression';
6037
+ const ExportDefaultDeclaration$1 = 'ExportDefaultDeclaration';
6038
+ const ExportNamedDeclaration$1 = 'ExportNamedDeclaration';
6031
6039
  const ExpressionStatement$1 = 'ExpressionStatement';
6040
+ const FunctionDeclaration$1 = 'FunctionDeclaration';
6032
6041
  const Identifier$1 = 'Identifier';
6033
6042
  const LogicalExpression$1 = 'LogicalExpression';
6034
6043
  const NewExpression$1 = 'NewExpression';
@@ -6036,6 +6045,8 @@ const Program$1 = 'Program';
6036
6045
  const Property$1 = 'Property';
6037
6046
  const ReturnStatement$1 = 'ReturnStatement';
6038
6047
  const SequenceExpression$1 = 'SequenceExpression';
6048
+ const VariableDeclarator$1 = 'VariableDeclarator';
6049
+ const VariableDeclaration$1 = 'VariableDeclaration';
6039
6050
 
6040
6051
  // this looks ridiculous, but it prevents sourcemap tooling from mistaking
6041
6052
  // this for an actual sourceMappingURL
@@ -6107,6 +6118,28 @@ function markPureNode(node, comment, code) {
6107
6118
  invalidAnnotation = true;
6108
6119
  break;
6109
6120
  }
6121
+ case ExportNamedDeclaration$1:
6122
+ case ExportDefaultDeclaration$1: {
6123
+ node = node.declaration;
6124
+ continue;
6125
+ }
6126
+ case VariableDeclaration$1: {
6127
+
6128
+ const declaration = node;
6129
+ if (declaration.kind === 'const') {
6130
+ // jsdoc only applies to the first declaration
6131
+ node = declaration.declarations[0].init;
6132
+ continue;
6133
+ }
6134
+ invalidAnnotation = true;
6135
+ break;
6136
+ }
6137
+ case VariableDeclarator$1: {
6138
+ node = node.init;
6139
+ continue;
6140
+ }
6141
+ case FunctionDeclaration$1:
6142
+ case ArrowFunctionExpression$1:
6110
6143
  case CallExpression$1:
6111
6144
  case NewExpression$1: {
6112
6145
  break;
@@ -6149,15 +6182,20 @@ function doesNotMatchOutsideComment(code, forbiddenChars) {
6149
6182
  }
6150
6183
  return true;
6151
6184
  }
6152
- const pureCommentRegex = /[#@]__PURE__/;
6185
+ const annotationsRegexes = [
6186
+ ['pure', /[#@]__PURE__/],
6187
+ ['noSideEffects', /[#@]__NO_SIDE_EFFECTS__/]
6188
+ ];
6153
6189
  function addAnnotations(comments, esTreeAst, code) {
6154
6190
  const annotations = [];
6155
6191
  const sourceMappingComments = [];
6156
6192
  for (const comment of comments) {
6157
- if (pureCommentRegex.test(comment.value)) {
6158
- annotations.push(comment);
6193
+ for (const [annotationType, regex] of annotationsRegexes) {
6194
+ if (regex.test(comment.value)) {
6195
+ annotations.push({ ...comment, annotationType });
6196
+ }
6159
6197
  }
6160
- else if (SOURCEMAPPING_URL_RE.test(comment.value)) {
6198
+ if (SOURCEMAPPING_URL_RE.test(comment.value)) {
6161
6199
  sourceMappingComments.push(comment);
6162
6200
  }
6163
6201
  }
@@ -6301,7 +6339,12 @@ class NodeBase extends ExpressionEntity {
6301
6339
  continue;
6302
6340
  if (key.charCodeAt(0) === 95 /* _ */) {
6303
6341
  if (key === ANNOTATION_KEY) {
6304
- this.annotations = value;
6342
+ const annotations = value;
6343
+ this.annotations = annotations;
6344
+ if (this.context.options.treeshake.annotations) {
6345
+ this.annotationNoSideEffects = annotations.some(comment => comment.annotationType === 'noSideEffects');
6346
+ this.annotationPure = annotations.some(comment => comment.annotationType === 'pure');
6347
+ }
6305
6348
  }
6306
6349
  else if (key === INVALID_COMMENT_KEY) {
6307
6350
  for (const { start, end } of value)
@@ -9219,6 +9262,9 @@ class ArrowFunctionExpression extends FunctionBase {
9219
9262
  if (super.hasEffectsOnInteractionAtPath(path, interaction, context))
9220
9263
  return true;
9221
9264
  if (interaction.type === INTERACTION_CALLED) {
9265
+ if (this.annotationNoSideEffects) {
9266
+ return false;
9267
+ }
9222
9268
  const { ignore, brokenFlow } = context;
9223
9269
  context.ignore = {
9224
9270
  breaks: false,
@@ -9523,11 +9569,17 @@ class FunctionNode extends FunctionBase {
9523
9569
  hasEffects(context) {
9524
9570
  if (!this.deoptimized)
9525
9571
  this.applyDeoptimizations();
9572
+ if (this.annotationNoSideEffects) {
9573
+ return false;
9574
+ }
9526
9575
  return !!this.id?.hasEffects(context);
9527
9576
  }
9528
9577
  hasEffectsOnInteractionAtPath(path, interaction, context) {
9529
9578
  if (super.hasEffectsOnInteractionAtPath(path, interaction, context))
9530
9579
  return true;
9580
+ if (this.annotationNoSideEffects) {
9581
+ return false;
9582
+ }
9531
9583
  if (interaction.type === INTERACTION_CALLED) {
9532
9584
  const thisInit = context.replacedVariableInits.get(this.scope.thisVariable);
9533
9585
  context.replacedVariableInits.set(this.scope.thisVariable, interaction.withNew ? this.constructedEntity : UNKNOWN_EXPRESSION);
@@ -10199,9 +10251,9 @@ class CallExpression extends CallExpressionBase {
10199
10251
  if (argument.hasEffects(context))
10200
10252
  return true;
10201
10253
  }
10202
- if (this.context.options.treeshake.annotations &&
10203
- this.annotations)
10254
+ if (this.annotationPure) {
10204
10255
  return false;
10256
+ }
10205
10257
  return (this.callee.hasEffects(context) ||
10206
10258
  this.callee.hasEffectsOnInteractionAtPath(EMPTY_PATH, this.interaction, context));
10207
10259
  }
@@ -12172,8 +12224,7 @@ class NewExpression extends NodeBase {
12172
12224
  if (argument.hasEffects(context))
12173
12225
  return true;
12174
12226
  }
12175
- if (this.context.options.treeshake.annotations &&
12176
- this.annotations) {
12227
+ if (this.annotationPure) {
12177
12228
  return false;
12178
12229
  }
12179
12230
  return (this.callee.hasEffects(context) ||
@@ -26246,7 +26297,7 @@ const getSourcemapBaseUrl = (config) => {
26246
26297
  const { sourcemapBaseUrl } = config;
26247
26298
  if (sourcemapBaseUrl) {
26248
26299
  if (isValidUrl(sourcemapBaseUrl)) {
26249
- return sourcemapBaseUrl;
26300
+ return addTrailingSlashIfMissed(sourcemapBaseUrl);
26250
26301
  }
26251
26302
  return error(errorInvalidOption('output.sourcemapBaseUrl', URL_OUTPUT_SOURCEMAPBASEURL, `must be a valid URL, received ${JSON.stringify(sourcemapBaseUrl)}`));
26252
26303
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v3.23.0
4
- Mon, 22 May 2023 05:28:38 GMT - commit 5ea36552c447d2903050d2622f2dcae3dd2df975
3
+ Rollup.js v3.24.0
4
+ Wed, 07 Jun 2023 04:46:58 GMT - commit bcd64961f92535d2d6d0b663d1e17a500374358b
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.23.0",
3
+ "version": "3.24.0",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -65,27 +65,27 @@
65
65
  "devDependencies": {
66
66
  "@codemirror/commands": "^6.2.4",
67
67
  "@codemirror/lang-javascript": "^6.1.8",
68
- "@codemirror/language": "^6.6.0",
68
+ "@codemirror/language": "^6.7.0",
69
69
  "@codemirror/search": "^6.4.0",
70
- "@codemirror/state": "^6.2.0",
71
- "@codemirror/view": "^6.11.3",
70
+ "@codemirror/state": "^6.2.1",
71
+ "@codemirror/view": "^6.12.0",
72
72
  "@jridgewell/sourcemap-codec": "^1.4.15",
73
73
  "@mermaid-js/mermaid-cli": "^10.1.0",
74
74
  "@rollup/plugin-alias": "^5.0.0",
75
75
  "@rollup/plugin-buble": "^1.0.2",
76
76
  "@rollup/plugin-commonjs": "^25.0.0",
77
77
  "@rollup/plugin-json": "^6.0.0",
78
- "@rollup/plugin-node-resolve": "^15.0.2",
78
+ "@rollup/plugin-node-resolve": "^15.1.0",
79
79
  "@rollup/plugin-replace": "^5.0.2",
80
80
  "@rollup/plugin-terser": "^0.4.3",
81
81
  "@rollup/plugin-typescript": "^11.1.1",
82
82
  "@rollup/pluginutils": "^5.0.2",
83
83
  "@types/estree": "1.0.1",
84
84
  "@types/mocha": "^10.0.1",
85
- "@types/node": "~14.18.47",
85
+ "@types/node": "~14.18.48",
86
86
  "@types/yargs-parser": "^21.0.0",
87
- "@typescript-eslint/eslint-plugin": "^5.59.6",
88
- "@typescript-eslint/parser": "^5.59.6",
87
+ "@typescript-eslint/eslint-plugin": "^5.59.8",
88
+ "@typescript-eslint/parser": "^5.59.8",
89
89
  "@vue/eslint-config-prettier": "^7.1.0",
90
90
  "@vue/eslint-config-typescript": "^11.0.3",
91
91
  "acorn": "^8.8.2",
@@ -101,31 +101,31 @@
101
101
  "date-time": "^4.0.0",
102
102
  "es5-shim": "^4.6.7",
103
103
  "es6-shim": "^0.35.8",
104
- "eslint": "^8.40.0",
104
+ "eslint": "^8.41.0",
105
105
  "eslint-config-prettier": "^8.8.0",
106
106
  "eslint-plugin-import": "^2.27.5",
107
107
  "eslint-plugin-prettier": "^4.2.1",
108
108
  "eslint-plugin-unicorn": "^47.0.0",
109
- "eslint-plugin-vue": "^9.13.0",
109
+ "eslint-plugin-vue": "^9.14.1",
110
110
  "fixturify": "^3.0.0",
111
111
  "flru": "^1.0.2",
112
112
  "fs-extra": "^11.1.1",
113
113
  "github-api": "^3.4.0",
114
114
  "hash.js": "^1.1.7",
115
115
  "husky": "^8.0.3",
116
- "inquirer": "^9.2.3",
116
+ "inquirer": "^9.2.6",
117
117
  "is-reference": "^3.0.1",
118
118
  "lint-staged": "^13.2.2",
119
119
  "locate-character": "^2.0.5",
120
120
  "magic-string": "^0.30.0",
121
121
  "mocha": "^10.2.0",
122
122
  "nyc": "^15.1.0",
123
- "pinia": "^2.1.1",
123
+ "pinia": "^2.1.3",
124
124
  "prettier": "^2.8.8",
125
125
  "pretty-bytes": "^6.1.0",
126
126
  "pretty-ms": "^8.0.0",
127
127
  "requirejs": "^2.3.6",
128
- "rollup": "^3.22.0",
128
+ "rollup": "^3.23.0",
129
129
  "rollup-plugin-license": "^3.0.1",
130
130
  "rollup-plugin-string": "^3.0.0",
131
131
  "rollup-plugin-thatworks": "^1.0.4",
@@ -135,11 +135,11 @@
135
135
  "source-map": "^0.7.4",
136
136
  "source-map-support": "^0.5.21",
137
137
  "systemjs": "^6.14.1",
138
- "terser": "^5.17.4",
139
- "tslib": "^2.5.0",
138
+ "terser": "^5.17.6",
139
+ "tslib": "^2.5.2",
140
140
  "typescript": "^5.0.4",
141
- "vitepress": "^1.0.0-alpha.75",
142
- "vue": "^3.3.2",
141
+ "vitepress": "^1.0.0-beta.1",
142
+ "vue": "^3.3.4",
143
143
  "weak-napi": "^2.0.2",
144
144
  "yargs-parser": "^21.1.1"
145
145
  },