rollup 3.26.2 → 3.27.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 +3 -3
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +46 -22
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.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/rollup.js +46 -22
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch-proxy.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +27 -26
package/dist/bin/rollup
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
@license
|
|
5
|
-
Rollup.js v3.
|
|
6
|
-
|
|
5
|
+
Rollup.js v3.27.0
|
|
6
|
+
Fri, 28 Jul 2023 14:16:41 GMT - commit ac502f2dbdd2d96cb55547fd94942f170978fefd
|
|
7
7
|
|
|
8
8
|
https://github.com/rollup/rollup
|
|
9
9
|
|
|
@@ -1403,7 +1403,7 @@ const BYTE_UNITS = [
|
|
|
1403
1403
|
|
|
1404
1404
|
const BIBYTE_UNITS = [
|
|
1405
1405
|
'B',
|
|
1406
|
-
'
|
|
1406
|
+
'KiB',
|
|
1407
1407
|
'MiB',
|
|
1408
1408
|
'GiB',
|
|
1409
1409
|
'TiB',
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.27.0
|
|
4
|
+
Fri, 28 Jul 2023 14:16:41 GMT - commit ac502f2dbdd2d96cb55547fd94942f170978fefd
|
|
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.
|
|
18
|
+
var version$1 = "3.27.0";
|
|
19
19
|
|
|
20
20
|
const comma = ','.charCodeAt(0);
|
|
21
21
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -2921,10 +2921,7 @@ function getAugmentedNamespace(n) {
|
|
|
2921
2921
|
if (typeof f == "function") {
|
|
2922
2922
|
var a = function a () {
|
|
2923
2923
|
if (this instanceof a) {
|
|
2924
|
-
|
|
2925
|
-
args.push.apply(args, arguments);
|
|
2926
|
-
var Ctor = Function.bind.apply(f, args);
|
|
2927
|
-
return new Ctor();
|
|
2924
|
+
return Reflect.construct(f, arguments, this.constructor);
|
|
2928
2925
|
}
|
|
2929
2926
|
return f.apply(this, arguments);
|
|
2930
2927
|
};
|
|
@@ -7276,6 +7273,15 @@ const PURE_WITH_ARRAY = {
|
|
|
7276
7273
|
return args.length > 1 && !(args[1] instanceof ArrayExpression);
|
|
7277
7274
|
}
|
|
7278
7275
|
};
|
|
7276
|
+
const GETTER_ACCESS = {
|
|
7277
|
+
deoptimizeArgumentsOnCall: doNothing,
|
|
7278
|
+
getLiteralValue: getTruthyLiteralValue,
|
|
7279
|
+
hasEffectsWhenCalled({ args }, context) {
|
|
7280
|
+
const [_thisArgument, firstArgument] = args;
|
|
7281
|
+
return (!(firstArgument instanceof ExpressionEntity) ||
|
|
7282
|
+
firstArgument.hasEffectsOnInteractionAtPath(UNKNOWN_PATH, NODE_INTERACTION_UNKNOWN_ACCESS, context));
|
|
7283
|
+
}
|
|
7284
|
+
};
|
|
7279
7285
|
// We use shortened variables to reduce file size here
|
|
7280
7286
|
/* OBJECT */
|
|
7281
7287
|
const O = {
|
|
@@ -7287,6 +7293,11 @@ const PF = {
|
|
|
7287
7293
|
__proto__: null,
|
|
7288
7294
|
[ValueProperties]: PURE
|
|
7289
7295
|
};
|
|
7296
|
+
/* PURE FUNCTION IF FIRST ARG DOES NOT CONTAIN A GETTER */
|
|
7297
|
+
const PF_NO_GETTER = {
|
|
7298
|
+
__proto__: null,
|
|
7299
|
+
[ValueProperties]: GETTER_ACCESS
|
|
7300
|
+
};
|
|
7290
7301
|
/* FUNCTION THAT MUTATES FIRST ARG WITHOUT TRIGGERING ACCESSORS */
|
|
7291
7302
|
const MUTATES_ARG_WITHOUT_ACCESSOR = {
|
|
7292
7303
|
__proto__: null,
|
|
@@ -7462,7 +7473,8 @@ const knownGlobals = {
|
|
|
7462
7473
|
isSealed: PF,
|
|
7463
7474
|
keys: PF,
|
|
7464
7475
|
fromEntries: O,
|
|
7465
|
-
entries:
|
|
7476
|
+
entries: PF_NO_GETTER,
|
|
7477
|
+
values: PF_NO_GETTER,
|
|
7466
7478
|
prototype: O
|
|
7467
7479
|
},
|
|
7468
7480
|
parseFloat: PF,
|
|
@@ -7558,16 +7570,24 @@ const knownGlobals = {
|
|
|
7558
7570
|
[ValueProperties]: IMPURE,
|
|
7559
7571
|
Collator: INTL_MEMBER,
|
|
7560
7572
|
DateTimeFormat: INTL_MEMBER,
|
|
7573
|
+
DisplayNames: INTL_MEMBER,
|
|
7561
7574
|
ListFormat: INTL_MEMBER,
|
|
7575
|
+
Locale: INTL_MEMBER,
|
|
7562
7576
|
NumberFormat: INTL_MEMBER,
|
|
7563
7577
|
PluralRules: INTL_MEMBER,
|
|
7564
|
-
RelativeTimeFormat: INTL_MEMBER
|
|
7578
|
+
RelativeTimeFormat: INTL_MEMBER,
|
|
7579
|
+
Segmenter: INTL_MEMBER
|
|
7565
7580
|
},
|
|
7566
7581
|
setInterval: C,
|
|
7567
7582
|
setTimeout: C,
|
|
7568
7583
|
TextDecoder: C,
|
|
7569
7584
|
TextEncoder: C,
|
|
7570
|
-
URL:
|
|
7585
|
+
URL: {
|
|
7586
|
+
__proto__: null,
|
|
7587
|
+
[ValueProperties]: IMPURE,
|
|
7588
|
+
prototype: O,
|
|
7589
|
+
canParse: PF
|
|
7590
|
+
},
|
|
7571
7591
|
URLSearchParams: C,
|
|
7572
7592
|
// Browser specific globals
|
|
7573
7593
|
AbortController: C,
|
|
@@ -17752,14 +17772,11 @@ class Bundle {
|
|
|
17752
17772
|
getModuleInfo: this.graph.getModuleInfo
|
|
17753
17773
|
};
|
|
17754
17774
|
for (const module of this.graph.modulesById.values()) {
|
|
17755
|
-
|
|
17756
|
-
|
|
17757
|
-
if (
|
|
17775
|
+
if (module instanceof Module) {
|
|
17776
|
+
const manualChunkAlias = getManualChunk(module.id, manualChunksApi);
|
|
17777
|
+
if (typeof manualChunkAlias === 'string') {
|
|
17758
17778
|
manualChunkAliasesWithEntry.push([manualChunkAlias, module]);
|
|
17759
17779
|
}
|
|
17760
|
-
else {
|
|
17761
|
-
return error(logExternalModulesCannotBeIncludedInManualChunks(module.id));
|
|
17762
|
-
}
|
|
17763
17780
|
}
|
|
17764
17781
|
}
|
|
17765
17782
|
manualChunkAliasesWithEntry.sort(([aliasA], [aliasB]) => aliasA > aliasB ? 1 : aliasA < aliasB ? -1 : 0);
|
|
@@ -18230,6 +18247,10 @@ var defaultOptions = {
|
|
|
18230
18247
|
// allowed and treated as a line comment. Enabled by default when
|
|
18231
18248
|
// `ecmaVersion` >= 2023.
|
|
18232
18249
|
allowHashBang: false,
|
|
18250
|
+
// By default, the parser will verify that private properties are
|
|
18251
|
+
// only used in places where they are valid and have been declared.
|
|
18252
|
+
// Set this to false to turn such checks off.
|
|
18253
|
+
checkPrivateFields: true,
|
|
18233
18254
|
// When `locations` is on, `loc` properties holding objects with
|
|
18234
18255
|
// `start` and `end` properties in `{line, column}` form (with
|
|
18235
18256
|
// line being 1-based and column 0-based) will be attached to the
|
|
@@ -19458,6 +19479,7 @@ pp$8.exitClassBody = function() {
|
|
|
19458
19479
|
var ref = this.privateNameStack.pop();
|
|
19459
19480
|
var declared = ref.declared;
|
|
19460
19481
|
var used = ref.used;
|
|
19482
|
+
if (!this.options.checkPrivateFields) { return }
|
|
19461
19483
|
var len = this.privateNameStack.length;
|
|
19462
19484
|
var parent = len === 0 ? null : this.privateNameStack[len - 1];
|
|
19463
19485
|
for (var i = 0; i < used.length; ++i) {
|
|
@@ -20519,7 +20541,7 @@ pp$5.parseMaybeUnary = function(refDestructuringErrors, sawUnary, incDec, forIni
|
|
|
20519
20541
|
else { sawUnary = true; }
|
|
20520
20542
|
expr = this.finishNode(node, update ? "UpdateExpression" : "UnaryExpression");
|
|
20521
20543
|
} else if (!sawUnary && this.type === types$1.privateId) {
|
|
20522
|
-
if (forInit || this.privateNameStack.length === 0) { this.unexpected(); }
|
|
20544
|
+
if ((forInit || this.privateNameStack.length === 0) && this.options.checkPrivateFields) { this.unexpected(); }
|
|
20523
20545
|
expr = this.parsePrivateIdent();
|
|
20524
20546
|
// only could be private fields in 'in', such as #x in obj
|
|
20525
20547
|
if (this.type !== types$1._in) { this.unexpected(); }
|
|
@@ -21362,10 +21384,12 @@ pp$5.parsePrivateIdent = function() {
|
|
|
21362
21384
|
this.finishNode(node, "PrivateIdentifier");
|
|
21363
21385
|
|
|
21364
21386
|
// For validating existence
|
|
21365
|
-
if (this.
|
|
21366
|
-
this.
|
|
21367
|
-
|
|
21368
|
-
|
|
21387
|
+
if (this.options.checkPrivateFields) {
|
|
21388
|
+
if (this.privateNameStack.length === 0) {
|
|
21389
|
+
this.raise(node.start, ("Private field '#" + (node.name) + "' must be declared in an enclosing class"));
|
|
21390
|
+
} else {
|
|
21391
|
+
this.privateNameStack[this.privateNameStack.length - 1].used.push(node);
|
|
21392
|
+
}
|
|
21369
21393
|
}
|
|
21370
21394
|
|
|
21371
21395
|
return node
|
|
@@ -23765,7 +23789,7 @@ pp.readWord = function() {
|
|
|
23765
23789
|
// [walk]: util/walk.js
|
|
23766
23790
|
|
|
23767
23791
|
|
|
23768
|
-
var version = "8.
|
|
23792
|
+
var version = "8.10.0";
|
|
23769
23793
|
|
|
23770
23794
|
Parser.acorn = {
|
|
23771
23795
|
Parser: Parser,
|
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.27.0
|
|
4
|
+
Fri, 28 Jul 2023 14:16:41 GMT - commit ac502f2dbdd2d96cb55547fd94942f170978fefd
|
|
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.
|
|
33
|
+
var version$1 = "3.27.0";
|
|
34
34
|
|
|
35
35
|
function ensureArray$1(items) {
|
|
36
36
|
if (Array.isArray(items)) {
|
|
@@ -4431,10 +4431,7 @@ function getAugmentedNamespace(n) {
|
|
|
4431
4431
|
if (typeof f == "function") {
|
|
4432
4432
|
var a = function a () {
|
|
4433
4433
|
if (this instanceof a) {
|
|
4434
|
-
|
|
4435
|
-
args.push.apply(args, arguments);
|
|
4436
|
-
var Ctor = Function.bind.apply(f, args);
|
|
4437
|
-
return new Ctor();
|
|
4434
|
+
return Reflect.construct(f, arguments, this.constructor);
|
|
4438
4435
|
}
|
|
4439
4436
|
return f.apply(this, arguments);
|
|
4440
4437
|
};
|
|
@@ -8772,6 +8769,15 @@ const PURE_WITH_ARRAY = {
|
|
|
8772
8769
|
return args.length > 1 && !(args[1] instanceof ArrayExpression);
|
|
8773
8770
|
}
|
|
8774
8771
|
};
|
|
8772
|
+
const GETTER_ACCESS = {
|
|
8773
|
+
deoptimizeArgumentsOnCall: doNothing,
|
|
8774
|
+
getLiteralValue: getTruthyLiteralValue,
|
|
8775
|
+
hasEffectsWhenCalled({ args }, context) {
|
|
8776
|
+
const [_thisArgument, firstArgument] = args;
|
|
8777
|
+
return (!(firstArgument instanceof ExpressionEntity) ||
|
|
8778
|
+
firstArgument.hasEffectsOnInteractionAtPath(UNKNOWN_PATH, NODE_INTERACTION_UNKNOWN_ACCESS, context));
|
|
8779
|
+
}
|
|
8780
|
+
};
|
|
8775
8781
|
// We use shortened variables to reduce file size here
|
|
8776
8782
|
/* OBJECT */
|
|
8777
8783
|
const O = {
|
|
@@ -8783,6 +8789,11 @@ const PF = {
|
|
|
8783
8789
|
__proto__: null,
|
|
8784
8790
|
[ValueProperties]: PURE
|
|
8785
8791
|
};
|
|
8792
|
+
/* PURE FUNCTION IF FIRST ARG DOES NOT CONTAIN A GETTER */
|
|
8793
|
+
const PF_NO_GETTER = {
|
|
8794
|
+
__proto__: null,
|
|
8795
|
+
[ValueProperties]: GETTER_ACCESS
|
|
8796
|
+
};
|
|
8786
8797
|
/* FUNCTION THAT MUTATES FIRST ARG WITHOUT TRIGGERING ACCESSORS */
|
|
8787
8798
|
const MUTATES_ARG_WITHOUT_ACCESSOR = {
|
|
8788
8799
|
__proto__: null,
|
|
@@ -8958,7 +8969,8 @@ const knownGlobals = {
|
|
|
8958
8969
|
isSealed: PF,
|
|
8959
8970
|
keys: PF,
|
|
8960
8971
|
fromEntries: O,
|
|
8961
|
-
entries:
|
|
8972
|
+
entries: PF_NO_GETTER,
|
|
8973
|
+
values: PF_NO_GETTER,
|
|
8962
8974
|
prototype: O
|
|
8963
8975
|
},
|
|
8964
8976
|
parseFloat: PF,
|
|
@@ -9054,16 +9066,24 @@ const knownGlobals = {
|
|
|
9054
9066
|
[ValueProperties]: IMPURE,
|
|
9055
9067
|
Collator: INTL_MEMBER,
|
|
9056
9068
|
DateTimeFormat: INTL_MEMBER,
|
|
9069
|
+
DisplayNames: INTL_MEMBER,
|
|
9057
9070
|
ListFormat: INTL_MEMBER,
|
|
9071
|
+
Locale: INTL_MEMBER,
|
|
9058
9072
|
NumberFormat: INTL_MEMBER,
|
|
9059
9073
|
PluralRules: INTL_MEMBER,
|
|
9060
|
-
RelativeTimeFormat: INTL_MEMBER
|
|
9074
|
+
RelativeTimeFormat: INTL_MEMBER,
|
|
9075
|
+
Segmenter: INTL_MEMBER
|
|
9061
9076
|
},
|
|
9062
9077
|
setInterval: C,
|
|
9063
9078
|
setTimeout: C,
|
|
9064
9079
|
TextDecoder: C,
|
|
9065
9080
|
TextEncoder: C,
|
|
9066
|
-
URL:
|
|
9081
|
+
URL: {
|
|
9082
|
+
__proto__: null,
|
|
9083
|
+
[ValueProperties]: IMPURE,
|
|
9084
|
+
prototype: O,
|
|
9085
|
+
canParse: PF
|
|
9086
|
+
},
|
|
9067
9087
|
URLSearchParams: C,
|
|
9068
9088
|
// Browser specific globals
|
|
9069
9089
|
AbortController: C,
|
|
@@ -19134,14 +19154,11 @@ class Bundle {
|
|
|
19134
19154
|
getModuleInfo: this.graph.getModuleInfo
|
|
19135
19155
|
};
|
|
19136
19156
|
for (const module of this.graph.modulesById.values()) {
|
|
19137
|
-
|
|
19138
|
-
|
|
19139
|
-
if (
|
|
19157
|
+
if (module instanceof Module) {
|
|
19158
|
+
const manualChunkAlias = getManualChunk(module.id, manualChunksApi);
|
|
19159
|
+
if (typeof manualChunkAlias === 'string') {
|
|
19140
19160
|
manualChunkAliasesWithEntry.push([manualChunkAlias, module]);
|
|
19141
19161
|
}
|
|
19142
|
-
else {
|
|
19143
|
-
return error(logExternalModulesCannotBeIncludedInManualChunks(module.id));
|
|
19144
|
-
}
|
|
19145
19162
|
}
|
|
19146
19163
|
}
|
|
19147
19164
|
manualChunkAliasesWithEntry.sort(([aliasA], [aliasB]) => aliasA > aliasB ? 1 : aliasA < aliasB ? -1 : 0);
|
|
@@ -19612,6 +19629,10 @@ var defaultOptions = {
|
|
|
19612
19629
|
// allowed and treated as a line comment. Enabled by default when
|
|
19613
19630
|
// `ecmaVersion` >= 2023.
|
|
19614
19631
|
allowHashBang: false,
|
|
19632
|
+
// By default, the parser will verify that private properties are
|
|
19633
|
+
// only used in places where they are valid and have been declared.
|
|
19634
|
+
// Set this to false to turn such checks off.
|
|
19635
|
+
checkPrivateFields: true,
|
|
19615
19636
|
// When `locations` is on, `loc` properties holding objects with
|
|
19616
19637
|
// `start` and `end` properties in `{line, column}` form (with
|
|
19617
19638
|
// line being 1-based and column 0-based) will be attached to the
|
|
@@ -20840,6 +20861,7 @@ pp$8.exitClassBody = function() {
|
|
|
20840
20861
|
var ref = this.privateNameStack.pop();
|
|
20841
20862
|
var declared = ref.declared;
|
|
20842
20863
|
var used = ref.used;
|
|
20864
|
+
if (!this.options.checkPrivateFields) { return }
|
|
20843
20865
|
var len = this.privateNameStack.length;
|
|
20844
20866
|
var parent = len === 0 ? null : this.privateNameStack[len - 1];
|
|
20845
20867
|
for (var i = 0; i < used.length; ++i) {
|
|
@@ -21901,7 +21923,7 @@ pp$5.parseMaybeUnary = function(refDestructuringErrors, sawUnary, incDec, forIni
|
|
|
21901
21923
|
else { sawUnary = true; }
|
|
21902
21924
|
expr = this.finishNode(node, update ? "UpdateExpression" : "UnaryExpression");
|
|
21903
21925
|
} else if (!sawUnary && this.type === types$1.privateId) {
|
|
21904
|
-
if (forInit || this.privateNameStack.length === 0) { this.unexpected(); }
|
|
21926
|
+
if ((forInit || this.privateNameStack.length === 0) && this.options.checkPrivateFields) { this.unexpected(); }
|
|
21905
21927
|
expr = this.parsePrivateIdent();
|
|
21906
21928
|
// only could be private fields in 'in', such as #x in obj
|
|
21907
21929
|
if (this.type !== types$1._in) { this.unexpected(); }
|
|
@@ -22744,10 +22766,12 @@ pp$5.parsePrivateIdent = function() {
|
|
|
22744
22766
|
this.finishNode(node, "PrivateIdentifier");
|
|
22745
22767
|
|
|
22746
22768
|
// For validating existence
|
|
22747
|
-
if (this.
|
|
22748
|
-
this.
|
|
22749
|
-
|
|
22750
|
-
|
|
22769
|
+
if (this.options.checkPrivateFields) {
|
|
22770
|
+
if (this.privateNameStack.length === 0) {
|
|
22771
|
+
this.raise(node.start, ("Private field '#" + (node.name) + "' must be declared in an enclosing class"));
|
|
22772
|
+
} else {
|
|
22773
|
+
this.privateNameStack[this.privateNameStack.length - 1].used.push(node);
|
|
22774
|
+
}
|
|
22751
22775
|
}
|
|
22752
22776
|
|
|
22753
22777
|
return node
|
|
@@ -25147,7 +25171,7 @@ pp.readWord = function() {
|
|
|
25147
25171
|
// [walk]: util/walk.js
|
|
25148
25172
|
|
|
25149
25173
|
|
|
25150
|
-
var version = "8.
|
|
25174
|
+
var version = "8.10.0";
|
|
25151
25175
|
|
|
25152
25176
|
Parser.acorn = {
|
|
25153
25177
|
Parser: Parser,
|
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": "3.
|
|
3
|
+
"version": "3.27.0",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -68,27 +68,27 @@
|
|
|
68
68
|
"@codemirror/language": "^6.8.0",
|
|
69
69
|
"@codemirror/search": "^6.5.0",
|
|
70
70
|
"@codemirror/state": "^6.2.1",
|
|
71
|
-
"@codemirror/view": "^6.14.
|
|
71
|
+
"@codemirror/view": "^6.14.1",
|
|
72
72
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
73
|
-
"@mermaid-js/mermaid-cli": "^10.2.
|
|
73
|
+
"@mermaid-js/mermaid-cli": "^10.2.4",
|
|
74
74
|
"@rollup/plugin-alias": "^5.0.0",
|
|
75
75
|
"@rollup/plugin-buble": "^1.0.2",
|
|
76
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
76
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
77
77
|
"@rollup/plugin-json": "^6.0.0",
|
|
78
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
|
-
"@rollup/plugin-typescript": "^11.1.
|
|
81
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
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.
|
|
85
|
+
"@types/node": "~14.18.54",
|
|
86
86
|
"@types/yargs-parser": "^21.0.0",
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
88
|
-
"@typescript-eslint/parser": "^
|
|
89
|
-
"@vue/eslint-config-prettier": "^
|
|
87
|
+
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
88
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
89
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
90
90
|
"@vue/eslint-config-typescript": "^11.0.3",
|
|
91
|
-
"acorn": "^8.
|
|
91
|
+
"acorn": "^8.10.0",
|
|
92
92
|
"acorn-import-assertions": "^1.9.0",
|
|
93
93
|
"acorn-jsx": "^5.3.2",
|
|
94
94
|
"acorn-walk": "^8.2.0",
|
|
@@ -97,15 +97,15 @@
|
|
|
97
97
|
"chokidar": "^3.5.3",
|
|
98
98
|
"colorette": "^2.0.20",
|
|
99
99
|
"concurrently": "^8.2.0",
|
|
100
|
-
"core-js": "^3.31.
|
|
100
|
+
"core-js": "^3.31.1",
|
|
101
101
|
"date-time": "^4.0.0",
|
|
102
102
|
"es5-shim": "^4.6.7",
|
|
103
103
|
"es6-shim": "^0.35.8",
|
|
104
|
-
"eslint": "^8.
|
|
104
|
+
"eslint": "^8.45.0",
|
|
105
105
|
"eslint-config-prettier": "^8.8.0",
|
|
106
106
|
"eslint-plugin-import": "^2.27.5",
|
|
107
|
-
"eslint-plugin-prettier": "^
|
|
108
|
-
"eslint-plugin-unicorn": "^
|
|
107
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
108
|
+
"eslint-plugin-unicorn": "^48.0.0",
|
|
109
109
|
"eslint-plugin-vue": "^9.15.1",
|
|
110
110
|
"fixturify": "^3.0.0",
|
|
111
111
|
"flru": "^1.0.2",
|
|
@@ -113,38 +113,39 @@
|
|
|
113
113
|
"github-api": "^3.4.0",
|
|
114
114
|
"hash.js": "^1.1.7",
|
|
115
115
|
"husky": "^8.0.3",
|
|
116
|
-
"inquirer": "^9.2.
|
|
116
|
+
"inquirer": "^9.2.8",
|
|
117
117
|
"is-reference": "^3.0.1",
|
|
118
|
-
"lint-staged": "^13.2.
|
|
118
|
+
"lint-staged": "^13.2.3",
|
|
119
119
|
"locate-character": "^3.0.0",
|
|
120
|
-
"magic-string": "^0.30.
|
|
120
|
+
"magic-string": "^0.30.1",
|
|
121
121
|
"mocha": "^10.2.0",
|
|
122
122
|
"nyc": "^15.1.0",
|
|
123
123
|
"pinia": "^2.1.4",
|
|
124
|
-
"prettier": "^
|
|
125
|
-
"pretty-bytes": "^6.1.
|
|
124
|
+
"prettier": "^3.0.0",
|
|
125
|
+
"pretty-bytes": "^6.1.1",
|
|
126
126
|
"pretty-ms": "^8.0.0",
|
|
127
127
|
"requirejs": "^2.3.6",
|
|
128
|
-
"rollup": "^3.
|
|
128
|
+
"rollup": "^3.26.3",
|
|
129
129
|
"rollup-plugin-license": "^3.0.1",
|
|
130
130
|
"rollup-plugin-string": "^3.0.0",
|
|
131
131
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
132
|
-
"semver": "^7.5.
|
|
132
|
+
"semver": "^7.5.4",
|
|
133
133
|
"shx": "^0.3.4",
|
|
134
134
|
"signal-exit": "^4.0.2",
|
|
135
135
|
"source-map": "^0.7.4",
|
|
136
136
|
"source-map-support": "^0.5.21",
|
|
137
137
|
"systemjs": "^6.14.1",
|
|
138
|
-
"terser": "^5.
|
|
139
|
-
"tslib": "^2.6.
|
|
140
|
-
"typescript": "^5.1.
|
|
141
|
-
"
|
|
138
|
+
"terser": "^5.19.2",
|
|
139
|
+
"tslib": "^2.6.1",
|
|
140
|
+
"typescript": "^5.1.6",
|
|
141
|
+
"vite": "^4.4.7",
|
|
142
|
+
"vitepress": "^1.0.0-beta.6",
|
|
142
143
|
"vue": "^3.3.4",
|
|
143
144
|
"weak-napi": "^2.0.2",
|
|
144
145
|
"yargs-parser": "^21.1.1"
|
|
145
146
|
},
|
|
146
147
|
"overrides": {
|
|
147
|
-
"semver": "^7.5.
|
|
148
|
+
"semver": "^7.5.4"
|
|
148
149
|
},
|
|
149
150
|
"files": [
|
|
150
151
|
"dist/**/*.js",
|