rollup 4.9.0 → 4.9.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
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.9.0
5
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
4
+ Rollup.js v4.9.1
5
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0";
19
+ var version = "4.9.1";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -9802,14 +9802,12 @@ class IfStatement extends NodeBase {
9802
9802
  const { brokenFlow } = context;
9803
9803
  if (this.consequent.hasEffects(context))
9804
9804
  return true;
9805
- // eslint-disable-next-line unicorn/consistent-destructuring
9806
9805
  const consequentBrokenFlow = context.brokenFlow;
9807
9806
  context.brokenFlow = brokenFlow;
9808
9807
  if (this.alternate === null)
9809
9808
  return false;
9810
9809
  if (this.alternate.hasEffects(context))
9811
9810
  return true;
9812
- // eslint-disable-next-line unicorn/consistent-destructuring
9813
9811
  context.brokenFlow = context.brokenFlow && consequentBrokenFlow;
9814
9812
  return false;
9815
9813
  }
@@ -9912,13 +9910,11 @@ class IfStatement extends NodeBase {
9912
9910
  let consequentBrokenFlow = false;
9913
9911
  if (this.consequent.shouldBeIncluded(context)) {
9914
9912
  this.consequent.include(context, false, { asSingleStatement: true });
9915
- // eslint-disable-next-line unicorn/consistent-destructuring
9916
9913
  consequentBrokenFlow = context.brokenFlow;
9917
9914
  context.brokenFlow = brokenFlow;
9918
9915
  }
9919
9916
  if (this.alternate?.shouldBeIncluded(context)) {
9920
9917
  this.alternate.include(context, false, { asSingleStatement: true });
9921
- // eslint-disable-next-line unicorn/consistent-destructuring
9922
9918
  context.brokenFlow = context.brokenFlow && consequentBrokenFlow;
9923
9919
  }
9924
9920
  }
@@ -10543,26 +10539,34 @@ class ImportSpecifier extends NodeBase {
10543
10539
 
10544
10540
  class LabeledStatement extends NodeBase {
10545
10541
  hasEffects(context) {
10546
- const brokenFlow = context.brokenFlow;
10542
+ const { brokenFlow, includedLabels } = context;
10547
10543
  context.ignore.labels.add(this.label.name);
10548
- if (this.body.hasEffects(context))
10549
- return true;
10550
- context.ignore.labels.delete(this.label.name);
10551
- if (context.includedLabels.has(this.label.name)) {
10552
- context.includedLabels.delete(this.label.name);
10553
- context.brokenFlow = brokenFlow;
10544
+ context.includedLabels = new Set();
10545
+ let bodyHasEffects = false;
10546
+ if (this.body.hasEffects(context)) {
10547
+ bodyHasEffects = true;
10554
10548
  }
10555
- return false;
10549
+ else {
10550
+ context.ignore.labels.delete(this.label.name);
10551
+ if (context.includedLabels.has(this.label.name)) {
10552
+ context.includedLabels.delete(this.label.name);
10553
+ context.brokenFlow = brokenFlow;
10554
+ }
10555
+ }
10556
+ context.includedLabels = new Set([...includedLabels, ...context.includedLabels]);
10557
+ return bodyHasEffects;
10556
10558
  }
10557
10559
  include(context, includeChildrenRecursively) {
10558
10560
  this.included = true;
10559
- const brokenFlow = context.brokenFlow;
10561
+ const { brokenFlow, includedLabels } = context;
10562
+ context.includedLabels = new Set();
10560
10563
  this.body.include(context, includeChildrenRecursively);
10561
10564
  if (includeChildrenRecursively || context.includedLabels.has(this.label.name)) {
10562
10565
  this.label.include();
10563
10566
  context.includedLabels.delete(this.label.name);
10564
10567
  context.brokenFlow = brokenFlow;
10565
10568
  }
10569
+ context.includedLabels = new Set([...includedLabels, ...context.includedLabels]);
10566
10570
  }
10567
10571
  render(code, options) {
10568
10572
  if (this.label.included) {
@@ -11306,7 +11310,6 @@ class SwitchStatement extends NodeBase {
11306
11310
  for (const switchCase of this.cases) {
11307
11311
  if (switchCase.hasEffects(context))
11308
11312
  return true;
11309
- // eslint-disable-next-line unicorn/consistent-destructuring
11310
11313
  onlyHasBrokenFlow &&= context.brokenFlow && !context.hasBreak;
11311
11314
  context.hasBreak = false;
11312
11315
  context.brokenFlow = brokenFlow;
@@ -11338,7 +11341,6 @@ class SwitchStatement extends NodeBase {
11338
11341
  }
11339
11342
  if (isCaseIncluded) {
11340
11343
  switchCase.include(context, includeChildrenRecursively);
11341
- // eslint-disable-next-line unicorn/consistent-destructuring
11342
11344
  onlyHasBrokenFlow &&= context.brokenFlow && !context.hasBreak;
11343
11345
  context.hasBreak = false;
11344
11346
  context.brokenFlow = brokenFlow;
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0";
34
+ var version = "4.9.1";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -11234,14 +11234,12 @@ class IfStatement extends NodeBase {
11234
11234
  const { brokenFlow } = context;
11235
11235
  if (this.consequent.hasEffects(context))
11236
11236
  return true;
11237
- // eslint-disable-next-line unicorn/consistent-destructuring
11238
11237
  const consequentBrokenFlow = context.brokenFlow;
11239
11238
  context.brokenFlow = brokenFlow;
11240
11239
  if (this.alternate === null)
11241
11240
  return false;
11242
11241
  if (this.alternate.hasEffects(context))
11243
11242
  return true;
11244
- // eslint-disable-next-line unicorn/consistent-destructuring
11245
11243
  context.brokenFlow = context.brokenFlow && consequentBrokenFlow;
11246
11244
  return false;
11247
11245
  }
@@ -11344,13 +11342,11 @@ class IfStatement extends NodeBase {
11344
11342
  let consequentBrokenFlow = false;
11345
11343
  if (this.consequent.shouldBeIncluded(context)) {
11346
11344
  this.consequent.include(context, false, { asSingleStatement: true });
11347
- // eslint-disable-next-line unicorn/consistent-destructuring
11348
11345
  consequentBrokenFlow = context.brokenFlow;
11349
11346
  context.brokenFlow = brokenFlow;
11350
11347
  }
11351
11348
  if (this.alternate?.shouldBeIncluded(context)) {
11352
11349
  this.alternate.include(context, false, { asSingleStatement: true });
11353
- // eslint-disable-next-line unicorn/consistent-destructuring
11354
11350
  context.brokenFlow = context.brokenFlow && consequentBrokenFlow;
11355
11351
  }
11356
11352
  }
@@ -11975,26 +11971,34 @@ class ImportSpecifier extends NodeBase {
11975
11971
 
11976
11972
  class LabeledStatement extends NodeBase {
11977
11973
  hasEffects(context) {
11978
- const brokenFlow = context.brokenFlow;
11974
+ const { brokenFlow, includedLabels } = context;
11979
11975
  context.ignore.labels.add(this.label.name);
11980
- if (this.body.hasEffects(context))
11981
- return true;
11982
- context.ignore.labels.delete(this.label.name);
11983
- if (context.includedLabels.has(this.label.name)) {
11984
- context.includedLabels.delete(this.label.name);
11985
- context.brokenFlow = brokenFlow;
11976
+ context.includedLabels = new Set();
11977
+ let bodyHasEffects = false;
11978
+ if (this.body.hasEffects(context)) {
11979
+ bodyHasEffects = true;
11986
11980
  }
11987
- return false;
11981
+ else {
11982
+ context.ignore.labels.delete(this.label.name);
11983
+ if (context.includedLabels.has(this.label.name)) {
11984
+ context.includedLabels.delete(this.label.name);
11985
+ context.brokenFlow = brokenFlow;
11986
+ }
11987
+ }
11988
+ context.includedLabels = new Set([...includedLabels, ...context.includedLabels]);
11989
+ return bodyHasEffects;
11988
11990
  }
11989
11991
  include(context, includeChildrenRecursively) {
11990
11992
  this.included = true;
11991
- const brokenFlow = context.brokenFlow;
11993
+ const { brokenFlow, includedLabels } = context;
11994
+ context.includedLabels = new Set();
11992
11995
  this.body.include(context, includeChildrenRecursively);
11993
11996
  if (includeChildrenRecursively || context.includedLabels.has(this.label.name)) {
11994
11997
  this.label.include();
11995
11998
  context.includedLabels.delete(this.label.name);
11996
11999
  context.brokenFlow = brokenFlow;
11997
12000
  }
12001
+ context.includedLabels = new Set([...includedLabels, ...context.includedLabels]);
11998
12002
  }
11999
12003
  render(code, options) {
12000
12004
  if (this.label.included) {
@@ -12738,7 +12742,6 @@ class SwitchStatement extends NodeBase {
12738
12742
  for (const switchCase of this.cases) {
12739
12743
  if (switchCase.hasEffects(context))
12740
12744
  return true;
12741
- // eslint-disable-next-line unicorn/consistent-destructuring
12742
12745
  onlyHasBrokenFlow &&= context.brokenFlow && !context.hasBreak;
12743
12746
  context.hasBreak = false;
12744
12747
  context.brokenFlow = brokenFlow;
@@ -12770,7 +12773,6 @@ class SwitchStatement extends NodeBase {
12770
12773
  }
12771
12774
  if (isCaseIncluded) {
12772
12775
  switchCase.include(context, includeChildrenRecursively);
12773
- // eslint-disable-next-line unicorn/consistent-destructuring
12774
12776
  onlyHasBrokenFlow &&= context.brokenFlow && !context.hasBreak;
12775
12777
  context.hasBreak = false;
12776
12778
  context.brokenFlow = brokenFlow;
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.9.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0
4
- Wed, 13 Dec 2023 09:23:48 GMT - commit c5337ef28a71c796e768a9f0edb3d7259a93f1aa
3
+ Rollup.js v4.9.1
4
+ Sun, 17 Dec 2023 06:25:43 GMT - commit d56ac63dc0452820272a0d7536340277f7db68bf
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.0",
3
+ "version": "4.9.1",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -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.0",
105
- "@rollup/rollup-android-arm64": "4.9.0",
106
- "@rollup/rollup-win32-arm64-msvc": "4.9.0",
107
- "@rollup/rollup-linux-arm64-gnu": "4.9.0",
108
- "@rollup/rollup-linux-arm64-musl": "4.9.0",
109
- "@rollup/rollup-android-arm-eabi": "4.9.0",
110
- "@rollup/rollup-linux-arm-gnueabihf": "4.9.0",
111
- "@rollup/rollup-win32-ia32-msvc": "4.9.0",
112
- "@rollup/rollup-linux-riscv64-gnu": "4.9.0",
113
- "@rollup/rollup-darwin-x64": "4.9.0",
114
- "@rollup/rollup-win32-x64-msvc": "4.9.0",
115
- "@rollup/rollup-linux-x64-gnu": "4.9.0",
116
- "@rollup/rollup-linux-x64-musl": "4.9.0"
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"
117
117
  },
118
118
  "devDependenciesComments": {
119
119
  "@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
@@ -123,8 +123,8 @@
123
123
  "@codemirror/lang-javascript": "^6.2.1",
124
124
  "@codemirror/language": "^6.9.3",
125
125
  "@codemirror/search": "^6.5.5",
126
- "@codemirror/state": "^6.3.2",
127
- "@codemirror/view": "^6.22.1",
126
+ "@codemirror/state": "^6.3.3",
127
+ "@codemirror/view": "^6.22.2",
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",
@@ -141,8 +141,8 @@
141
141
  "@types/mocha": "^10.0.6",
142
142
  "@types/node": "18.0.0",
143
143
  "@types/yargs-parser": "^21.0.3",
144
- "@typescript-eslint/eslint-plugin": "^6.13.2",
145
- "@typescript-eslint/parser": "^6.13.2",
144
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
145
+ "@typescript-eslint/parser": "^6.14.0",
146
146
  "@vue/eslint-config-prettier": "^8.0.0",
147
147
  "@vue/eslint-config-typescript": "^12.0.0",
148
148
  "acorn": "^8.11.2",
@@ -152,7 +152,7 @@
152
152
  "chokidar": "^3.5.3",
153
153
  "colorette": "^2.0.20",
154
154
  "concurrently": "^8.2.2",
155
- "core-js": "^3.33.3",
155
+ "core-js": "^3.34.0",
156
156
  "date-time": "^4.0.0",
157
157
  "es5-shim": "^4.6.7",
158
158
  "es6-shim": "^0.35.8",
@@ -175,11 +175,11 @@
175
175
  "mocha": "^10.2.0",
176
176
  "nyc": "^15.1.0",
177
177
  "pinia": "^2.1.7",
178
- "prettier": "^3.1.0",
178
+ "prettier": "^3.1.1",
179
179
  "pretty-bytes": "^6.1.1",
180
180
  "pretty-ms": "^8.0.0",
181
181
  "requirejs": "^2.3.6",
182
- "rollup": "^4.6.1",
182
+ "rollup": "^4.8.0",
183
183
  "rollup-plugin-license": "^3.2.0",
184
184
  "rollup-plugin-string": "^3.0.0",
185
185
  "rollup-plugin-thatworks": "^1.0.4",
@@ -189,12 +189,12 @@
189
189
  "source-map": "^0.7.4",
190
190
  "source-map-support": "^0.5.21",
191
191
  "systemjs": "^6.14.2",
192
- "terser": "^5.25.0",
192
+ "terser": "^5.26.0",
193
193
  "tslib": "^2.6.2",
194
- "typescript": "^5.3.2",
195
- "vite": "^5.0.5",
194
+ "typescript": "^5.3.3",
195
+ "vite": "^5.0.7",
196
196
  "vitepress": "^1.0.0-rc.31",
197
- "vue": "^3.3.10",
197
+ "vue": "^3.3.11",
198
198
  "wasm-pack": "^0.12.1",
199
199
  "weak-napi": "^2.0.2",
200
200
  "yargs-parser": "^21.1.1"