rollup 4.34.4 → 4.34.6
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 +6 -6
- 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 +18 -12
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +5 -5
- 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 +5 -5
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +18 -12
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +28 -28
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.34.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.34.6
|
|
5
|
+
Fri, 07 Feb 2025 16:31:35 GMT - commit 4b8745922d37d8325197d5a6613ffbf231163c7d
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
|
@@ -1203,7 +1203,7 @@ var _a, _b, _c;
|
|
|
1203
1203
|
const minNodeVersion = (process && process.env && process.env.YARGS_MIN_NODE_VERSION)
|
|
1204
1204
|
? Number(process.env.YARGS_MIN_NODE_VERSION)
|
|
1205
1205
|
: 12;
|
|
1206
|
-
const nodeVersion = (_b = (_a = process === null || process ===
|
|
1206
|
+
const nodeVersion = (_b = (_a = process === null || process === void 0 ? void 0 : process.versions) === null || _a === void 0 ? void 0 : _a.node) !== null && _b !== void 0 ? _b : (_c = process === null || process === void 0 ? void 0 : process.version) === null || _c === void 0 ? void 0 : _c.slice(1);
|
|
1207
1207
|
if (nodeVersion) {
|
|
1208
1208
|
const major = Number(nodeVersion.match(/^([^.]+)/)[1]);
|
|
1209
1209
|
if (major < minNodeVersion) {
|
|
@@ -1264,14 +1264,14 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
1264
1264
|
|
|
1265
1265
|
|
|
1266
1266
|
function __addDisposableResource(env, value, async) {
|
|
1267
|
-
if (value !== null && value !==
|
|
1267
|
+
if (value !== null && value !== void 0) {
|
|
1268
1268
|
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
1269
1269
|
var dispose, inner;
|
|
1270
1270
|
if (async) {
|
|
1271
1271
|
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
1272
1272
|
dispose = value[Symbol.asyncDispose];
|
|
1273
1273
|
}
|
|
1274
|
-
if (dispose ===
|
|
1274
|
+
if (dispose === void 0) {
|
|
1275
1275
|
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
1276
1276
|
dispose = value[Symbol.dispose];
|
|
1277
1277
|
if (async) inner = dispose;
|
|
@@ -1644,7 +1644,7 @@ function printTimings(timings) {
|
|
|
1644
1644
|
}
|
|
1645
1645
|
|
|
1646
1646
|
async function build(inputOptions, warnings, silent = false) {
|
|
1647
|
-
const env_1 = { stack: [], error:
|
|
1647
|
+
const env_1 = { stack: [], error: void 0, hasError: false };
|
|
1648
1648
|
try {
|
|
1649
1649
|
const outputOptions = inputOptions.output;
|
|
1650
1650
|
const useStdout = !outputOptions[0].file && !outputOptions[0].dir;
|
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.34.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.34.6
|
|
4
|
+
Fri, 07 Feb 2025 16:31:35 GMT - commit 4b8745922d37d8325197d5a6613ffbf231163c7d
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -15,7 +15,7 @@ import process$1, { env } from 'node:process';
|
|
|
15
15
|
import { performance } from 'node:perf_hooks';
|
|
16
16
|
import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
|
|
17
17
|
|
|
18
|
-
var version = "4.34.
|
|
18
|
+
var version = "4.34.6";
|
|
19
19
|
|
|
20
20
|
const comma = ','.charCodeAt(0);
|
|
21
21
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -10486,7 +10486,7 @@ function requireParse () {
|
|
|
10486
10486
|
}
|
|
10487
10487
|
|
|
10488
10488
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
10489
|
-
const end = rest[1] !==
|
|
10489
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
10490
10490
|
|
|
10491
10491
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
10492
10492
|
prior.output = `(?:${prior.output}`;
|
|
@@ -14947,7 +14947,11 @@ class UnaryExpression extends NodeBase {
|
|
|
14947
14947
|
}
|
|
14948
14948
|
const CHARACTERS_THAT_DO_NOT_REQUIRE_SPACE = /[\s([=%&*+-/<>^|,?:;]/;
|
|
14949
14949
|
function getRenderedLiteralValue(value) {
|
|
14950
|
-
if (value === undefined
|
|
14950
|
+
if (value === undefined) {
|
|
14951
|
+
// At the moment, the undefined only happens when the operator is void
|
|
14952
|
+
return 'void 0';
|
|
14953
|
+
}
|
|
14954
|
+
if (typeof value === 'boolean') {
|
|
14951
14955
|
return String(value);
|
|
14952
14956
|
}
|
|
14953
14957
|
if (typeof value === 'string') {
|
|
@@ -16486,6 +16490,7 @@ class Module {
|
|
|
16486
16490
|
this.sideEffectDependenciesByVariable = new Map();
|
|
16487
16491
|
this.sourcesWithAttributes = new Map();
|
|
16488
16492
|
this.allExportNames = null;
|
|
16493
|
+
this.allExportsIncluded = false;
|
|
16489
16494
|
this.ast = null;
|
|
16490
16495
|
this.exportAllModules = [];
|
|
16491
16496
|
this.exportAllSources = new Set();
|
|
@@ -16827,6 +16832,9 @@ class Module {
|
|
|
16827
16832
|
this.ast.include(context, false);
|
|
16828
16833
|
}
|
|
16829
16834
|
includeAllExports(includeNamespaceMembers) {
|
|
16835
|
+
if (this.allExportsIncluded)
|
|
16836
|
+
return;
|
|
16837
|
+
this.allExportsIncluded = true;
|
|
16830
16838
|
if (!this.isExecuted) {
|
|
16831
16839
|
markModuleAndImpureDependenciesAsExecuted(this);
|
|
16832
16840
|
this.graph.needsTreeshakingPass = true;
|
|
@@ -16846,9 +16854,7 @@ class Module {
|
|
|
16846
16854
|
const [variable] = this.getVariableForExportName(name);
|
|
16847
16855
|
if (variable) {
|
|
16848
16856
|
variable.deoptimizePath(UNKNOWN_PATH);
|
|
16849
|
-
|
|
16850
|
-
this.includeVariable(variable, UNKNOWN_PATH, inclusionContext);
|
|
16851
|
-
}
|
|
16857
|
+
this.includeVariable(variable, UNKNOWN_PATH, inclusionContext);
|
|
16852
16858
|
if (variable instanceof ExternalVariable) {
|
|
16853
16859
|
variable.module.reexported = true;
|
|
16854
16860
|
}
|
|
@@ -20277,18 +20283,18 @@ function flru (max) {
|
|
|
20277
20283
|
return {
|
|
20278
20284
|
clear: reset,
|
|
20279
20285
|
has: function (key) {
|
|
20280
|
-
return curr[key] !==
|
|
20286
|
+
return curr[key] !== void 0 || prev[key] !== void 0;
|
|
20281
20287
|
},
|
|
20282
20288
|
get: function (key) {
|
|
20283
20289
|
var val = curr[key];
|
|
20284
|
-
if (val !==
|
|
20285
|
-
if ((val=prev[key]) !==
|
|
20290
|
+
if (val !== void 0) return val;
|
|
20291
|
+
if ((val=prev[key]) !== void 0) {
|
|
20286
20292
|
keep(key, val);
|
|
20287
20293
|
return val;
|
|
20288
20294
|
}
|
|
20289
20295
|
},
|
|
20290
20296
|
set: function (key, value) {
|
|
20291
|
-
if (curr[key] !==
|
|
20297
|
+
if (curr[key] !== void 0) {
|
|
20292
20298
|
curr[key] = value;
|
|
20293
20299
|
} else {
|
|
20294
20300
|
keep(key, value);
|
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.34.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.34.6
|
|
4
|
+
Fri, 07 Feb 2025 16:31:35 GMT - commit 4b8745922d37d8325197d5a6613ffbf231163c7d
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1558,7 +1558,7 @@ function requireParse$2 () {
|
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
1560
1560
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
1561
|
-
const end = rest[1] !==
|
|
1561
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
1562
1562
|
|
|
1563
1563
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
1564
1564
|
prior.output = `(?:${prior.output}`;
|
|
@@ -3969,7 +3969,7 @@ function requireParse$1 () {
|
|
|
3969
3969
|
}
|
|
3970
3970
|
|
|
3971
3971
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
3972
|
-
const end = rest[1] !==
|
|
3972
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
3973
3973
|
|
|
3974
3974
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
3975
3975
|
prior.output = `(?:${prior.output}`;
|
|
@@ -5163,7 +5163,7 @@ function requireToRegexRange () {
|
|
|
5163
5163
|
throw new TypeError('toRegexRange: expected the first argument to be a number');
|
|
5164
5164
|
}
|
|
5165
5165
|
|
|
5166
|
-
if (max ===
|
|
5166
|
+
if (max === void 0 || min === max) {
|
|
5167
5167
|
return String(min);
|
|
5168
5168
|
}
|
|
5169
5169
|
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.34.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.34.6
|
|
4
|
+
Fri, 07 Feb 2025 16:31:35 GMT - commit 4b8745922d37d8325197d5a6613ffbf231163c7d
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1554,7 +1554,7 @@ function requireParse$2 () {
|
|
|
1554
1554
|
}
|
|
1555
1555
|
|
|
1556
1556
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
1557
|
-
const end = rest[1] !==
|
|
1557
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
1558
1558
|
|
|
1559
1559
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
1560
1560
|
prior.output = `(?:${prior.output}`;
|
|
@@ -3965,7 +3965,7 @@ function requireParse$1 () {
|
|
|
3965
3965
|
}
|
|
3966
3966
|
|
|
3967
3967
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
3968
|
-
const end = rest[1] !==
|
|
3968
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
3969
3969
|
|
|
3970
3970
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
3971
3971
|
prior.output = `(?:${prior.output}`;
|
|
@@ -5159,7 +5159,7 @@ function requireToRegexRange () {
|
|
|
5159
5159
|
throw new TypeError('toRegexRange: expected the first argument to be a number');
|
|
5160
5160
|
}
|
|
5161
5161
|
|
|
5162
|
-
if (max ===
|
|
5162
|
+
if (max === void 0 || min === max) {
|
|
5163
5163
|
return String(min);
|
|
5164
5164
|
}
|
|
5165
5165
|
|
package/dist/shared/parseAst.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.34.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.34.6
|
|
4
|
+
Fri, 07 Feb 2025 16:31:35 GMT - commit 4b8745922d37d8325197d5a6613ffbf231163c7d
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -17,7 +17,7 @@ const native_js = require('../native.js');
|
|
|
17
17
|
const node_perf_hooks = require('node:perf_hooks');
|
|
18
18
|
const promises = require('node:fs/promises');
|
|
19
19
|
|
|
20
|
-
var version = "4.34.
|
|
20
|
+
var version = "4.34.6";
|
|
21
21
|
|
|
22
22
|
function ensureArray$1(items) {
|
|
23
23
|
if (Array.isArray(items)) {
|
|
@@ -11954,7 +11954,7 @@ function requireParse () {
|
|
|
11954
11954
|
}
|
|
11955
11955
|
|
|
11956
11956
|
if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
|
|
11957
|
-
const end = rest[1] !==
|
|
11957
|
+
const end = rest[1] !== void 0 ? '|$' : '';
|
|
11958
11958
|
|
|
11959
11959
|
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
11960
11960
|
prior.output = `(?:${prior.output}`;
|
|
@@ -16415,7 +16415,11 @@ class UnaryExpression extends NodeBase {
|
|
|
16415
16415
|
}
|
|
16416
16416
|
const CHARACTERS_THAT_DO_NOT_REQUIRE_SPACE = /[\s([=%&*+-/<>^|,?:;]/;
|
|
16417
16417
|
function getRenderedLiteralValue(value) {
|
|
16418
|
-
if (value === undefined
|
|
16418
|
+
if (value === undefined) {
|
|
16419
|
+
// At the moment, the undefined only happens when the operator is void
|
|
16420
|
+
return 'void 0';
|
|
16421
|
+
}
|
|
16422
|
+
if (typeof value === 'boolean') {
|
|
16419
16423
|
return String(value);
|
|
16420
16424
|
}
|
|
16421
16425
|
if (typeof value === 'string') {
|
|
@@ -17947,6 +17951,7 @@ class Module {
|
|
|
17947
17951
|
this.sideEffectDependenciesByVariable = new Map();
|
|
17948
17952
|
this.sourcesWithAttributes = new Map();
|
|
17949
17953
|
this.allExportNames = null;
|
|
17954
|
+
this.allExportsIncluded = false;
|
|
17950
17955
|
this.ast = null;
|
|
17951
17956
|
this.exportAllModules = [];
|
|
17952
17957
|
this.exportAllSources = new Set();
|
|
@@ -18288,6 +18293,9 @@ class Module {
|
|
|
18288
18293
|
this.ast.include(context, false);
|
|
18289
18294
|
}
|
|
18290
18295
|
includeAllExports(includeNamespaceMembers) {
|
|
18296
|
+
if (this.allExportsIncluded)
|
|
18297
|
+
return;
|
|
18298
|
+
this.allExportsIncluded = true;
|
|
18291
18299
|
if (!this.isExecuted) {
|
|
18292
18300
|
markModuleAndImpureDependenciesAsExecuted(this);
|
|
18293
18301
|
this.graph.needsTreeshakingPass = true;
|
|
@@ -18307,9 +18315,7 @@ class Module {
|
|
|
18307
18315
|
const [variable] = this.getVariableForExportName(name);
|
|
18308
18316
|
if (variable) {
|
|
18309
18317
|
variable.deoptimizePath(UNKNOWN_PATH);
|
|
18310
|
-
|
|
18311
|
-
this.includeVariable(variable, UNKNOWN_PATH, inclusionContext);
|
|
18312
|
-
}
|
|
18318
|
+
this.includeVariable(variable, UNKNOWN_PATH, inclusionContext);
|
|
18313
18319
|
if (variable instanceof ExternalVariable) {
|
|
18314
18320
|
variable.module.reexported = true;
|
|
18315
18321
|
}
|
|
@@ -21609,18 +21615,18 @@ function flru (max) {
|
|
|
21609
21615
|
return {
|
|
21610
21616
|
clear: reset,
|
|
21611
21617
|
has: function (key) {
|
|
21612
|
-
return curr[key] !==
|
|
21618
|
+
return curr[key] !== void 0 || prev[key] !== void 0;
|
|
21613
21619
|
},
|
|
21614
21620
|
get: function (key) {
|
|
21615
21621
|
var val = curr[key];
|
|
21616
|
-
if (val !==
|
|
21617
|
-
if ((val=prev[key]) !==
|
|
21622
|
+
if (val !== void 0) return val;
|
|
21623
|
+
if ((val=prev[key]) !== void 0) {
|
|
21618
21624
|
keep(key, val);
|
|
21619
21625
|
return val;
|
|
21620
21626
|
}
|
|
21621
21627
|
},
|
|
21622
21628
|
set: function (key, value) {
|
|
21623
|
-
if (curr[key] !==
|
|
21629
|
+
if (curr[key] !== void 0) {
|
|
21624
21630
|
curr[key] = value;
|
|
21625
21631
|
} else {
|
|
21626
21632
|
keep(key, value);
|
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.34.
|
|
3
|
+
"version": "4.34.6",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -110,25 +110,25 @@
|
|
|
110
110
|
"homepage": "https://rollupjs.org/",
|
|
111
111
|
"optionalDependencies": {
|
|
112
112
|
"fsevents": "~2.3.2",
|
|
113
|
-
"@rollup/rollup-darwin-arm64": "4.34.
|
|
114
|
-
"@rollup/rollup-android-arm64": "4.34.
|
|
115
|
-
"@rollup/rollup-win32-arm64-msvc": "4.34.
|
|
116
|
-
"@rollup/rollup-freebsd-arm64": "4.34.
|
|
117
|
-
"@rollup/rollup-linux-arm64-gnu": "4.34.
|
|
118
|
-
"@rollup/rollup-linux-arm64-musl": "4.34.
|
|
119
|
-
"@rollup/rollup-android-arm-eabi": "4.34.
|
|
120
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.34.
|
|
121
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.34.
|
|
122
|
-
"@rollup/rollup-win32-ia32-msvc": "4.34.
|
|
123
|
-
"@rollup/rollup-linux-loongarch64-gnu": "4.34.
|
|
124
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.34.
|
|
125
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "4.34.
|
|
126
|
-
"@rollup/rollup-linux-s390x-gnu": "4.34.
|
|
127
|
-
"@rollup/rollup-darwin-x64": "4.34.
|
|
128
|
-
"@rollup/rollup-win32-x64-msvc": "4.34.
|
|
129
|
-
"@rollup/rollup-freebsd-x64": "4.34.
|
|
130
|
-
"@rollup/rollup-linux-x64-gnu": "4.34.
|
|
131
|
-
"@rollup/rollup-linux-x64-musl": "4.34.
|
|
113
|
+
"@rollup/rollup-darwin-arm64": "4.34.6",
|
|
114
|
+
"@rollup/rollup-android-arm64": "4.34.6",
|
|
115
|
+
"@rollup/rollup-win32-arm64-msvc": "4.34.6",
|
|
116
|
+
"@rollup/rollup-freebsd-arm64": "4.34.6",
|
|
117
|
+
"@rollup/rollup-linux-arm64-gnu": "4.34.6",
|
|
118
|
+
"@rollup/rollup-linux-arm64-musl": "4.34.6",
|
|
119
|
+
"@rollup/rollup-android-arm-eabi": "4.34.6",
|
|
120
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.34.6",
|
|
121
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.34.6",
|
|
122
|
+
"@rollup/rollup-win32-ia32-msvc": "4.34.6",
|
|
123
|
+
"@rollup/rollup-linux-loongarch64-gnu": "4.34.6",
|
|
124
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.34.6",
|
|
125
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.34.6",
|
|
126
|
+
"@rollup/rollup-linux-s390x-gnu": "4.34.6",
|
|
127
|
+
"@rollup/rollup-darwin-x64": "4.34.6",
|
|
128
|
+
"@rollup/rollup-win32-x64-msvc": "4.34.6",
|
|
129
|
+
"@rollup/rollup-freebsd-x64": "4.34.6",
|
|
130
|
+
"@rollup/rollup-linux-x64-gnu": "4.34.6",
|
|
131
|
+
"@rollup/rollup-linux-x64-musl": "4.34.6"
|
|
132
132
|
},
|
|
133
133
|
"dependencies": {
|
|
134
134
|
"@types/estree": "1.0.6"
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
"@codemirror/lang-javascript": "^6.2.2",
|
|
142
142
|
"@codemirror/language": "^6.10.8",
|
|
143
143
|
"@codemirror/search": "^6.5.8",
|
|
144
|
-
"@codemirror/state": "^6.5.
|
|
144
|
+
"@codemirror/state": "^6.5.2",
|
|
145
145
|
"@codemirror/view": "^6.36.2",
|
|
146
146
|
"@eslint/js": "^9.19.0",
|
|
147
|
-
"@inquirer/prompts": "^7.
|
|
147
|
+
"@inquirer/prompts": "^7.3.1",
|
|
148
148
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
149
149
|
"@mermaid-js/mermaid-cli": "^11.4.2",
|
|
150
150
|
"@napi-rs/cli": "^2.18.4",
|
|
@@ -157,9 +157,9 @@
|
|
|
157
157
|
"@rollup/plugin-terser": "^0.4.4",
|
|
158
158
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
159
159
|
"@rollup/pluginutils": "^5.1.4",
|
|
160
|
-
"@shikijs/vitepress-twoslash": "^2.
|
|
160
|
+
"@shikijs/vitepress-twoslash": "^2.2.0",
|
|
161
161
|
"@types/mocha": "^10.0.10",
|
|
162
|
-
"@types/node": "^18.19.
|
|
162
|
+
"@types/node": "^18.19.75",
|
|
163
163
|
"@types/semver": "^7.5.8",
|
|
164
164
|
"@types/yargs-parser": "^21.0.3",
|
|
165
165
|
"@vue/language-server": "^2.2.0",
|
|
@@ -201,10 +201,10 @@
|
|
|
201
201
|
"pretty-bytes": "^6.1.1",
|
|
202
202
|
"pretty-ms": "^9.2.0",
|
|
203
203
|
"requirejs": "^2.3.7",
|
|
204
|
-
"rollup": "^4.
|
|
204
|
+
"rollup": "^4.34.1",
|
|
205
205
|
"rollup-plugin-license": "^3.5.3",
|
|
206
206
|
"rollup-plugin-string": "^3.0.0",
|
|
207
|
-
"semver": "^7.
|
|
207
|
+
"semver": "^7.7.1",
|
|
208
208
|
"shx": "^0.3.4",
|
|
209
209
|
"signal-exit": "^4.1.0",
|
|
210
210
|
"source-map": "^0.7.4",
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"terser": "^5.37.0",
|
|
214
214
|
"tslib": "^2.8.1",
|
|
215
215
|
"typescript": "^5.7.3",
|
|
216
|
-
"typescript-eslint": "^8.
|
|
216
|
+
"typescript-eslint": "^8.23.0",
|
|
217
217
|
"vite": "^6.0.11",
|
|
218
218
|
"vitepress": "^1.6.3",
|
|
219
219
|
"vue": "^3.5.13",
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
},
|
|
224
224
|
"overrides": {
|
|
225
225
|
"axios": "^1.7.9",
|
|
226
|
-
"semver": "^7.
|
|
226
|
+
"semver": "^7.7.1",
|
|
227
227
|
"readable-stream": "npm:@built-in/readable-stream@1"
|
|
228
228
|
},
|
|
229
229
|
"comments": {
|