rollup 4.13.2 → 4.14.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 +2 -2
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +28 -16
- package/dist/es/shared/parseAst.js +6 -3
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +6 -3
- package/dist/shared/rollup.js +28 -16
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +23 -22
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.14.0
|
|
5
|
+
Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/parseAst.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.14.0
|
|
4
|
+
Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { performance } from 'node:perf_hooks';
|
|
|
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.
|
|
19
|
+
var version = "4.14.0";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -7284,13 +7284,7 @@ class GlobalVariable extends Variable {
|
|
|
7284
7284
|
}
|
|
7285
7285
|
}
|
|
7286
7286
|
|
|
7287
|
-
const tdzVariableKinds =
|
|
7288
|
-
__proto__: null,
|
|
7289
|
-
class: true,
|
|
7290
|
-
const: true,
|
|
7291
|
-
let: true,
|
|
7292
|
-
var: true
|
|
7293
|
-
};
|
|
7287
|
+
const tdzVariableKinds = new Set(['class', 'const', 'let', 'var', 'using', 'await using']);
|
|
7294
7288
|
class Identifier extends NodeBase {
|
|
7295
7289
|
constructor() {
|
|
7296
7290
|
super(...arguments);
|
|
@@ -7336,6 +7330,8 @@ class Identifier extends NodeBase {
|
|
|
7336
7330
|
}
|
|
7337
7331
|
case 'let':
|
|
7338
7332
|
case 'const':
|
|
7333
|
+
case 'using':
|
|
7334
|
+
case 'await using':
|
|
7339
7335
|
case 'class': {
|
|
7340
7336
|
variable = this.scope.addDeclaration(this, this.scope.context, init, kind);
|
|
7341
7337
|
break;
|
|
@@ -7418,7 +7414,7 @@ class Identifier extends NodeBase {
|
|
|
7418
7414
|
return cachedTdzAccess;
|
|
7419
7415
|
if (!(this.variable instanceof LocalVariable &&
|
|
7420
7416
|
this.variable.kind &&
|
|
7421
|
-
this.variable.kind
|
|
7417
|
+
tdzVariableKinds.has(this.variable.kind) &&
|
|
7422
7418
|
// we ignore possible TDZs due to circular module dependencies as
|
|
7423
7419
|
// otherwise we get many false positives
|
|
7424
7420
|
this.variable.module === this.scope.context.module)) {
|
|
@@ -10357,7 +10353,8 @@ function isReassignedExportsMember(variable, exportNamesByVariable) {
|
|
|
10357
10353
|
}
|
|
10358
10354
|
|
|
10359
10355
|
class VariableDeclarator extends NodeBase {
|
|
10360
|
-
declareDeclarator(kind) {
|
|
10356
|
+
declareDeclarator(kind, isUsingDeclaration) {
|
|
10357
|
+
this.isUsingDeclaration = isUsingDeclaration;
|
|
10361
10358
|
this.id.declare(kind, this.init || UNDEFINED_EXPRESSION);
|
|
10362
10359
|
}
|
|
10363
10360
|
deoptimizePath(path) {
|
|
@@ -10368,7 +10365,7 @@ class VariableDeclarator extends NodeBase {
|
|
|
10368
10365
|
this.applyDeoptimizations();
|
|
10369
10366
|
const initEffect = this.init?.hasEffects(context);
|
|
10370
10367
|
this.id.markDeclarationReached();
|
|
10371
|
-
return initEffect || this.id.hasEffects(context);
|
|
10368
|
+
return initEffect || this.id.hasEffects(context) || this.isUsingDeclaration;
|
|
10372
10369
|
}
|
|
10373
10370
|
include(context, includeChildrenRecursively) {
|
|
10374
10371
|
const { deoptimized, id, init } = this;
|
|
@@ -10387,7 +10384,7 @@ class VariableDeclarator extends NodeBase {
|
|
|
10387
10384
|
render(code, options) {
|
|
10388
10385
|
const { exportNamesByVariable, snippets: { _, getPropertyAccess } } = options;
|
|
10389
10386
|
const { end, id, init, start } = this;
|
|
10390
|
-
const renderId = id.included;
|
|
10387
|
+
const renderId = id.included || this.isUsingDeclaration;
|
|
10391
10388
|
if (renderId) {
|
|
10392
10389
|
id.render(code, options);
|
|
10393
10390
|
}
|
|
@@ -12064,15 +12061,17 @@ class VariableDeclaration extends NodeBase {
|
|
|
12064
12061
|
}
|
|
12065
12062
|
initialise() {
|
|
12066
12063
|
super.initialise();
|
|
12064
|
+
this.isUsingDeclaration = this.kind === 'await using' || this.kind === 'using';
|
|
12067
12065
|
for (const declarator of this.declarations) {
|
|
12068
|
-
declarator.declareDeclarator(this.kind);
|
|
12066
|
+
declarator.declareDeclarator(this.kind, this.isUsingDeclaration);
|
|
12069
12067
|
}
|
|
12070
12068
|
}
|
|
12071
12069
|
removeAnnotations(code) {
|
|
12072
12070
|
this.declarations[0].removeAnnotations(code);
|
|
12073
12071
|
}
|
|
12074
12072
|
render(code, options, nodeRenderOptions = BLANK) {
|
|
12075
|
-
if (
|
|
12073
|
+
if (this.isUsingDeclaration ||
|
|
12074
|
+
areAllDeclarationsIncludedAndNotExported(this.declarations, options.exportNamesByVariable)) {
|
|
12076
12075
|
for (const declarator of this.declarations) {
|
|
12077
12076
|
declarator.render(code, options);
|
|
12078
12077
|
}
|
|
@@ -20716,6 +20715,19 @@ function handleError(error, recover = false) {
|
|
|
20716
20715
|
if (error.stack) {
|
|
20717
20716
|
outputLines.push(dim(error.stack?.replace(`${nameSection}${error.message}\n`, '')));
|
|
20718
20717
|
}
|
|
20718
|
+
// ES2022: Error.prototype.cause is optional
|
|
20719
|
+
if (error.cause) {
|
|
20720
|
+
let cause = error.cause;
|
|
20721
|
+
const causeErrorLines = [];
|
|
20722
|
+
let indent = '';
|
|
20723
|
+
while (cause) {
|
|
20724
|
+
indent += ' ';
|
|
20725
|
+
const message = cause.stack || cause;
|
|
20726
|
+
causeErrorLines.push(...`[cause] ${message}`.split('\n').map(line => indent + line));
|
|
20727
|
+
cause = cause.cause;
|
|
20728
|
+
}
|
|
20729
|
+
outputLines.push(dim(causeErrorLines.join('\n')));
|
|
20730
|
+
}
|
|
20719
20731
|
outputLines.push('', '');
|
|
20720
20732
|
stderr(outputLines.join('\n'));
|
|
20721
20733
|
if (!recover)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.14.0
|
|
4
|
+
Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -84,7 +84,10 @@ const FIXED_STRINGS = [
|
|
|
84
84
|
'||=',
|
|
85
85
|
'??=',
|
|
86
86
|
'pure',
|
|
87
|
-
'noSideEffects'
|
|
87
|
+
'noSideEffects',
|
|
88
|
+
'sourcemap',
|
|
89
|
+
'using',
|
|
90
|
+
'await using'
|
|
88
91
|
];
|
|
89
92
|
|
|
90
93
|
const ANNOTATION_KEY = '_rollupAnnotations';
|
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/parseAst.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.14.0
|
|
4
|
+
Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1066,7 +1066,10 @@ const FIXED_STRINGS = [
|
|
|
1066
1066
|
'||=',
|
|
1067
1067
|
'??=',
|
|
1068
1068
|
'pure',
|
|
1069
|
-
'noSideEffects'
|
|
1069
|
+
'noSideEffects',
|
|
1070
|
+
'sourcemap',
|
|
1071
|
+
'using',
|
|
1072
|
+
'await using'
|
|
1070
1073
|
];
|
|
1071
1074
|
|
|
1072
1075
|
const ANNOTATION_KEY = '_rollupAnnotations';
|
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.14.0
|
|
4
|
+
Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
|
|
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.
|
|
34
|
+
var version = "4.14.0";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -1479,6 +1479,19 @@ function handleError(error, recover = false) {
|
|
|
1479
1479
|
if (error.stack) {
|
|
1480
1480
|
outputLines.push(dim(error.stack?.replace(`${nameSection}${error.message}\n`, '')));
|
|
1481
1481
|
}
|
|
1482
|
+
// ES2022: Error.prototype.cause is optional
|
|
1483
|
+
if (error.cause) {
|
|
1484
|
+
let cause = error.cause;
|
|
1485
|
+
const causeErrorLines = [];
|
|
1486
|
+
let indent = '';
|
|
1487
|
+
while (cause) {
|
|
1488
|
+
indent += ' ';
|
|
1489
|
+
const message = cause.stack || cause;
|
|
1490
|
+
causeErrorLines.push(...`[cause] ${message}`.split('\n').map(line => indent + line));
|
|
1491
|
+
cause = cause.cause;
|
|
1492
|
+
}
|
|
1493
|
+
outputLines.push(dim(causeErrorLines.join('\n')));
|
|
1494
|
+
}
|
|
1482
1495
|
outputLines.push('', '');
|
|
1483
1496
|
stderr(outputLines.join('\n'));
|
|
1484
1497
|
if (!recover)
|
|
@@ -8712,13 +8725,7 @@ class GlobalVariable extends Variable {
|
|
|
8712
8725
|
}
|
|
8713
8726
|
}
|
|
8714
8727
|
|
|
8715
|
-
const tdzVariableKinds =
|
|
8716
|
-
__proto__: null,
|
|
8717
|
-
class: true,
|
|
8718
|
-
const: true,
|
|
8719
|
-
let: true,
|
|
8720
|
-
var: true
|
|
8721
|
-
};
|
|
8728
|
+
const tdzVariableKinds = new Set(['class', 'const', 'let', 'var', 'using', 'await using']);
|
|
8722
8729
|
class Identifier extends NodeBase {
|
|
8723
8730
|
constructor() {
|
|
8724
8731
|
super(...arguments);
|
|
@@ -8764,6 +8771,8 @@ class Identifier extends NodeBase {
|
|
|
8764
8771
|
}
|
|
8765
8772
|
case 'let':
|
|
8766
8773
|
case 'const':
|
|
8774
|
+
case 'using':
|
|
8775
|
+
case 'await using':
|
|
8767
8776
|
case 'class': {
|
|
8768
8777
|
variable = this.scope.addDeclaration(this, this.scope.context, init, kind);
|
|
8769
8778
|
break;
|
|
@@ -8846,7 +8855,7 @@ class Identifier extends NodeBase {
|
|
|
8846
8855
|
return cachedTdzAccess;
|
|
8847
8856
|
if (!(this.variable instanceof LocalVariable &&
|
|
8848
8857
|
this.variable.kind &&
|
|
8849
|
-
this.variable.kind
|
|
8858
|
+
tdzVariableKinds.has(this.variable.kind) &&
|
|
8850
8859
|
// we ignore possible TDZs due to circular module dependencies as
|
|
8851
8860
|
// otherwise we get many false positives
|
|
8852
8861
|
this.variable.module === this.scope.context.module)) {
|
|
@@ -11785,7 +11794,8 @@ function isReassignedExportsMember(variable, exportNamesByVariable) {
|
|
|
11785
11794
|
}
|
|
11786
11795
|
|
|
11787
11796
|
class VariableDeclarator extends NodeBase {
|
|
11788
|
-
declareDeclarator(kind) {
|
|
11797
|
+
declareDeclarator(kind, isUsingDeclaration) {
|
|
11798
|
+
this.isUsingDeclaration = isUsingDeclaration;
|
|
11789
11799
|
this.id.declare(kind, this.init || UNDEFINED_EXPRESSION);
|
|
11790
11800
|
}
|
|
11791
11801
|
deoptimizePath(path) {
|
|
@@ -11796,7 +11806,7 @@ class VariableDeclarator extends NodeBase {
|
|
|
11796
11806
|
this.applyDeoptimizations();
|
|
11797
11807
|
const initEffect = this.init?.hasEffects(context);
|
|
11798
11808
|
this.id.markDeclarationReached();
|
|
11799
|
-
return initEffect || this.id.hasEffects(context);
|
|
11809
|
+
return initEffect || this.id.hasEffects(context) || this.isUsingDeclaration;
|
|
11800
11810
|
}
|
|
11801
11811
|
include(context, includeChildrenRecursively) {
|
|
11802
11812
|
const { deoptimized, id, init } = this;
|
|
@@ -11815,7 +11825,7 @@ class VariableDeclarator extends NodeBase {
|
|
|
11815
11825
|
render(code, options) {
|
|
11816
11826
|
const { exportNamesByVariable, snippets: { _, getPropertyAccess } } = options;
|
|
11817
11827
|
const { end, id, init, start } = this;
|
|
11818
|
-
const renderId = id.included;
|
|
11828
|
+
const renderId = id.included || this.isUsingDeclaration;
|
|
11819
11829
|
if (renderId) {
|
|
11820
11830
|
id.render(code, options);
|
|
11821
11831
|
}
|
|
@@ -13492,15 +13502,17 @@ class VariableDeclaration extends NodeBase {
|
|
|
13492
13502
|
}
|
|
13493
13503
|
initialise() {
|
|
13494
13504
|
super.initialise();
|
|
13505
|
+
this.isUsingDeclaration = this.kind === 'await using' || this.kind === 'using';
|
|
13495
13506
|
for (const declarator of this.declarations) {
|
|
13496
|
-
declarator.declareDeclarator(this.kind);
|
|
13507
|
+
declarator.declareDeclarator(this.kind, this.isUsingDeclaration);
|
|
13497
13508
|
}
|
|
13498
13509
|
}
|
|
13499
13510
|
removeAnnotations(code) {
|
|
13500
13511
|
this.declarations[0].removeAnnotations(code);
|
|
13501
13512
|
}
|
|
13502
13513
|
render(code, options, nodeRenderOptions = BLANK) {
|
|
13503
|
-
if (
|
|
13514
|
+
if (this.isUsingDeclaration ||
|
|
13515
|
+
areAllDeclarationsIncludedAndNotExported(this.declarations, options.exportNamesByVariable)) {
|
|
13504
13516
|
for (const declarator of this.declarations) {
|
|
13505
13517
|
declarator.render(code, options);
|
|
13506
13518
|
}
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.14.0",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -103,21 +103,21 @@
|
|
|
103
103
|
"homepage": "https://rollupjs.org/",
|
|
104
104
|
"optionalDependencies": {
|
|
105
105
|
"fsevents": "~2.3.2",
|
|
106
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
107
|
-
"@rollup/rollup-android-arm64": "4.
|
|
108
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
109
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
110
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
111
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
112
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
113
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
114
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
115
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "4.
|
|
116
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
117
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
118
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
119
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
120
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
106
|
+
"@rollup/rollup-darwin-arm64": "4.14.0",
|
|
107
|
+
"@rollup/rollup-android-arm64": "4.14.0",
|
|
108
|
+
"@rollup/rollup-win32-arm64-msvc": "4.14.0",
|
|
109
|
+
"@rollup/rollup-linux-arm64-gnu": "4.14.0",
|
|
110
|
+
"@rollup/rollup-linux-arm64-musl": "4.14.0",
|
|
111
|
+
"@rollup/rollup-android-arm-eabi": "4.14.0",
|
|
112
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.14.0",
|
|
113
|
+
"@rollup/rollup-win32-ia32-msvc": "4.14.0",
|
|
114
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.14.0",
|
|
115
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.14.0",
|
|
116
|
+
"@rollup/rollup-linux-s390x-gnu": "4.14.0",
|
|
117
|
+
"@rollup/rollup-darwin-x64": "4.14.0",
|
|
118
|
+
"@rollup/rollup-win32-x64-msvc": "4.14.0",
|
|
119
|
+
"@rollup/rollup-linux-x64-gnu": "4.14.0",
|
|
120
|
+
"@rollup/rollup-linux-x64-musl": "4.14.0"
|
|
121
121
|
},
|
|
122
122
|
"dependencies": {
|
|
123
123
|
"@types/estree": "1.0.5"
|
|
@@ -145,13 +145,14 @@
|
|
|
145
145
|
"@rollup/plugin-terser": "^0.4.4",
|
|
146
146
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
147
147
|
"@rollup/pluginutils": "^5.1.0",
|
|
148
|
+
"@shikijs/vitepress-twoslash": "^1.2.1",
|
|
148
149
|
"@types/eslint": "^8.56.6",
|
|
149
150
|
"@types/inquirer": "^9.0.7",
|
|
150
151
|
"@types/mocha": "^10.0.6",
|
|
151
152
|
"@types/node": "~18.18.14",
|
|
152
153
|
"@types/yargs-parser": "^21.0.3",
|
|
153
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
154
|
-
"@typescript-eslint/parser": "^7.
|
|
154
|
+
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
155
|
+
"@typescript-eslint/parser": "^7.4.0",
|
|
155
156
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
156
157
|
"@vue/eslint-config-typescript": "^13.0.0",
|
|
157
158
|
"acorn": "^8.11.3",
|
|
@@ -170,7 +171,7 @@
|
|
|
170
171
|
"eslint-plugin-import": "^2.29.1",
|
|
171
172
|
"eslint-plugin-prettier": "^5.1.3",
|
|
172
173
|
"eslint-plugin-unicorn": "^51.0.1",
|
|
173
|
-
"eslint-plugin-vue": "^9.
|
|
174
|
+
"eslint-plugin-vue": "^9.24.0",
|
|
174
175
|
"fixturify": "^3.0.0",
|
|
175
176
|
"flru": "^1.0.2",
|
|
176
177
|
"fs-extra": "^11.2.0",
|
|
@@ -199,9 +200,9 @@
|
|
|
199
200
|
"systemjs": "^6.14.3",
|
|
200
201
|
"terser": "^5.29.2",
|
|
201
202
|
"tslib": "^2.6.2",
|
|
202
|
-
"typescript": "^5.4.
|
|
203
|
-
"vite": "^5.
|
|
204
|
-
"vitepress": "^1.0.
|
|
203
|
+
"typescript": "^5.4.3",
|
|
204
|
+
"vite": "^5.2.6",
|
|
205
|
+
"vitepress": "^1.0.1",
|
|
205
206
|
"vue": "^3.4.21",
|
|
206
207
|
"wasm-pack": "^0.12.1",
|
|
207
208
|
"weak-napi": "^2.0.2",
|