@storm-software/config-tools 1.30.1 → 1.30.3
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/CHANGELOG.md +26 -0
- package/README.md +1 -1
- package/index.js +620 -579
- package/meta.json +1 -1
- package/package.json +2 -5
- package/utilities/find-workspace-root.js +33 -6
- package/utilities/logger.js +48 -33
package/index.js
CHANGED
|
@@ -4,16 +4,13 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __getProtoOf = Object.getPrototypeOf;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var
|
|
8
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
9
|
-
}) : x)(function(x) {
|
|
10
|
-
if (typeof require !== "undefined")
|
|
11
|
-
return require.apply(this, arguments);
|
|
12
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
13
|
-
});
|
|
14
|
-
var __commonJS = (cb, mod) => function __require2() {
|
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
15
8
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
16
9
|
};
|
|
10
|
+
var __export = (target, all) => {
|
|
11
|
+
for (var name in all)
|
|
12
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
13
|
+
};
|
|
17
14
|
var __copyProps = (to, from, except, desc) => {
|
|
18
15
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
19
16
|
for (let key of __getOwnPropNames(from))
|
|
@@ -30,12 +27,13 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
27
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
31
28
|
mod
|
|
32
29
|
));
|
|
30
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
33
31
|
|
|
34
32
|
// node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
|
|
35
33
|
var require_universalify = __commonJS({
|
|
36
|
-
"node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js"(
|
|
34
|
+
"node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js"(exports2) {
|
|
37
35
|
"use strict";
|
|
38
|
-
|
|
36
|
+
exports2.fromCallback = function(fn) {
|
|
39
37
|
return Object.defineProperty(function(...args) {
|
|
40
38
|
if (typeof args[args.length - 1] === "function")
|
|
41
39
|
fn.apply(this, args);
|
|
@@ -47,7 +45,7 @@ var require_universalify = __commonJS({
|
|
|
47
45
|
}
|
|
48
46
|
}, "name", { value: fn.name });
|
|
49
47
|
};
|
|
50
|
-
|
|
48
|
+
exports2.fromPromise = function(fn) {
|
|
51
49
|
return Object.defineProperty(function(...args) {
|
|
52
50
|
const cb = args[args.length - 1];
|
|
53
51
|
if (typeof cb !== "function")
|
|
@@ -63,8 +61,8 @@ var require_universalify = __commonJS({
|
|
|
63
61
|
|
|
64
62
|
// node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/polyfills.js
|
|
65
63
|
var require_polyfills = __commonJS({
|
|
66
|
-
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/polyfills.js"(
|
|
67
|
-
var constants =
|
|
64
|
+
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/polyfills.js"(exports2, module2) {
|
|
65
|
+
var constants = require("constants");
|
|
68
66
|
var origCwd = process.cwd;
|
|
69
67
|
var cwd = null;
|
|
70
68
|
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform;
|
|
@@ -87,7 +85,7 @@ var require_polyfills = __commonJS({
|
|
|
87
85
|
Object.setPrototypeOf(process.chdir, chdir);
|
|
88
86
|
}
|
|
89
87
|
var chdir;
|
|
90
|
-
|
|
88
|
+
module2.exports = patch;
|
|
91
89
|
function patch(fs) {
|
|
92
90
|
if (constants.hasOwnProperty("O_SYMLINK") && process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
|
|
93
91
|
patchLchmod(fs);
|
|
@@ -379,9 +377,9 @@ var require_polyfills = __commonJS({
|
|
|
379
377
|
|
|
380
378
|
// node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/legacy-streams.js
|
|
381
379
|
var require_legacy_streams = __commonJS({
|
|
382
|
-
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/legacy-streams.js"(
|
|
383
|
-
var Stream =
|
|
384
|
-
|
|
380
|
+
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/legacy-streams.js"(exports2, module2) {
|
|
381
|
+
var Stream = require("stream").Stream;
|
|
382
|
+
module2.exports = legacy;
|
|
385
383
|
function legacy(fs) {
|
|
386
384
|
return {
|
|
387
385
|
ReadStream,
|
|
@@ -478,9 +476,9 @@ var require_legacy_streams = __commonJS({
|
|
|
478
476
|
|
|
479
477
|
// node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/clone.js
|
|
480
478
|
var require_clone = __commonJS({
|
|
481
|
-
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/clone.js"(
|
|
479
|
+
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/clone.js"(exports2, module2) {
|
|
482
480
|
"use strict";
|
|
483
|
-
|
|
481
|
+
module2.exports = clone;
|
|
484
482
|
var getPrototypeOf = Object.getPrototypeOf || function(obj) {
|
|
485
483
|
return obj.__proto__;
|
|
486
484
|
};
|
|
@@ -501,12 +499,12 @@ var require_clone = __commonJS({
|
|
|
501
499
|
|
|
502
500
|
// node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js
|
|
503
501
|
var require_graceful_fs = __commonJS({
|
|
504
|
-
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js"(
|
|
505
|
-
var fs =
|
|
502
|
+
"node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js"(exports2, module2) {
|
|
503
|
+
var fs = require("fs");
|
|
506
504
|
var polyfills = require_polyfills();
|
|
507
505
|
var legacy = require_legacy_streams();
|
|
508
506
|
var clone = require_clone();
|
|
509
|
-
var util2 =
|
|
507
|
+
var util2 = require("util");
|
|
510
508
|
var gracefulQueue;
|
|
511
509
|
var previousSymbol;
|
|
512
510
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
|
@@ -565,7 +563,7 @@ var require_graceful_fs = __commonJS({
|
|
|
565
563
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
566
564
|
process.on("exit", function() {
|
|
567
565
|
debug(fs[gracefulQueue]);
|
|
568
|
-
|
|
566
|
+
require("assert").equal(fs[gracefulQueue].length, 0);
|
|
569
567
|
});
|
|
570
568
|
}
|
|
571
569
|
}
|
|
@@ -573,9 +571,9 @@ var require_graceful_fs = __commonJS({
|
|
|
573
571
|
if (!global[gracefulQueue]) {
|
|
574
572
|
publishQueue(global, fs[gracefulQueue]);
|
|
575
573
|
}
|
|
576
|
-
|
|
574
|
+
module2.exports = patch(clone(fs));
|
|
577
575
|
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs.__patched) {
|
|
578
|
-
|
|
576
|
+
module2.exports = patch(fs);
|
|
579
577
|
fs.__patched = true;
|
|
580
578
|
}
|
|
581
579
|
function patch(fs2) {
|
|
@@ -871,7 +869,7 @@ var require_graceful_fs = __commonJS({
|
|
|
871
869
|
|
|
872
870
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/fs/index.js
|
|
873
871
|
var require_fs = __commonJS({
|
|
874
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/fs/index.js"(
|
|
872
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/fs/index.js"(exports2) {
|
|
875
873
|
"use strict";
|
|
876
874
|
var u = require_universalify().fromCallback;
|
|
877
875
|
var fs = require_graceful_fs();
|
|
@@ -913,11 +911,11 @@ var require_fs = __commonJS({
|
|
|
913
911
|
].filter((key) => {
|
|
914
912
|
return typeof fs[key] === "function";
|
|
915
913
|
});
|
|
916
|
-
Object.assign(
|
|
914
|
+
Object.assign(exports2, fs);
|
|
917
915
|
api.forEach((method) => {
|
|
918
|
-
|
|
916
|
+
exports2[method] = u(fs[method]);
|
|
919
917
|
});
|
|
920
|
-
|
|
918
|
+
exports2.exists = function(filename, callback) {
|
|
921
919
|
if (typeof callback === "function") {
|
|
922
920
|
return fs.exists(filename, callback);
|
|
923
921
|
}
|
|
@@ -925,7 +923,7 @@ var require_fs = __commonJS({
|
|
|
925
923
|
return fs.exists(filename, resolve);
|
|
926
924
|
});
|
|
927
925
|
};
|
|
928
|
-
|
|
926
|
+
exports2.read = function(fd, buffer, offset, length, position, callback) {
|
|
929
927
|
if (typeof callback === "function") {
|
|
930
928
|
return fs.read(fd, buffer, offset, length, position, callback);
|
|
931
929
|
}
|
|
@@ -937,7 +935,7 @@ var require_fs = __commonJS({
|
|
|
937
935
|
});
|
|
938
936
|
});
|
|
939
937
|
};
|
|
940
|
-
|
|
938
|
+
exports2.write = function(fd, buffer, ...args) {
|
|
941
939
|
if (typeof args[args.length - 1] === "function") {
|
|
942
940
|
return fs.write(fd, buffer, ...args);
|
|
943
941
|
}
|
|
@@ -949,7 +947,7 @@ var require_fs = __commonJS({
|
|
|
949
947
|
});
|
|
950
948
|
});
|
|
951
949
|
};
|
|
952
|
-
|
|
950
|
+
exports2.readv = function(fd, buffers, ...args) {
|
|
953
951
|
if (typeof args[args.length - 1] === "function") {
|
|
954
952
|
return fs.readv(fd, buffers, ...args);
|
|
955
953
|
}
|
|
@@ -961,7 +959,7 @@ var require_fs = __commonJS({
|
|
|
961
959
|
});
|
|
962
960
|
});
|
|
963
961
|
};
|
|
964
|
-
|
|
962
|
+
exports2.writev = function(fd, buffers, ...args) {
|
|
965
963
|
if (typeof args[args.length - 1] === "function") {
|
|
966
964
|
return fs.writev(fd, buffers, ...args);
|
|
967
965
|
}
|
|
@@ -974,7 +972,7 @@ var require_fs = __commonJS({
|
|
|
974
972
|
});
|
|
975
973
|
};
|
|
976
974
|
if (typeof fs.realpath.native === "function") {
|
|
977
|
-
|
|
975
|
+
exports2.realpath.native = u(fs.realpath.native);
|
|
978
976
|
} else {
|
|
979
977
|
process.emitWarning(
|
|
980
978
|
"fs.realpath.native is not a function. Is fs being monkey-patched?",
|
|
@@ -987,10 +985,10 @@ var require_fs = __commonJS({
|
|
|
987
985
|
|
|
988
986
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/utils.js
|
|
989
987
|
var require_utils = __commonJS({
|
|
990
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/utils.js"(
|
|
988
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/utils.js"(exports2, module2) {
|
|
991
989
|
"use strict";
|
|
992
|
-
var path =
|
|
993
|
-
|
|
990
|
+
var path = require("path");
|
|
991
|
+
module2.exports.checkPath = function checkPath(pth) {
|
|
994
992
|
if (process.platform === "win32") {
|
|
995
993
|
const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path.parse(pth).root, ""));
|
|
996
994
|
if (pathHasInvalidWinCharacters) {
|
|
@@ -1005,7 +1003,7 @@ var require_utils = __commonJS({
|
|
|
1005
1003
|
|
|
1006
1004
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/make-dir.js
|
|
1007
1005
|
var require_make_dir = __commonJS({
|
|
1008
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/make-dir.js"(
|
|
1006
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/make-dir.js"(exports2, module2) {
|
|
1009
1007
|
"use strict";
|
|
1010
1008
|
var fs = require_fs();
|
|
1011
1009
|
var { checkPath } = require_utils();
|
|
@@ -1015,14 +1013,14 @@ var require_make_dir = __commonJS({
|
|
|
1015
1013
|
return options;
|
|
1016
1014
|
return { ...defaults, ...options }.mode;
|
|
1017
1015
|
};
|
|
1018
|
-
|
|
1016
|
+
module2.exports.makeDir = async (dir, options) => {
|
|
1019
1017
|
checkPath(dir);
|
|
1020
1018
|
return fs.mkdir(dir, {
|
|
1021
1019
|
mode: getMode(options),
|
|
1022
1020
|
recursive: true
|
|
1023
1021
|
});
|
|
1024
1022
|
};
|
|
1025
|
-
|
|
1023
|
+
module2.exports.makeDirSync = (dir, options) => {
|
|
1026
1024
|
checkPath(dir);
|
|
1027
1025
|
return fs.mkdirSync(dir, {
|
|
1028
1026
|
mode: getMode(options),
|
|
@@ -1034,12 +1032,12 @@ var require_make_dir = __commonJS({
|
|
|
1034
1032
|
|
|
1035
1033
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/index.js
|
|
1036
1034
|
var require_mkdirs = __commonJS({
|
|
1037
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/index.js"(
|
|
1035
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/mkdirs/index.js"(exports2, module2) {
|
|
1038
1036
|
"use strict";
|
|
1039
1037
|
var u = require_universalify().fromPromise;
|
|
1040
1038
|
var { makeDir: _makeDir, makeDirSync } = require_make_dir();
|
|
1041
1039
|
var makeDir = u(_makeDir);
|
|
1042
|
-
|
|
1040
|
+
module2.exports = {
|
|
1043
1041
|
mkdirs: makeDir,
|
|
1044
1042
|
mkdirsSync: makeDirSync,
|
|
1045
1043
|
// alias
|
|
@@ -1053,14 +1051,14 @@ var require_mkdirs = __commonJS({
|
|
|
1053
1051
|
|
|
1054
1052
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/path-exists/index.js
|
|
1055
1053
|
var require_path_exists = __commonJS({
|
|
1056
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/path-exists/index.js"(
|
|
1054
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/path-exists/index.js"(exports2, module2) {
|
|
1057
1055
|
"use strict";
|
|
1058
1056
|
var u = require_universalify().fromPromise;
|
|
1059
1057
|
var fs = require_fs();
|
|
1060
1058
|
function pathExists(path) {
|
|
1061
1059
|
return fs.access(path).then(() => true).catch(() => false);
|
|
1062
1060
|
}
|
|
1063
|
-
|
|
1061
|
+
module2.exports = {
|
|
1064
1062
|
pathExists: u(pathExists),
|
|
1065
1063
|
pathExistsSync: fs.existsSync
|
|
1066
1064
|
};
|
|
@@ -1069,7 +1067,7 @@ var require_path_exists = __commonJS({
|
|
|
1069
1067
|
|
|
1070
1068
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/utimes.js
|
|
1071
1069
|
var require_utimes = __commonJS({
|
|
1072
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/utimes.js"(
|
|
1070
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/utimes.js"(exports2, module2) {
|
|
1073
1071
|
"use strict";
|
|
1074
1072
|
var fs = require_fs();
|
|
1075
1073
|
var u = require_universalify().fromPromise;
|
|
@@ -1094,7 +1092,7 @@ var require_utimes = __commonJS({
|
|
|
1094
1092
|
fs.futimesSync(fd, atime, mtime);
|
|
1095
1093
|
return fs.closeSync(fd);
|
|
1096
1094
|
}
|
|
1097
|
-
|
|
1095
|
+
module2.exports = {
|
|
1098
1096
|
utimesMillis: u(utimesMillis),
|
|
1099
1097
|
utimesMillisSync
|
|
1100
1098
|
};
|
|
@@ -1103,10 +1101,10 @@ var require_utimes = __commonJS({
|
|
|
1103
1101
|
|
|
1104
1102
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/stat.js
|
|
1105
1103
|
var require_stat = __commonJS({
|
|
1106
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/stat.js"(
|
|
1104
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/util/stat.js"(exports2, module2) {
|
|
1107
1105
|
"use strict";
|
|
1108
1106
|
var fs = require_fs();
|
|
1109
|
-
var path =
|
|
1107
|
+
var path = require("path");
|
|
1110
1108
|
var u = require_universalify().fromPromise;
|
|
1111
1109
|
function getStats(src, dest, opts) {
|
|
1112
1110
|
const statFunc = opts.dereference ? (file) => fs.stat(file, { bigint: true }) : (file) => fs.lstat(file, { bigint: true });
|
|
@@ -1225,7 +1223,7 @@ var require_stat = __commonJS({
|
|
|
1225
1223
|
function errMsg(src, dest, funcName) {
|
|
1226
1224
|
return `Cannot ${funcName} '${src}' to a subdirectory of itself, '${dest}'.`;
|
|
1227
1225
|
}
|
|
1228
|
-
|
|
1226
|
+
module2.exports = {
|
|
1229
1227
|
// checkPaths
|
|
1230
1228
|
checkPaths: u(checkPaths),
|
|
1231
1229
|
checkPathsSync,
|
|
@@ -1241,10 +1239,10 @@ var require_stat = __commonJS({
|
|
|
1241
1239
|
|
|
1242
1240
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy.js
|
|
1243
1241
|
var require_copy = __commonJS({
|
|
1244
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy.js"(
|
|
1242
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy.js"(exports2, module2) {
|
|
1245
1243
|
"use strict";
|
|
1246
1244
|
var fs = require_fs();
|
|
1247
|
-
var path =
|
|
1245
|
+
var path = require("path");
|
|
1248
1246
|
var { mkdirs } = require_mkdirs();
|
|
1249
1247
|
var { pathExists } = require_path_exists();
|
|
1250
1248
|
var { utimesMillis } = require_utimes();
|
|
@@ -1368,16 +1366,16 @@ var require_copy = __commonJS({
|
|
|
1368
1366
|
await fs.unlink(dest);
|
|
1369
1367
|
return fs.symlink(resolvedSrc, dest);
|
|
1370
1368
|
}
|
|
1371
|
-
|
|
1369
|
+
module2.exports = copy;
|
|
1372
1370
|
}
|
|
1373
1371
|
});
|
|
1374
1372
|
|
|
1375
1373
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy-sync.js
|
|
1376
1374
|
var require_copy_sync = __commonJS({
|
|
1377
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy-sync.js"(
|
|
1375
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/copy-sync.js"(exports2, module2) {
|
|
1378
1376
|
"use strict";
|
|
1379
1377
|
var fs = require_graceful_fs();
|
|
1380
|
-
var path =
|
|
1378
|
+
var path = require("path");
|
|
1381
1379
|
var mkdirsSync = require_mkdirs().mkdirsSync;
|
|
1382
1380
|
var utimesMillisSync = require_utimes().utimesMillisSync;
|
|
1383
1381
|
var stat2 = require_stat();
|
|
@@ -1509,16 +1507,16 @@ var require_copy_sync = __commonJS({
|
|
|
1509
1507
|
fs.unlinkSync(dest);
|
|
1510
1508
|
return fs.symlinkSync(resolvedSrc, dest);
|
|
1511
1509
|
}
|
|
1512
|
-
|
|
1510
|
+
module2.exports = copySync;
|
|
1513
1511
|
}
|
|
1514
1512
|
});
|
|
1515
1513
|
|
|
1516
1514
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/index.js
|
|
1517
1515
|
var require_copy2 = __commonJS({
|
|
1518
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/index.js"(
|
|
1516
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/copy/index.js"(exports2, module2) {
|
|
1519
1517
|
"use strict";
|
|
1520
1518
|
var u = require_universalify().fromPromise;
|
|
1521
|
-
|
|
1519
|
+
module2.exports = {
|
|
1522
1520
|
copy: u(require_copy()),
|
|
1523
1521
|
copySync: require_copy_sync()
|
|
1524
1522
|
};
|
|
@@ -1527,7 +1525,7 @@ var require_copy2 = __commonJS({
|
|
|
1527
1525
|
|
|
1528
1526
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/remove/index.js
|
|
1529
1527
|
var require_remove = __commonJS({
|
|
1530
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/remove/index.js"(
|
|
1528
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/remove/index.js"(exports2, module2) {
|
|
1531
1529
|
"use strict";
|
|
1532
1530
|
var fs = require_graceful_fs();
|
|
1533
1531
|
var u = require_universalify().fromCallback;
|
|
@@ -1537,7 +1535,7 @@ var require_remove = __commonJS({
|
|
|
1537
1535
|
function removeSync(path) {
|
|
1538
1536
|
fs.rmSync(path, { recursive: true, force: true });
|
|
1539
1537
|
}
|
|
1540
|
-
|
|
1538
|
+
module2.exports = {
|
|
1541
1539
|
remove: u(remove),
|
|
1542
1540
|
removeSync
|
|
1543
1541
|
};
|
|
@@ -1546,11 +1544,11 @@ var require_remove = __commonJS({
|
|
|
1546
1544
|
|
|
1547
1545
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/empty/index.js
|
|
1548
1546
|
var require_empty = __commonJS({
|
|
1549
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/empty/index.js"(
|
|
1547
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/empty/index.js"(exports2, module2) {
|
|
1550
1548
|
"use strict";
|
|
1551
1549
|
var u = require_universalify().fromPromise;
|
|
1552
1550
|
var fs = require_fs();
|
|
1553
|
-
var path =
|
|
1551
|
+
var path = require("path");
|
|
1554
1552
|
var mkdir = require_mkdirs();
|
|
1555
1553
|
var remove = require_remove();
|
|
1556
1554
|
var emptyDir = u(async function emptyDir2(dir) {
|
|
@@ -1574,7 +1572,7 @@ var require_empty = __commonJS({
|
|
|
1574
1572
|
remove.removeSync(item);
|
|
1575
1573
|
});
|
|
1576
1574
|
}
|
|
1577
|
-
|
|
1575
|
+
module2.exports = {
|
|
1578
1576
|
emptyDirSync,
|
|
1579
1577
|
emptydirSync: emptyDirSync,
|
|
1580
1578
|
emptyDir,
|
|
@@ -1585,10 +1583,10 @@ var require_empty = __commonJS({
|
|
|
1585
1583
|
|
|
1586
1584
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/file.js
|
|
1587
1585
|
var require_file = __commonJS({
|
|
1588
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/file.js"(
|
|
1586
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/file.js"(exports2, module2) {
|
|
1589
1587
|
"use strict";
|
|
1590
1588
|
var u = require_universalify().fromPromise;
|
|
1591
|
-
var path =
|
|
1589
|
+
var path = require("path");
|
|
1592
1590
|
var fs = require_fs();
|
|
1593
1591
|
var mkdir = require_mkdirs();
|
|
1594
1592
|
async function createFile(file) {
|
|
@@ -1639,7 +1637,7 @@ var require_file = __commonJS({
|
|
|
1639
1637
|
}
|
|
1640
1638
|
fs.writeFileSync(file, "");
|
|
1641
1639
|
}
|
|
1642
|
-
|
|
1640
|
+
module2.exports = {
|
|
1643
1641
|
createFile: u(createFile),
|
|
1644
1642
|
createFileSync
|
|
1645
1643
|
};
|
|
@@ -1648,10 +1646,10 @@ var require_file = __commonJS({
|
|
|
1648
1646
|
|
|
1649
1647
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/link.js
|
|
1650
1648
|
var require_link = __commonJS({
|
|
1651
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/link.js"(
|
|
1649
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/link.js"(exports2, module2) {
|
|
1652
1650
|
"use strict";
|
|
1653
1651
|
var u = require_universalify().fromPromise;
|
|
1654
|
-
var path =
|
|
1652
|
+
var path = require("path");
|
|
1655
1653
|
var fs = require_fs();
|
|
1656
1654
|
var mkdir = require_mkdirs();
|
|
1657
1655
|
var { pathExists } = require_path_exists();
|
|
@@ -1699,7 +1697,7 @@ var require_link = __commonJS({
|
|
|
1699
1697
|
mkdir.mkdirsSync(dir);
|
|
1700
1698
|
return fs.linkSync(srcpath, dstpath);
|
|
1701
1699
|
}
|
|
1702
|
-
|
|
1700
|
+
module2.exports = {
|
|
1703
1701
|
createLink: u(createLink),
|
|
1704
1702
|
createLinkSync
|
|
1705
1703
|
};
|
|
@@ -1708,9 +1706,9 @@ var require_link = __commonJS({
|
|
|
1708
1706
|
|
|
1709
1707
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-paths.js
|
|
1710
1708
|
var require_symlink_paths = __commonJS({
|
|
1711
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-paths.js"(
|
|
1709
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-paths.js"(exports2, module2) {
|
|
1712
1710
|
"use strict";
|
|
1713
|
-
var path =
|
|
1711
|
+
var path = require("path");
|
|
1714
1712
|
var fs = require_fs();
|
|
1715
1713
|
var { pathExists } = require_path_exists();
|
|
1716
1714
|
var u = require_universalify().fromPromise;
|
|
@@ -1774,7 +1772,7 @@ var require_symlink_paths = __commonJS({
|
|
|
1774
1772
|
toDst: path.relative(dstdir, srcpath)
|
|
1775
1773
|
};
|
|
1776
1774
|
}
|
|
1777
|
-
|
|
1775
|
+
module2.exports = {
|
|
1778
1776
|
symlinkPaths: u(symlinkPaths),
|
|
1779
1777
|
symlinkPathsSync
|
|
1780
1778
|
};
|
|
@@ -1783,7 +1781,7 @@ var require_symlink_paths = __commonJS({
|
|
|
1783
1781
|
|
|
1784
1782
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-type.js
|
|
1785
1783
|
var require_symlink_type = __commonJS({
|
|
1786
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-type.js"(
|
|
1784
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink-type.js"(exports2, module2) {
|
|
1787
1785
|
"use strict";
|
|
1788
1786
|
var fs = require_fs();
|
|
1789
1787
|
var u = require_universalify().fromPromise;
|
|
@@ -1809,7 +1807,7 @@ var require_symlink_type = __commonJS({
|
|
|
1809
1807
|
}
|
|
1810
1808
|
return stats && stats.isDirectory() ? "dir" : "file";
|
|
1811
1809
|
}
|
|
1812
|
-
|
|
1810
|
+
module2.exports = {
|
|
1813
1811
|
symlinkType: u(symlinkType),
|
|
1814
1812
|
symlinkTypeSync
|
|
1815
1813
|
};
|
|
@@ -1818,10 +1816,10 @@ var require_symlink_type = __commonJS({
|
|
|
1818
1816
|
|
|
1819
1817
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink.js
|
|
1820
1818
|
var require_symlink = __commonJS({
|
|
1821
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink.js"(
|
|
1819
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/symlink.js"(exports2, module2) {
|
|
1822
1820
|
"use strict";
|
|
1823
1821
|
var u = require_universalify().fromPromise;
|
|
1824
|
-
var path =
|
|
1822
|
+
var path = require("path");
|
|
1825
1823
|
var fs = require_fs();
|
|
1826
1824
|
var { mkdirs, mkdirsSync } = require_mkdirs();
|
|
1827
1825
|
var { symlinkPaths, symlinkPathsSync } = require_symlink_paths();
|
|
@@ -1873,7 +1871,7 @@ var require_symlink = __commonJS({
|
|
|
1873
1871
|
mkdirsSync(dir);
|
|
1874
1872
|
return fs.symlinkSync(srcpath, dstpath, type);
|
|
1875
1873
|
}
|
|
1876
|
-
|
|
1874
|
+
module2.exports = {
|
|
1877
1875
|
createSymlink: u(createSymlink),
|
|
1878
1876
|
createSymlinkSync
|
|
1879
1877
|
};
|
|
@@ -1882,12 +1880,12 @@ var require_symlink = __commonJS({
|
|
|
1882
1880
|
|
|
1883
1881
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/index.js
|
|
1884
1882
|
var require_ensure = __commonJS({
|
|
1885
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/index.js"(
|
|
1883
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/ensure/index.js"(exports2, module2) {
|
|
1886
1884
|
"use strict";
|
|
1887
1885
|
var { createFile, createFileSync } = require_file();
|
|
1888
1886
|
var { createLink, createLinkSync } = require_link();
|
|
1889
1887
|
var { createSymlink, createSymlinkSync } = require_symlink();
|
|
1890
|
-
|
|
1888
|
+
module2.exports = {
|
|
1891
1889
|
// file
|
|
1892
1890
|
createFile,
|
|
1893
1891
|
createFileSync,
|
|
@@ -1909,7 +1907,7 @@ var require_ensure = __commonJS({
|
|
|
1909
1907
|
|
|
1910
1908
|
// node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
|
|
1911
1909
|
var require_utils2 = __commonJS({
|
|
1912
|
-
"node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(
|
|
1910
|
+
"node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports2, module2) {
|
|
1913
1911
|
function stringify(obj, { EOL = "\n", finalEOL = true, replacer = null, spaces } = {}) {
|
|
1914
1912
|
const EOF = finalEOL ? EOL : "";
|
|
1915
1913
|
const str = JSON.stringify(obj, replacer, spaces);
|
|
@@ -1920,18 +1918,18 @@ var require_utils2 = __commonJS({
|
|
|
1920
1918
|
content = content.toString("utf8");
|
|
1921
1919
|
return content.replace(/^\uFEFF/, "");
|
|
1922
1920
|
}
|
|
1923
|
-
|
|
1921
|
+
module2.exports = { stringify, stripBom };
|
|
1924
1922
|
}
|
|
1925
1923
|
});
|
|
1926
1924
|
|
|
1927
1925
|
// node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/index.js
|
|
1928
1926
|
var require_jsonfile = __commonJS({
|
|
1929
|
-
"node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/index.js"(
|
|
1927
|
+
"node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/index.js"(exports2, module2) {
|
|
1930
1928
|
var _fs;
|
|
1931
1929
|
try {
|
|
1932
1930
|
_fs = require_graceful_fs();
|
|
1933
1931
|
} catch (_) {
|
|
1934
|
-
_fs =
|
|
1932
|
+
_fs = require("fs");
|
|
1935
1933
|
}
|
|
1936
1934
|
var universalify = require_universalify();
|
|
1937
1935
|
var { stringify, stripBom } = require_utils2();
|
|
@@ -1993,16 +1991,16 @@ var require_jsonfile = __commonJS({
|
|
|
1993
1991
|
writeFile,
|
|
1994
1992
|
writeFileSync
|
|
1995
1993
|
};
|
|
1996
|
-
|
|
1994
|
+
module2.exports = jsonfile;
|
|
1997
1995
|
}
|
|
1998
1996
|
});
|
|
1999
1997
|
|
|
2000
1998
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/jsonfile.js
|
|
2001
1999
|
var require_jsonfile2 = __commonJS({
|
|
2002
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/jsonfile.js"(
|
|
2000
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/jsonfile.js"(exports2, module2) {
|
|
2003
2001
|
"use strict";
|
|
2004
2002
|
var jsonFile = require_jsonfile();
|
|
2005
|
-
|
|
2003
|
+
module2.exports = {
|
|
2006
2004
|
// jsonfile exports
|
|
2007
2005
|
readJson: jsonFile.readFile,
|
|
2008
2006
|
readJsonSync: jsonFile.readFileSync,
|
|
@@ -2014,11 +2012,11 @@ var require_jsonfile2 = __commonJS({
|
|
|
2014
2012
|
|
|
2015
2013
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/output-file/index.js
|
|
2016
2014
|
var require_output_file = __commonJS({
|
|
2017
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/output-file/index.js"(
|
|
2015
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/output-file/index.js"(exports2, module2) {
|
|
2018
2016
|
"use strict";
|
|
2019
2017
|
var u = require_universalify().fromPromise;
|
|
2020
2018
|
var fs = require_fs();
|
|
2021
|
-
var path =
|
|
2019
|
+
var path = require("path");
|
|
2022
2020
|
var mkdir = require_mkdirs();
|
|
2023
2021
|
var pathExists = require_path_exists().pathExists;
|
|
2024
2022
|
async function outputFile(file, data, encoding = "utf-8") {
|
|
@@ -2035,7 +2033,7 @@ var require_output_file = __commonJS({
|
|
|
2035
2033
|
}
|
|
2036
2034
|
fs.writeFileSync(file, ...args);
|
|
2037
2035
|
}
|
|
2038
|
-
|
|
2036
|
+
module2.exports = {
|
|
2039
2037
|
outputFile: u(outputFile),
|
|
2040
2038
|
outputFileSync
|
|
2041
2039
|
};
|
|
@@ -2044,7 +2042,7 @@ var require_output_file = __commonJS({
|
|
|
2044
2042
|
|
|
2045
2043
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json.js
|
|
2046
2044
|
var require_output_json = __commonJS({
|
|
2047
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json.js"(
|
|
2045
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json.js"(exports2, module2) {
|
|
2048
2046
|
"use strict";
|
|
2049
2047
|
var { stringify } = require_utils2();
|
|
2050
2048
|
var { outputFile } = require_output_file();
|
|
@@ -2052,13 +2050,13 @@ var require_output_json = __commonJS({
|
|
|
2052
2050
|
const str = stringify(data, options);
|
|
2053
2051
|
await outputFile(file, str, options);
|
|
2054
2052
|
}
|
|
2055
|
-
|
|
2053
|
+
module2.exports = outputJson;
|
|
2056
2054
|
}
|
|
2057
2055
|
});
|
|
2058
2056
|
|
|
2059
2057
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json-sync.js
|
|
2060
2058
|
var require_output_json_sync = __commonJS({
|
|
2061
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json-sync.js"(
|
|
2059
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/output-json-sync.js"(exports2, module2) {
|
|
2062
2060
|
"use strict";
|
|
2063
2061
|
var { stringify } = require_utils2();
|
|
2064
2062
|
var { outputFileSync } = require_output_file();
|
|
@@ -2066,13 +2064,13 @@ var require_output_json_sync = __commonJS({
|
|
|
2066
2064
|
const str = stringify(data, options);
|
|
2067
2065
|
outputFileSync(file, str, options);
|
|
2068
2066
|
}
|
|
2069
|
-
|
|
2067
|
+
module2.exports = outputJsonSync;
|
|
2070
2068
|
}
|
|
2071
2069
|
});
|
|
2072
2070
|
|
|
2073
2071
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/index.js
|
|
2074
2072
|
var require_json = __commonJS({
|
|
2075
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/index.js"(
|
|
2073
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/json/index.js"(exports2, module2) {
|
|
2076
2074
|
"use strict";
|
|
2077
2075
|
var u = require_universalify().fromPromise;
|
|
2078
2076
|
var jsonFile = require_jsonfile2();
|
|
@@ -2084,16 +2082,16 @@ var require_json = __commonJS({
|
|
|
2084
2082
|
jsonFile.writeJSONSync = jsonFile.writeJsonSync;
|
|
2085
2083
|
jsonFile.readJSON = jsonFile.readJson;
|
|
2086
2084
|
jsonFile.readJSONSync = jsonFile.readJsonSync;
|
|
2087
|
-
|
|
2085
|
+
module2.exports = jsonFile;
|
|
2088
2086
|
}
|
|
2089
2087
|
});
|
|
2090
2088
|
|
|
2091
2089
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move.js
|
|
2092
2090
|
var require_move = __commonJS({
|
|
2093
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move.js"(
|
|
2091
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move.js"(exports2, module2) {
|
|
2094
2092
|
"use strict";
|
|
2095
2093
|
var fs = require_fs();
|
|
2096
|
-
var path =
|
|
2094
|
+
var path = require("path");
|
|
2097
2095
|
var { copy } = require_copy2();
|
|
2098
2096
|
var { remove } = require_remove();
|
|
2099
2097
|
var { mkdirp } = require_mkdirs();
|
|
@@ -2136,16 +2134,16 @@ var require_move = __commonJS({
|
|
|
2136
2134
|
await copy(src, dest, opts);
|
|
2137
2135
|
return remove(src);
|
|
2138
2136
|
}
|
|
2139
|
-
|
|
2137
|
+
module2.exports = move;
|
|
2140
2138
|
}
|
|
2141
2139
|
});
|
|
2142
2140
|
|
|
2143
2141
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move-sync.js
|
|
2144
2142
|
var require_move_sync = __commonJS({
|
|
2145
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move-sync.js"(
|
|
2143
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/move-sync.js"(exports2, module2) {
|
|
2146
2144
|
"use strict";
|
|
2147
2145
|
var fs = require_graceful_fs();
|
|
2148
|
-
var path =
|
|
2146
|
+
var path = require("path");
|
|
2149
2147
|
var copySync = require_copy2().copySync;
|
|
2150
2148
|
var removeSync = require_remove().removeSync;
|
|
2151
2149
|
var mkdirpSync = require_mkdirs().mkdirpSync;
|
|
@@ -2193,16 +2191,16 @@ var require_move_sync = __commonJS({
|
|
|
2193
2191
|
copySync(src, dest, opts);
|
|
2194
2192
|
return removeSync(src);
|
|
2195
2193
|
}
|
|
2196
|
-
|
|
2194
|
+
module2.exports = moveSync;
|
|
2197
2195
|
}
|
|
2198
2196
|
});
|
|
2199
2197
|
|
|
2200
2198
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/index.js
|
|
2201
2199
|
var require_move2 = __commonJS({
|
|
2202
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/index.js"(
|
|
2200
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/move/index.js"(exports2, module2) {
|
|
2203
2201
|
"use strict";
|
|
2204
2202
|
var u = require_universalify().fromPromise;
|
|
2205
|
-
|
|
2203
|
+
module2.exports = {
|
|
2206
2204
|
move: u(require_move()),
|
|
2207
2205
|
moveSync: require_move_sync()
|
|
2208
2206
|
};
|
|
@@ -2211,9 +2209,9 @@ var require_move2 = __commonJS({
|
|
|
2211
2209
|
|
|
2212
2210
|
// node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/index.js
|
|
2213
2211
|
var require_lib = __commonJS({
|
|
2214
|
-
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/index.js"(
|
|
2212
|
+
"node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra/lib/index.js"(exports2, module2) {
|
|
2215
2213
|
"use strict";
|
|
2216
|
-
|
|
2214
|
+
module2.exports = {
|
|
2217
2215
|
// Export promiseified graceful-fs:
|
|
2218
2216
|
...require_fs(),
|
|
2219
2217
|
// Export extra methods:
|
|
@@ -2232,11 +2230,11 @@ var require_lib = __commonJS({
|
|
|
2232
2230
|
|
|
2233
2231
|
// node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from/index.js
|
|
2234
2232
|
var require_resolve_from = __commonJS({
|
|
2235
|
-
"node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from/index.js"(
|
|
2233
|
+
"node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from/index.js"(exports2, module2) {
|
|
2236
2234
|
"use strict";
|
|
2237
|
-
var path =
|
|
2238
|
-
var Module =
|
|
2239
|
-
var fs =
|
|
2235
|
+
var path = require("path");
|
|
2236
|
+
var Module = require("module");
|
|
2237
|
+
var fs = require("fs");
|
|
2240
2238
|
var resolveFrom = (fromDir, moduleId, silent) => {
|
|
2241
2239
|
if (typeof fromDir !== "string") {
|
|
2242
2240
|
throw new TypeError(`Expected \`fromDir\` to be of type \`string\`, got \`${typeof fromDir}\``);
|
|
@@ -2270,14 +2268,14 @@ var require_resolve_from = __commonJS({
|
|
|
2270
2268
|
}
|
|
2271
2269
|
return resolveFileName();
|
|
2272
2270
|
};
|
|
2273
|
-
|
|
2274
|
-
|
|
2271
|
+
module2.exports = (fromDir, moduleId) => resolveFrom(fromDir, moduleId);
|
|
2272
|
+
module2.exports.silent = (fromDir, moduleId) => resolveFrom(fromDir, moduleId, true);
|
|
2275
2273
|
}
|
|
2276
2274
|
});
|
|
2277
2275
|
|
|
2278
2276
|
// node_modules/.pnpm/callsites@3.1.0/node_modules/callsites/index.js
|
|
2279
2277
|
var require_callsites = __commonJS({
|
|
2280
|
-
"node_modules/.pnpm/callsites@3.1.0/node_modules/callsites/index.js"(
|
|
2278
|
+
"node_modules/.pnpm/callsites@3.1.0/node_modules/callsites/index.js"(exports2, module2) {
|
|
2281
2279
|
"use strict";
|
|
2282
2280
|
var callsites = () => {
|
|
2283
2281
|
const _prepareStackTrace = Error.prepareStackTrace;
|
|
@@ -2286,17 +2284,17 @@ var require_callsites = __commonJS({
|
|
|
2286
2284
|
Error.prepareStackTrace = _prepareStackTrace;
|
|
2287
2285
|
return stack;
|
|
2288
2286
|
};
|
|
2289
|
-
|
|
2290
|
-
|
|
2287
|
+
module2.exports = callsites;
|
|
2288
|
+
module2.exports.default = callsites;
|
|
2291
2289
|
}
|
|
2292
2290
|
});
|
|
2293
2291
|
|
|
2294
2292
|
// node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module/index.js
|
|
2295
2293
|
var require_parent_module = __commonJS({
|
|
2296
|
-
"node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module/index.js"(
|
|
2294
|
+
"node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module/index.js"(exports2, module2) {
|
|
2297
2295
|
"use strict";
|
|
2298
2296
|
var callsites = require_callsites();
|
|
2299
|
-
|
|
2297
|
+
module2.exports = (filepath) => {
|
|
2300
2298
|
const stacks = callsites();
|
|
2301
2299
|
if (!filepath) {
|
|
2302
2300
|
return stacks[2].getFileName();
|
|
@@ -2325,19 +2323,19 @@ var require_parent_module = __commonJS({
|
|
|
2325
2323
|
|
|
2326
2324
|
// node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh/index.js
|
|
2327
2325
|
var require_import_fresh = __commonJS({
|
|
2328
|
-
"node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh/index.js"(
|
|
2326
|
+
"node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh/index.js"(exports2, module2) {
|
|
2329
2327
|
"use strict";
|
|
2330
|
-
var path =
|
|
2328
|
+
var path = require("path");
|
|
2331
2329
|
var resolveFrom = require_resolve_from();
|
|
2332
2330
|
var parentModule = require_parent_module();
|
|
2333
|
-
|
|
2331
|
+
module2.exports = (moduleId) => {
|
|
2334
2332
|
if (typeof moduleId !== "string") {
|
|
2335
2333
|
throw new TypeError("Expected a string");
|
|
2336
2334
|
}
|
|
2337
2335
|
const parentPath = parentModule(__filename);
|
|
2338
2336
|
const cwd = parentPath ? path.dirname(parentPath) : __dirname;
|
|
2339
2337
|
const filePath = resolveFrom(cwd, moduleId);
|
|
2340
|
-
const oldModule =
|
|
2338
|
+
const oldModule = require.cache[filePath];
|
|
2341
2339
|
if (oldModule && oldModule.parent) {
|
|
2342
2340
|
let i = oldModule.parent.children.length;
|
|
2343
2341
|
while (i--) {
|
|
@@ -2346,18 +2344,18 @@ var require_import_fresh = __commonJS({
|
|
|
2346
2344
|
}
|
|
2347
2345
|
}
|
|
2348
2346
|
}
|
|
2349
|
-
delete
|
|
2350
|
-
const parent =
|
|
2351
|
-
return parent === void 0 ?
|
|
2347
|
+
delete require.cache[filePath];
|
|
2348
|
+
const parent = require.cache[parentPath];
|
|
2349
|
+
return parent === void 0 ? require(filePath) : parent.require(filePath);
|
|
2352
2350
|
};
|
|
2353
2351
|
}
|
|
2354
2352
|
});
|
|
2355
2353
|
|
|
2356
2354
|
// node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish/index.js
|
|
2357
2355
|
var require_is_arrayish = __commonJS({
|
|
2358
|
-
"node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish/index.js"(
|
|
2356
|
+
"node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish/index.js"(exports2, module2) {
|
|
2359
2357
|
"use strict";
|
|
2360
|
-
|
|
2358
|
+
module2.exports = function isArrayish(obj) {
|
|
2361
2359
|
if (!obj) {
|
|
2362
2360
|
return false;
|
|
2363
2361
|
}
|
|
@@ -2368,9 +2366,9 @@ var require_is_arrayish = __commonJS({
|
|
|
2368
2366
|
|
|
2369
2367
|
// node_modules/.pnpm/error-ex@1.3.2/node_modules/error-ex/index.js
|
|
2370
2368
|
var require_error_ex = __commonJS({
|
|
2371
|
-
"node_modules/.pnpm/error-ex@1.3.2/node_modules/error-ex/index.js"(
|
|
2369
|
+
"node_modules/.pnpm/error-ex@1.3.2/node_modules/error-ex/index.js"(exports2, module2) {
|
|
2372
2370
|
"use strict";
|
|
2373
|
-
var util2 =
|
|
2371
|
+
var util2 = require("util");
|
|
2374
2372
|
var isArrayish = require_is_arrayish();
|
|
2375
2373
|
var errorEx = function errorEx2(name, properties) {
|
|
2376
2374
|
if (!name || name.constructor !== String) {
|
|
@@ -2472,13 +2470,13 @@ var require_error_ex = __commonJS({
|
|
|
2472
2470
|
}
|
|
2473
2471
|
};
|
|
2474
2472
|
};
|
|
2475
|
-
|
|
2473
|
+
module2.exports = errorEx;
|
|
2476
2474
|
}
|
|
2477
2475
|
});
|
|
2478
2476
|
|
|
2479
2477
|
// node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors/index.js
|
|
2480
2478
|
var require_json_parse_even_better_errors = __commonJS({
|
|
2481
|
-
"node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors/index.js"(
|
|
2479
|
+
"node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors/index.js"(exports2, module2) {
|
|
2482
2480
|
"use strict";
|
|
2483
2481
|
var hexify = (char) => {
|
|
2484
2482
|
const h = char.charCodeAt(0).toString(16).toUpperCase();
|
|
@@ -2558,7 +2556,7 @@ var require_json_parse_even_better_errors = __commonJS({
|
|
|
2558
2556
|
}
|
|
2559
2557
|
};
|
|
2560
2558
|
var stripBOM = (txt) => String(txt).replace(/^\uFEFF/, "");
|
|
2561
|
-
|
|
2559
|
+
module2.exports = parseJson;
|
|
2562
2560
|
parseJson.JSONParseError = JSONParseError;
|
|
2563
2561
|
parseJson.noExceptions = (txt, reviver) => {
|
|
2564
2562
|
try {
|
|
@@ -2571,10 +2569,10 @@ var require_json_parse_even_better_errors = __commonJS({
|
|
|
2571
2569
|
|
|
2572
2570
|
// node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns/build/index.js
|
|
2573
2571
|
var require_build = __commonJS({
|
|
2574
|
-
"node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns/build/index.js"(
|
|
2572
|
+
"node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns/build/index.js"(exports2) {
|
|
2575
2573
|
"use strict";
|
|
2576
|
-
|
|
2577
|
-
|
|
2574
|
+
exports2.__esModule = true;
|
|
2575
|
+
exports2.LinesAndColumns = void 0;
|
|
2578
2576
|
var LF = "\n";
|
|
2579
2577
|
var CR = "\r";
|
|
2580
2578
|
var LinesAndColumns = (
|
|
@@ -2633,19 +2631,19 @@ var require_build = __commonJS({
|
|
|
2633
2631
|
return LinesAndColumns2;
|
|
2634
2632
|
}()
|
|
2635
2633
|
);
|
|
2636
|
-
|
|
2637
|
-
|
|
2634
|
+
exports2.LinesAndColumns = LinesAndColumns;
|
|
2635
|
+
exports2["default"] = LinesAndColumns;
|
|
2638
2636
|
}
|
|
2639
2637
|
});
|
|
2640
2638
|
|
|
2641
2639
|
// node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens/index.js
|
|
2642
2640
|
var require_js_tokens = __commonJS({
|
|
2643
|
-
"node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens/index.js"(
|
|
2644
|
-
Object.defineProperty(
|
|
2641
|
+
"node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens/index.js"(exports2) {
|
|
2642
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
2645
2643
|
value: true
|
|
2646
2644
|
});
|
|
2647
|
-
|
|
2648
|
-
|
|
2645
|
+
exports2.default = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g;
|
|
2646
|
+
exports2.matchToToken = function(match) {
|
|
2649
2647
|
var token = { type: "invalid", value: match[0], closed: void 0 };
|
|
2650
2648
|
if (match[1])
|
|
2651
2649
|
token.type = "string", token.closed = !!(match[3] || match[4]);
|
|
@@ -2670,14 +2668,14 @@ var require_js_tokens = __commonJS({
|
|
|
2670
2668
|
|
|
2671
2669
|
// node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/identifier.js
|
|
2672
2670
|
var require_identifier = __commonJS({
|
|
2673
|
-
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/identifier.js"(
|
|
2671
|
+
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/identifier.js"(exports2) {
|
|
2674
2672
|
"use strict";
|
|
2675
|
-
Object.defineProperty(
|
|
2673
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
2676
2674
|
value: true
|
|
2677
2675
|
});
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2676
|
+
exports2.isIdentifierChar = isIdentifierChar;
|
|
2677
|
+
exports2.isIdentifierName = isIdentifierName;
|
|
2678
|
+
exports2.isIdentifierStart = isIdentifierStart;
|
|
2681
2679
|
var nonASCIIidentifierStartChars = "\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC";
|
|
2682
2680
|
var nonASCIIidentifierChars = "\u200C\u200D\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19D0-\u19DA\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\u30FB\uA620-\uA629\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F1\uA8FF-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uA9E5\uA9F0-\uA9F9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F\uFF65";
|
|
2683
2681
|
var nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]");
|
|
@@ -2755,16 +2753,16 @@ var require_identifier = __commonJS({
|
|
|
2755
2753
|
|
|
2756
2754
|
// node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/keyword.js
|
|
2757
2755
|
var require_keyword = __commonJS({
|
|
2758
|
-
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/keyword.js"(
|
|
2756
|
+
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/keyword.js"(exports2) {
|
|
2759
2757
|
"use strict";
|
|
2760
|
-
Object.defineProperty(
|
|
2758
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
2761
2759
|
value: true
|
|
2762
2760
|
});
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2761
|
+
exports2.isKeyword = isKeyword;
|
|
2762
|
+
exports2.isReservedWord = isReservedWord;
|
|
2763
|
+
exports2.isStrictBindOnlyReservedWord = isStrictBindOnlyReservedWord;
|
|
2764
|
+
exports2.isStrictBindReservedWord = isStrictBindReservedWord;
|
|
2765
|
+
exports2.isStrictReservedWord = isStrictReservedWord;
|
|
2768
2766
|
var reservedWords = {
|
|
2769
2767
|
keyword: ["break", "case", "catch", "continue", "debugger", "default", "do", "else", "finally", "for", "function", "if", "return", "switch", "throw", "try", "var", "const", "while", "with", "new", "this", "super", "class", "extends", "export", "import", "null", "true", "false", "in", "instanceof", "typeof", "void", "delete"],
|
|
2770
2768
|
strict: ["implements", "interface", "let", "package", "private", "protected", "public", "static", "yield"],
|
|
@@ -2793,54 +2791,54 @@ var require_keyword = __commonJS({
|
|
|
2793
2791
|
|
|
2794
2792
|
// node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/index.js
|
|
2795
2793
|
var require_lib2 = __commonJS({
|
|
2796
|
-
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/index.js"(
|
|
2794
|
+
"node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier/lib/index.js"(exports2) {
|
|
2797
2795
|
"use strict";
|
|
2798
|
-
Object.defineProperty(
|
|
2796
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
2799
2797
|
value: true
|
|
2800
2798
|
});
|
|
2801
|
-
Object.defineProperty(
|
|
2799
|
+
Object.defineProperty(exports2, "isIdentifierChar", {
|
|
2802
2800
|
enumerable: true,
|
|
2803
2801
|
get: function() {
|
|
2804
2802
|
return _identifier.isIdentifierChar;
|
|
2805
2803
|
}
|
|
2806
2804
|
});
|
|
2807
|
-
Object.defineProperty(
|
|
2805
|
+
Object.defineProperty(exports2, "isIdentifierName", {
|
|
2808
2806
|
enumerable: true,
|
|
2809
2807
|
get: function() {
|
|
2810
2808
|
return _identifier.isIdentifierName;
|
|
2811
2809
|
}
|
|
2812
2810
|
});
|
|
2813
|
-
Object.defineProperty(
|
|
2811
|
+
Object.defineProperty(exports2, "isIdentifierStart", {
|
|
2814
2812
|
enumerable: true,
|
|
2815
2813
|
get: function() {
|
|
2816
2814
|
return _identifier.isIdentifierStart;
|
|
2817
2815
|
}
|
|
2818
2816
|
});
|
|
2819
|
-
Object.defineProperty(
|
|
2817
|
+
Object.defineProperty(exports2, "isKeyword", {
|
|
2820
2818
|
enumerable: true,
|
|
2821
2819
|
get: function() {
|
|
2822
2820
|
return _keyword.isKeyword;
|
|
2823
2821
|
}
|
|
2824
2822
|
});
|
|
2825
|
-
Object.defineProperty(
|
|
2823
|
+
Object.defineProperty(exports2, "isReservedWord", {
|
|
2826
2824
|
enumerable: true,
|
|
2827
2825
|
get: function() {
|
|
2828
2826
|
return _keyword.isReservedWord;
|
|
2829
2827
|
}
|
|
2830
2828
|
});
|
|
2831
|
-
Object.defineProperty(
|
|
2829
|
+
Object.defineProperty(exports2, "isStrictBindOnlyReservedWord", {
|
|
2832
2830
|
enumerable: true,
|
|
2833
2831
|
get: function() {
|
|
2834
2832
|
return _keyword.isStrictBindOnlyReservedWord;
|
|
2835
2833
|
}
|
|
2836
2834
|
});
|
|
2837
|
-
Object.defineProperty(
|
|
2835
|
+
Object.defineProperty(exports2, "isStrictBindReservedWord", {
|
|
2838
2836
|
enumerable: true,
|
|
2839
2837
|
get: function() {
|
|
2840
2838
|
return _keyword.isStrictBindReservedWord;
|
|
2841
2839
|
}
|
|
2842
2840
|
});
|
|
2843
|
-
Object.defineProperty(
|
|
2841
|
+
Object.defineProperty(exports2, "isStrictReservedWord", {
|
|
2844
2842
|
enumerable: true,
|
|
2845
2843
|
get: function() {
|
|
2846
2844
|
return _keyword.isStrictReservedWord;
|
|
@@ -2853,9 +2851,9 @@ var require_lib2 = __commonJS({
|
|
|
2853
2851
|
|
|
2854
2852
|
// node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js
|
|
2855
2853
|
var require_color_name = __commonJS({
|
|
2856
|
-
"node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js"(
|
|
2854
|
+
"node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js"(exports2, module2) {
|
|
2857
2855
|
"use strict";
|
|
2858
|
-
|
|
2856
|
+
module2.exports = {
|
|
2859
2857
|
"aliceblue": [240, 248, 255],
|
|
2860
2858
|
"antiquewhite": [250, 235, 215],
|
|
2861
2859
|
"aqua": [0, 255, 255],
|
|
@@ -3010,7 +3008,7 @@ var require_color_name = __commonJS({
|
|
|
3010
3008
|
|
|
3011
3009
|
// node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/conversions.js
|
|
3012
3010
|
var require_conversions = __commonJS({
|
|
3013
|
-
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/conversions.js"(
|
|
3011
|
+
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/conversions.js"(exports2, module2) {
|
|
3014
3012
|
var cssKeywords = require_color_name();
|
|
3015
3013
|
var reverseKeywords = {};
|
|
3016
3014
|
for (const key of Object.keys(cssKeywords)) {
|
|
@@ -3033,7 +3031,7 @@ var require_conversions = __commonJS({
|
|
|
3033
3031
|
apple: { channels: 3, labels: ["r16", "g16", "b16"] },
|
|
3034
3032
|
gray: { channels: 1, labels: ["gray"] }
|
|
3035
3033
|
};
|
|
3036
|
-
|
|
3034
|
+
module2.exports = convert;
|
|
3037
3035
|
for (const model of Object.keys(convert)) {
|
|
3038
3036
|
if (!("channels" in convert[model])) {
|
|
3039
3037
|
throw new Error("missing channels property: " + model);
|
|
@@ -3681,7 +3679,7 @@ var require_conversions = __commonJS({
|
|
|
3681
3679
|
|
|
3682
3680
|
// node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/route.js
|
|
3683
3681
|
var require_route = __commonJS({
|
|
3684
|
-
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/route.js"(
|
|
3682
|
+
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/route.js"(exports2, module2) {
|
|
3685
3683
|
var conversions = require_conversions();
|
|
3686
3684
|
function buildGraph() {
|
|
3687
3685
|
const graph = {};
|
|
@@ -3732,7 +3730,7 @@ var require_route = __commonJS({
|
|
|
3732
3730
|
fn.conversion = path;
|
|
3733
3731
|
return fn;
|
|
3734
3732
|
}
|
|
3735
|
-
|
|
3733
|
+
module2.exports = function(fromModel) {
|
|
3736
3734
|
const graph = deriveBFS(fromModel);
|
|
3737
3735
|
const conversion = {};
|
|
3738
3736
|
const models = Object.keys(graph);
|
|
@@ -3751,7 +3749,7 @@ var require_route = __commonJS({
|
|
|
3751
3749
|
|
|
3752
3750
|
// node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js
|
|
3753
3751
|
var require_color_convert = __commonJS({
|
|
3754
|
-
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js"(
|
|
3752
|
+
"node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js"(exports2, module2) {
|
|
3755
3753
|
var conversions = require_conversions();
|
|
3756
3754
|
var route = require_route();
|
|
3757
3755
|
var convert = {};
|
|
@@ -3806,13 +3804,13 @@ var require_color_convert = __commonJS({
|
|
|
3806
3804
|
convert[fromModel][toModel].raw = wrapRaw(fn);
|
|
3807
3805
|
});
|
|
3808
3806
|
});
|
|
3809
|
-
|
|
3807
|
+
module2.exports = convert;
|
|
3810
3808
|
}
|
|
3811
3809
|
});
|
|
3812
3810
|
|
|
3813
3811
|
// node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.js
|
|
3814
3812
|
var require_ansi_styles = __commonJS({
|
|
3815
|
-
"node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.js"(
|
|
3813
|
+
"node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.js"(exports2, module2) {
|
|
3816
3814
|
"use strict";
|
|
3817
3815
|
var wrapAnsi16 = (fn, offset) => (...args) => {
|
|
3818
3816
|
const code = fn(...args);
|
|
@@ -3945,7 +3943,7 @@ var require_ansi_styles = __commonJS({
|
|
|
3945
3943
|
setLazyProperty(styles.bgColor, "ansi16m", () => makeDynamicStyles(wrapAnsi16m, "rgb", rgb2rgb, true));
|
|
3946
3944
|
return styles;
|
|
3947
3945
|
}
|
|
3948
|
-
Object.defineProperty(
|
|
3946
|
+
Object.defineProperty(module2, "exports", {
|
|
3949
3947
|
enumerable: true,
|
|
3950
3948
|
get: assembleStyles
|
|
3951
3949
|
});
|
|
@@ -3954,9 +3952,9 @@ var require_ansi_styles = __commonJS({
|
|
|
3954
3952
|
|
|
3955
3953
|
// node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
3956
3954
|
var require_has_flag = __commonJS({
|
|
3957
|
-
"node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(
|
|
3955
|
+
"node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports2, module2) {
|
|
3958
3956
|
"use strict";
|
|
3959
|
-
|
|
3957
|
+
module2.exports = (flag, argv = process.argv) => {
|
|
3960
3958
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
3961
3959
|
const position = argv.indexOf(prefix + flag);
|
|
3962
3960
|
const terminatorPosition = argv.indexOf("--");
|
|
@@ -3967,10 +3965,10 @@ var require_has_flag = __commonJS({
|
|
|
3967
3965
|
|
|
3968
3966
|
// node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
3969
3967
|
var require_supports_color = __commonJS({
|
|
3970
|
-
"node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(
|
|
3968
|
+
"node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports2, module2) {
|
|
3971
3969
|
"use strict";
|
|
3972
|
-
var os =
|
|
3973
|
-
var tty =
|
|
3970
|
+
var os = require("os");
|
|
3971
|
+
var tty = require("tty");
|
|
3974
3972
|
var hasFlag = require_has_flag();
|
|
3975
3973
|
var { env } = process;
|
|
3976
3974
|
var forceColor;
|
|
@@ -4059,7 +4057,7 @@ var require_supports_color = __commonJS({
|
|
|
4059
4057
|
const level = supportsColor(stream, stream && stream.isTTY);
|
|
4060
4058
|
return translateLevel(level);
|
|
4061
4059
|
}
|
|
4062
|
-
|
|
4060
|
+
module2.exports = {
|
|
4063
4061
|
supportsColor: getSupportLevel,
|
|
4064
4062
|
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
4065
4063
|
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
@@ -4069,7 +4067,7 @@ var require_supports_color = __commonJS({
|
|
|
4069
4067
|
|
|
4070
4068
|
// node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js
|
|
4071
4069
|
var require_util = __commonJS({
|
|
4072
|
-
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js"(
|
|
4070
|
+
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js"(exports2, module2) {
|
|
4073
4071
|
"use strict";
|
|
4074
4072
|
var stringReplaceAll = (string, substring, replacer) => {
|
|
4075
4073
|
let index = string.indexOf(substring);
|
|
@@ -4099,7 +4097,7 @@ var require_util = __commonJS({
|
|
|
4099
4097
|
returnValue += string.substr(endIndex);
|
|
4100
4098
|
return returnValue;
|
|
4101
4099
|
};
|
|
4102
|
-
|
|
4100
|
+
module2.exports = {
|
|
4103
4101
|
stringReplaceAll,
|
|
4104
4102
|
stringEncaseCRLFWithFirstIndex
|
|
4105
4103
|
};
|
|
@@ -4108,7 +4106,7 @@ var require_util = __commonJS({
|
|
|
4108
4106
|
|
|
4109
4107
|
// node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js
|
|
4110
4108
|
var require_templates = __commonJS({
|
|
4111
|
-
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js"(
|
|
4109
|
+
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js"(exports2, module2) {
|
|
4112
4110
|
"use strict";
|
|
4113
4111
|
var TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
|
|
4114
4112
|
var STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
|
|
@@ -4187,7 +4185,7 @@ var require_templates = __commonJS({
|
|
|
4187
4185
|
}
|
|
4188
4186
|
return current;
|
|
4189
4187
|
}
|
|
4190
|
-
|
|
4188
|
+
module2.exports = (chalk2, temporary) => {
|
|
4191
4189
|
const styles = [];
|
|
4192
4190
|
const chunks = [];
|
|
4193
4191
|
let chunk = [];
|
|
@@ -4222,7 +4220,7 @@ var require_templates = __commonJS({
|
|
|
4222
4220
|
|
|
4223
4221
|
// node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js
|
|
4224
4222
|
var require_source = __commonJS({
|
|
4225
|
-
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js"(
|
|
4223
|
+
"node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js"(exports2, module2) {
|
|
4226
4224
|
"use strict";
|
|
4227
4225
|
var ansiStyles = require_ansi_styles();
|
|
4228
4226
|
var { stdout: stdoutColor, stderr: stderrColor } = require_supports_color();
|
|
@@ -4394,19 +4392,19 @@ var require_source = __commonJS({
|
|
|
4394
4392
|
chalk2.supportsColor = stdoutColor;
|
|
4395
4393
|
chalk2.stderr = Chalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
4396
4394
|
chalk2.stderr.supportsColor = stderrColor;
|
|
4397
|
-
|
|
4395
|
+
module2.exports = chalk2;
|
|
4398
4396
|
}
|
|
4399
4397
|
});
|
|
4400
4398
|
|
|
4401
4399
|
// node_modules/.pnpm/@babel+highlight@7.23.4/node_modules/@babel/highlight/lib/index.js
|
|
4402
4400
|
var require_lib3 = __commonJS({
|
|
4403
|
-
"node_modules/.pnpm/@babel+highlight@7.23.4/node_modules/@babel/highlight/lib/index.js"(
|
|
4401
|
+
"node_modules/.pnpm/@babel+highlight@7.23.4/node_modules/@babel/highlight/lib/index.js"(exports2) {
|
|
4404
4402
|
"use strict";
|
|
4405
|
-
Object.defineProperty(
|
|
4403
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
4406
4404
|
value: true
|
|
4407
4405
|
});
|
|
4408
|
-
|
|
4409
|
-
|
|
4406
|
+
exports2.default = highlight;
|
|
4407
|
+
exports2.shouldHighlight = shouldHighlight;
|
|
4410
4408
|
var _jsTokens = require_js_tokens();
|
|
4411
4409
|
var _helperValidatorIdentifier = require_lib2();
|
|
4412
4410
|
var _chalk = _interopRequireWildcard(require_source(), true);
|
|
@@ -4515,7 +4513,7 @@ var require_lib3 = __commonJS({
|
|
|
4515
4513
|
return _chalk.default;
|
|
4516
4514
|
}
|
|
4517
4515
|
{
|
|
4518
|
-
|
|
4516
|
+
exports2.getChalk = (options) => getChalk(options.forceColor);
|
|
4519
4517
|
}
|
|
4520
4518
|
function highlight(code, options = {}) {
|
|
4521
4519
|
if (code !== "" && shouldHighlight(options)) {
|
|
@@ -4530,13 +4528,13 @@ var require_lib3 = __commonJS({
|
|
|
4530
4528
|
|
|
4531
4529
|
// node_modules/.pnpm/@babel+code-frame@7.23.5/node_modules/@babel/code-frame/lib/index.js
|
|
4532
4530
|
var require_lib4 = __commonJS({
|
|
4533
|
-
"node_modules/.pnpm/@babel+code-frame@7.23.5/node_modules/@babel/code-frame/lib/index.js"(
|
|
4531
|
+
"node_modules/.pnpm/@babel+code-frame@7.23.5/node_modules/@babel/code-frame/lib/index.js"(exports2) {
|
|
4534
4532
|
"use strict";
|
|
4535
|
-
Object.defineProperty(
|
|
4533
|
+
Object.defineProperty(exports2, "__esModule", {
|
|
4536
4534
|
value: true
|
|
4537
4535
|
});
|
|
4538
|
-
|
|
4539
|
-
|
|
4536
|
+
exports2.codeFrameColumns = codeFrameColumns;
|
|
4537
|
+
exports2.default = _default;
|
|
4540
4538
|
var _highlight = require_lib3();
|
|
4541
4539
|
var _chalk = _interopRequireWildcard(require_source(), true);
|
|
4542
4540
|
function _getRequireWildcardCache(e) {
|
|
@@ -4713,7 +4711,7 @@ ${frame}`;
|
|
|
4713
4711
|
|
|
4714
4712
|
// node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json/index.js
|
|
4715
4713
|
var require_parse_json = __commonJS({
|
|
4716
|
-
"node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json/index.js"(
|
|
4714
|
+
"node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json/index.js"(exports2, module2) {
|
|
4717
4715
|
"use strict";
|
|
4718
4716
|
var errorEx = require_error_ex();
|
|
4719
4717
|
var fallback = require_json_parse_even_better_errors();
|
|
@@ -4757,13 +4755,13 @@ var require_parse_json = __commonJS({
|
|
|
4757
4755
|
}
|
|
4758
4756
|
};
|
|
4759
4757
|
parseJson.JSONError = JSONError;
|
|
4760
|
-
|
|
4758
|
+
module2.exports = parseJson;
|
|
4761
4759
|
}
|
|
4762
4760
|
});
|
|
4763
4761
|
|
|
4764
4762
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/common.js
|
|
4765
4763
|
var require_common = __commonJS({
|
|
4766
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/common.js"(
|
|
4764
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/common.js"(exports2, module2) {
|
|
4767
4765
|
"use strict";
|
|
4768
4766
|
function isNothing(subject) {
|
|
4769
4767
|
return typeof subject === "undefined" || subject === null;
|
|
@@ -4799,18 +4797,18 @@ var require_common = __commonJS({
|
|
|
4799
4797
|
function isNegativeZero(number) {
|
|
4800
4798
|
return number === 0 && Number.NEGATIVE_INFINITY === 1 / number;
|
|
4801
4799
|
}
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4800
|
+
module2.exports.isNothing = isNothing;
|
|
4801
|
+
module2.exports.isObject = isObject;
|
|
4802
|
+
module2.exports.toArray = toArray;
|
|
4803
|
+
module2.exports.repeat = repeat;
|
|
4804
|
+
module2.exports.isNegativeZero = isNegativeZero;
|
|
4805
|
+
module2.exports.extend = extend;
|
|
4808
4806
|
}
|
|
4809
4807
|
});
|
|
4810
4808
|
|
|
4811
4809
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/exception.js
|
|
4812
4810
|
var require_exception = __commonJS({
|
|
4813
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/exception.js"(
|
|
4811
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/exception.js"(exports2, module2) {
|
|
4814
4812
|
"use strict";
|
|
4815
4813
|
function formatError(exception, compact) {
|
|
4816
4814
|
var where = "", message = exception.reason || "(unknown reason)";
|
|
@@ -4842,13 +4840,13 @@ var require_exception = __commonJS({
|
|
|
4842
4840
|
YAMLException.prototype.toString = function toString(compact) {
|
|
4843
4841
|
return this.name + ": " + formatError(this, compact);
|
|
4844
4842
|
};
|
|
4845
|
-
|
|
4843
|
+
module2.exports = YAMLException;
|
|
4846
4844
|
}
|
|
4847
4845
|
});
|
|
4848
4846
|
|
|
4849
4847
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/snippet.js
|
|
4850
4848
|
var require_snippet = __commonJS({
|
|
4851
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/snippet.js"(
|
|
4849
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/snippet.js"(exports2, module2) {
|
|
4852
4850
|
"use strict";
|
|
4853
4851
|
var common = require_common();
|
|
4854
4852
|
function getLine(buffer, lineStart, lineEnd, position, maxLineLength) {
|
|
@@ -4930,13 +4928,13 @@ var require_snippet = __commonJS({
|
|
|
4930
4928
|
}
|
|
4931
4929
|
return result.replace(/\n$/, "");
|
|
4932
4930
|
}
|
|
4933
|
-
|
|
4931
|
+
module2.exports = makeSnippet;
|
|
4934
4932
|
}
|
|
4935
4933
|
});
|
|
4936
4934
|
|
|
4937
4935
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type.js
|
|
4938
4936
|
var require_type = __commonJS({
|
|
4939
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type.js"(
|
|
4937
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type.js"(exports2, module2) {
|
|
4940
4938
|
"use strict";
|
|
4941
4939
|
var YAMLException = require_exception();
|
|
4942
4940
|
var TYPE_CONSTRUCTOR_OPTIONS = [
|
|
@@ -4994,13 +4992,13 @@ var require_type = __commonJS({
|
|
|
4994
4992
|
throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.');
|
|
4995
4993
|
}
|
|
4996
4994
|
}
|
|
4997
|
-
|
|
4995
|
+
module2.exports = Type;
|
|
4998
4996
|
}
|
|
4999
4997
|
});
|
|
5000
4998
|
|
|
5001
4999
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema.js
|
|
5002
5000
|
var require_schema = __commonJS({
|
|
5003
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema.js"(
|
|
5001
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema.js"(exports2, module2) {
|
|
5004
5002
|
"use strict";
|
|
5005
5003
|
var YAMLException = require_exception();
|
|
5006
5004
|
var Type = require_type();
|
|
@@ -5085,16 +5083,16 @@ var require_schema = __commonJS({
|
|
|
5085
5083
|
result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit);
|
|
5086
5084
|
return result;
|
|
5087
5085
|
};
|
|
5088
|
-
|
|
5086
|
+
module2.exports = Schema;
|
|
5089
5087
|
}
|
|
5090
5088
|
});
|
|
5091
5089
|
|
|
5092
5090
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/str.js
|
|
5093
5091
|
var require_str = __commonJS({
|
|
5094
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/str.js"(
|
|
5092
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/str.js"(exports2, module2) {
|
|
5095
5093
|
"use strict";
|
|
5096
5094
|
var Type = require_type();
|
|
5097
|
-
|
|
5095
|
+
module2.exports = new Type("tag:yaml.org,2002:str", {
|
|
5098
5096
|
kind: "scalar",
|
|
5099
5097
|
construct: function(data) {
|
|
5100
5098
|
return data !== null ? data : "";
|
|
@@ -5105,10 +5103,10 @@ var require_str = __commonJS({
|
|
|
5105
5103
|
|
|
5106
5104
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/seq.js
|
|
5107
5105
|
var require_seq = __commonJS({
|
|
5108
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/seq.js"(
|
|
5106
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/seq.js"(exports2, module2) {
|
|
5109
5107
|
"use strict";
|
|
5110
5108
|
var Type = require_type();
|
|
5111
|
-
|
|
5109
|
+
module2.exports = new Type("tag:yaml.org,2002:seq", {
|
|
5112
5110
|
kind: "sequence",
|
|
5113
5111
|
construct: function(data) {
|
|
5114
5112
|
return data !== null ? data : [];
|
|
@@ -5119,10 +5117,10 @@ var require_seq = __commonJS({
|
|
|
5119
5117
|
|
|
5120
5118
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/map.js
|
|
5121
5119
|
var require_map = __commonJS({
|
|
5122
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/map.js"(
|
|
5120
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/map.js"(exports2, module2) {
|
|
5123
5121
|
"use strict";
|
|
5124
5122
|
var Type = require_type();
|
|
5125
|
-
|
|
5123
|
+
module2.exports = new Type("tag:yaml.org,2002:map", {
|
|
5126
5124
|
kind: "mapping",
|
|
5127
5125
|
construct: function(data) {
|
|
5128
5126
|
return data !== null ? data : {};
|
|
@@ -5133,10 +5131,10 @@ var require_map = __commonJS({
|
|
|
5133
5131
|
|
|
5134
5132
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/failsafe.js
|
|
5135
5133
|
var require_failsafe = __commonJS({
|
|
5136
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/failsafe.js"(
|
|
5134
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/failsafe.js"(exports2, module2) {
|
|
5137
5135
|
"use strict";
|
|
5138
5136
|
var Schema = require_schema();
|
|
5139
|
-
|
|
5137
|
+
module2.exports = new Schema({
|
|
5140
5138
|
explicit: [
|
|
5141
5139
|
require_str(),
|
|
5142
5140
|
require_seq(),
|
|
@@ -5148,7 +5146,7 @@ var require_failsafe = __commonJS({
|
|
|
5148
5146
|
|
|
5149
5147
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/null.js
|
|
5150
5148
|
var require_null = __commonJS({
|
|
5151
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/null.js"(
|
|
5149
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/null.js"(exports2, module2) {
|
|
5152
5150
|
"use strict";
|
|
5153
5151
|
var Type = require_type();
|
|
5154
5152
|
function resolveYamlNull(data) {
|
|
@@ -5163,7 +5161,7 @@ var require_null = __commonJS({
|
|
|
5163
5161
|
function isNull(object) {
|
|
5164
5162
|
return object === null;
|
|
5165
5163
|
}
|
|
5166
|
-
|
|
5164
|
+
module2.exports = new Type("tag:yaml.org,2002:null", {
|
|
5167
5165
|
kind: "scalar",
|
|
5168
5166
|
resolve: resolveYamlNull,
|
|
5169
5167
|
construct: constructYamlNull,
|
|
@@ -5192,7 +5190,7 @@ var require_null = __commonJS({
|
|
|
5192
5190
|
|
|
5193
5191
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/bool.js
|
|
5194
5192
|
var require_bool = __commonJS({
|
|
5195
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/bool.js"(
|
|
5193
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/bool.js"(exports2, module2) {
|
|
5196
5194
|
"use strict";
|
|
5197
5195
|
var Type = require_type();
|
|
5198
5196
|
function resolveYamlBoolean(data) {
|
|
@@ -5207,7 +5205,7 @@ var require_bool = __commonJS({
|
|
|
5207
5205
|
function isBoolean(object) {
|
|
5208
5206
|
return Object.prototype.toString.call(object) === "[object Boolean]";
|
|
5209
5207
|
}
|
|
5210
|
-
|
|
5208
|
+
module2.exports = new Type("tag:yaml.org,2002:bool", {
|
|
5211
5209
|
kind: "scalar",
|
|
5212
5210
|
resolve: resolveYamlBoolean,
|
|
5213
5211
|
construct: constructYamlBoolean,
|
|
@@ -5230,7 +5228,7 @@ var require_bool = __commonJS({
|
|
|
5230
5228
|
|
|
5231
5229
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/int.js
|
|
5232
5230
|
var require_int = __commonJS({
|
|
5233
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/int.js"(
|
|
5231
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/int.js"(exports2, module2) {
|
|
5234
5232
|
"use strict";
|
|
5235
5233
|
var common = require_common();
|
|
5236
5234
|
var Type = require_type();
|
|
@@ -5336,7 +5334,7 @@ var require_int = __commonJS({
|
|
|
5336
5334
|
function isInteger(object) {
|
|
5337
5335
|
return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 === 0 && !common.isNegativeZero(object));
|
|
5338
5336
|
}
|
|
5339
|
-
|
|
5337
|
+
module2.exports = new Type("tag:yaml.org,2002:int", {
|
|
5340
5338
|
kind: "scalar",
|
|
5341
5339
|
resolve: resolveYamlInteger,
|
|
5342
5340
|
construct: constructYamlInteger,
|
|
@@ -5369,7 +5367,7 @@ var require_int = __commonJS({
|
|
|
5369
5367
|
|
|
5370
5368
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/float.js
|
|
5371
5369
|
var require_float = __commonJS({
|
|
5372
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/float.js"(
|
|
5370
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/float.js"(exports2, module2) {
|
|
5373
5371
|
"use strict";
|
|
5374
5372
|
var common = require_common();
|
|
5375
5373
|
var Type = require_type();
|
|
@@ -5440,7 +5438,7 @@ var require_float = __commonJS({
|
|
|
5440
5438
|
function isFloat(object) {
|
|
5441
5439
|
return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 !== 0 || common.isNegativeZero(object));
|
|
5442
5440
|
}
|
|
5443
|
-
|
|
5441
|
+
module2.exports = new Type("tag:yaml.org,2002:float", {
|
|
5444
5442
|
kind: "scalar",
|
|
5445
5443
|
resolve: resolveYamlFloat,
|
|
5446
5444
|
construct: constructYamlFloat,
|
|
@@ -5453,9 +5451,9 @@ var require_float = __commonJS({
|
|
|
5453
5451
|
|
|
5454
5452
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/json.js
|
|
5455
5453
|
var require_json2 = __commonJS({
|
|
5456
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/json.js"(
|
|
5454
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/json.js"(exports2, module2) {
|
|
5457
5455
|
"use strict";
|
|
5458
|
-
|
|
5456
|
+
module2.exports = require_failsafe().extend({
|
|
5459
5457
|
implicit: [
|
|
5460
5458
|
require_null(),
|
|
5461
5459
|
require_bool(),
|
|
@@ -5468,15 +5466,15 @@ var require_json2 = __commonJS({
|
|
|
5468
5466
|
|
|
5469
5467
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/core.js
|
|
5470
5468
|
var require_core = __commonJS({
|
|
5471
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/core.js"(
|
|
5469
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/core.js"(exports2, module2) {
|
|
5472
5470
|
"use strict";
|
|
5473
|
-
|
|
5471
|
+
module2.exports = require_json2();
|
|
5474
5472
|
}
|
|
5475
5473
|
});
|
|
5476
5474
|
|
|
5477
5475
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/timestamp.js
|
|
5478
5476
|
var require_timestamp = __commonJS({
|
|
5479
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/timestamp.js"(
|
|
5477
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/timestamp.js"(exports2, module2) {
|
|
5480
5478
|
"use strict";
|
|
5481
5479
|
var Type = require_type();
|
|
5482
5480
|
var YAML_DATE_REGEXP = new RegExp(
|
|
@@ -5532,7 +5530,7 @@ var require_timestamp = __commonJS({
|
|
|
5532
5530
|
function representYamlTimestamp(object) {
|
|
5533
5531
|
return object.toISOString();
|
|
5534
5532
|
}
|
|
5535
|
-
|
|
5533
|
+
module2.exports = new Type("tag:yaml.org,2002:timestamp", {
|
|
5536
5534
|
kind: "scalar",
|
|
5537
5535
|
resolve: resolveYamlTimestamp,
|
|
5538
5536
|
construct: constructYamlTimestamp,
|
|
@@ -5544,13 +5542,13 @@ var require_timestamp = __commonJS({
|
|
|
5544
5542
|
|
|
5545
5543
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/merge.js
|
|
5546
5544
|
var require_merge = __commonJS({
|
|
5547
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/merge.js"(
|
|
5545
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/merge.js"(exports2, module2) {
|
|
5548
5546
|
"use strict";
|
|
5549
5547
|
var Type = require_type();
|
|
5550
5548
|
function resolveYamlMerge(data) {
|
|
5551
5549
|
return data === "<<" || data === null;
|
|
5552
5550
|
}
|
|
5553
|
-
|
|
5551
|
+
module2.exports = new Type("tag:yaml.org,2002:merge", {
|
|
5554
5552
|
kind: "scalar",
|
|
5555
5553
|
resolve: resolveYamlMerge
|
|
5556
5554
|
});
|
|
@@ -5559,7 +5557,7 @@ var require_merge = __commonJS({
|
|
|
5559
5557
|
|
|
5560
5558
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/binary.js
|
|
5561
5559
|
var require_binary = __commonJS({
|
|
5562
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/binary.js"(
|
|
5560
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/binary.js"(exports2, module2) {
|
|
5563
5561
|
"use strict";
|
|
5564
5562
|
var Type = require_type();
|
|
5565
5563
|
var BASE64_MAP = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r";
|
|
@@ -5633,7 +5631,7 @@ var require_binary = __commonJS({
|
|
|
5633
5631
|
function isBinary(obj) {
|
|
5634
5632
|
return Object.prototype.toString.call(obj) === "[object Uint8Array]";
|
|
5635
5633
|
}
|
|
5636
|
-
|
|
5634
|
+
module2.exports = new Type("tag:yaml.org,2002:binary", {
|
|
5637
5635
|
kind: "scalar",
|
|
5638
5636
|
resolve: resolveYamlBinary,
|
|
5639
5637
|
construct: constructYamlBinary,
|
|
@@ -5645,7 +5643,7 @@ var require_binary = __commonJS({
|
|
|
5645
5643
|
|
|
5646
5644
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/omap.js
|
|
5647
5645
|
var require_omap = __commonJS({
|
|
5648
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/omap.js"(
|
|
5646
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/omap.js"(exports2, module2) {
|
|
5649
5647
|
"use strict";
|
|
5650
5648
|
var Type = require_type();
|
|
5651
5649
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -5679,7 +5677,7 @@ var require_omap = __commonJS({
|
|
|
5679
5677
|
function constructYamlOmap(data) {
|
|
5680
5678
|
return data !== null ? data : [];
|
|
5681
5679
|
}
|
|
5682
|
-
|
|
5680
|
+
module2.exports = new Type("tag:yaml.org,2002:omap", {
|
|
5683
5681
|
kind: "sequence",
|
|
5684
5682
|
resolve: resolveYamlOmap,
|
|
5685
5683
|
construct: constructYamlOmap
|
|
@@ -5689,7 +5687,7 @@ var require_omap = __commonJS({
|
|
|
5689
5687
|
|
|
5690
5688
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/pairs.js
|
|
5691
5689
|
var require_pairs = __commonJS({
|
|
5692
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/pairs.js"(
|
|
5690
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/pairs.js"(exports2, module2) {
|
|
5693
5691
|
"use strict";
|
|
5694
5692
|
var Type = require_type();
|
|
5695
5693
|
var _toString = Object.prototype.toString;
|
|
@@ -5721,7 +5719,7 @@ var require_pairs = __commonJS({
|
|
|
5721
5719
|
}
|
|
5722
5720
|
return result;
|
|
5723
5721
|
}
|
|
5724
|
-
|
|
5722
|
+
module2.exports = new Type("tag:yaml.org,2002:pairs", {
|
|
5725
5723
|
kind: "sequence",
|
|
5726
5724
|
resolve: resolveYamlPairs,
|
|
5727
5725
|
construct: constructYamlPairs
|
|
@@ -5731,7 +5729,7 @@ var require_pairs = __commonJS({
|
|
|
5731
5729
|
|
|
5732
5730
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/set.js
|
|
5733
5731
|
var require_set = __commonJS({
|
|
5734
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/set.js"(
|
|
5732
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/type/set.js"(exports2, module2) {
|
|
5735
5733
|
"use strict";
|
|
5736
5734
|
var Type = require_type();
|
|
5737
5735
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -5750,7 +5748,7 @@ var require_set = __commonJS({
|
|
|
5750
5748
|
function constructYamlSet(data) {
|
|
5751
5749
|
return data !== null ? data : {};
|
|
5752
5750
|
}
|
|
5753
|
-
|
|
5751
|
+
module2.exports = new Type("tag:yaml.org,2002:set", {
|
|
5754
5752
|
kind: "mapping",
|
|
5755
5753
|
resolve: resolveYamlSet,
|
|
5756
5754
|
construct: constructYamlSet
|
|
@@ -5760,9 +5758,9 @@ var require_set = __commonJS({
|
|
|
5760
5758
|
|
|
5761
5759
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/default.js
|
|
5762
5760
|
var require_default = __commonJS({
|
|
5763
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/default.js"(
|
|
5761
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/schema/default.js"(exports2, module2) {
|
|
5764
5762
|
"use strict";
|
|
5765
|
-
|
|
5763
|
+
module2.exports = require_core().extend({
|
|
5766
5764
|
implicit: [
|
|
5767
5765
|
require_timestamp(),
|
|
5768
5766
|
require_merge()
|
|
@@ -5779,7 +5777,7 @@ var require_default = __commonJS({
|
|
|
5779
5777
|
|
|
5780
5778
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/loader.js
|
|
5781
5779
|
var require_loader = __commonJS({
|
|
5782
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/loader.js"(
|
|
5780
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/loader.js"(exports2, module2) {
|
|
5783
5781
|
"use strict";
|
|
5784
5782
|
var common = require_common();
|
|
5785
5783
|
var YAMLException = require_exception();
|
|
@@ -6940,14 +6938,14 @@ var require_loader = __commonJS({
|
|
|
6940
6938
|
}
|
|
6941
6939
|
throw new YAMLException("expected a single document in the stream, but found more");
|
|
6942
6940
|
}
|
|
6943
|
-
|
|
6944
|
-
|
|
6941
|
+
module2.exports.loadAll = loadAll;
|
|
6942
|
+
module2.exports.load = load;
|
|
6945
6943
|
}
|
|
6946
6944
|
});
|
|
6947
6945
|
|
|
6948
6946
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/dumper.js
|
|
6949
6947
|
var require_dumper = __commonJS({
|
|
6950
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/dumper.js"(
|
|
6948
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/lib/dumper.js"(exports2, module2) {
|
|
6951
6949
|
"use strict";
|
|
6952
6950
|
var common = require_common();
|
|
6953
6951
|
var YAMLException = require_exception();
|
|
@@ -7581,13 +7579,13 @@ var require_dumper = __commonJS({
|
|
|
7581
7579
|
return state.dump + "\n";
|
|
7582
7580
|
return "";
|
|
7583
7581
|
}
|
|
7584
|
-
|
|
7582
|
+
module2.exports.dump = dump;
|
|
7585
7583
|
}
|
|
7586
7584
|
});
|
|
7587
7585
|
|
|
7588
7586
|
// node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/index.js
|
|
7589
7587
|
var require_js_yaml = __commonJS({
|
|
7590
|
-
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/index.js"(
|
|
7588
|
+
"node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/index.js"(exports2, module2) {
|
|
7591
7589
|
"use strict";
|
|
7592
7590
|
var loader = require_loader();
|
|
7593
7591
|
var dumper = require_dumper();
|
|
@@ -7596,17 +7594,17 @@ var require_js_yaml = __commonJS({
|
|
|
7596
7594
|
throw new Error("Function yaml." + from + " is removed in js-yaml 4. Use yaml." + to + " instead, which is now safe by default.");
|
|
7597
7595
|
};
|
|
7598
7596
|
}
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
|
|
7606
|
-
|
|
7607
|
-
|
|
7608
|
-
|
|
7609
|
-
|
|
7597
|
+
module2.exports.Type = require_type();
|
|
7598
|
+
module2.exports.Schema = require_schema();
|
|
7599
|
+
module2.exports.FAILSAFE_SCHEMA = require_failsafe();
|
|
7600
|
+
module2.exports.JSON_SCHEMA = require_json2();
|
|
7601
|
+
module2.exports.CORE_SCHEMA = require_core();
|
|
7602
|
+
module2.exports.DEFAULT_SCHEMA = require_default();
|
|
7603
|
+
module2.exports.load = loader.load;
|
|
7604
|
+
module2.exports.loadAll = loader.loadAll;
|
|
7605
|
+
module2.exports.dump = dumper.dump;
|
|
7606
|
+
module2.exports.YAMLException = require_exception();
|
|
7607
|
+
module2.exports.types = {
|
|
7610
7608
|
binary: require_binary(),
|
|
7611
7609
|
float: require_float(),
|
|
7612
7610
|
map: require_map(),
|
|
@@ -7621,23 +7619,23 @@ var require_js_yaml = __commonJS({
|
|
|
7621
7619
|
seq: require_seq(),
|
|
7622
7620
|
str: require_str()
|
|
7623
7621
|
};
|
|
7624
|
-
|
|
7625
|
-
|
|
7626
|
-
|
|
7622
|
+
module2.exports.safeLoad = renamed("safeLoad", "load");
|
|
7623
|
+
module2.exports.safeLoadAll = renamed("safeLoadAll", "loadAll");
|
|
7624
|
+
module2.exports.safeDump = renamed("safeDump", "dump");
|
|
7627
7625
|
}
|
|
7628
7626
|
});
|
|
7629
7627
|
|
|
7630
7628
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
7631
7629
|
var require_base64 = __commonJS({
|
|
7632
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js"(
|
|
7630
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js"(exports2) {
|
|
7633
7631
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
7634
|
-
|
|
7632
|
+
exports2.encode = function(number) {
|
|
7635
7633
|
if (0 <= number && number < intToCharMap.length) {
|
|
7636
7634
|
return intToCharMap[number];
|
|
7637
7635
|
}
|
|
7638
7636
|
throw new TypeError("Must be between 0 and 63: " + number);
|
|
7639
7637
|
};
|
|
7640
|
-
|
|
7638
|
+
exports2.decode = function(charCode) {
|
|
7641
7639
|
var bigA = 65;
|
|
7642
7640
|
var bigZ = 90;
|
|
7643
7641
|
var littleA = 97;
|
|
@@ -7670,7 +7668,7 @@ var require_base64 = __commonJS({
|
|
|
7670
7668
|
|
|
7671
7669
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
7672
7670
|
var require_base64_vlq = __commonJS({
|
|
7673
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js"(
|
|
7671
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js"(exports2) {
|
|
7674
7672
|
var base64 = require_base64();
|
|
7675
7673
|
var VLQ_BASE_SHIFT = 5;
|
|
7676
7674
|
var VLQ_BASE = 1 << VLQ_BASE_SHIFT;
|
|
@@ -7684,7 +7682,7 @@ var require_base64_vlq = __commonJS({
|
|
|
7684
7682
|
var shifted = aValue >> 1;
|
|
7685
7683
|
return isNegative ? -shifted : shifted;
|
|
7686
7684
|
}
|
|
7687
|
-
|
|
7685
|
+
exports2.encode = function base64VLQ_encode(aValue) {
|
|
7688
7686
|
var encoded = "";
|
|
7689
7687
|
var digit;
|
|
7690
7688
|
var vlq = toVLQSigned(aValue);
|
|
@@ -7698,7 +7696,7 @@ var require_base64_vlq = __commonJS({
|
|
|
7698
7696
|
} while (vlq > 0);
|
|
7699
7697
|
return encoded;
|
|
7700
7698
|
};
|
|
7701
|
-
|
|
7699
|
+
exports2.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {
|
|
7702
7700
|
var strLen = aStr.length;
|
|
7703
7701
|
var result = 0;
|
|
7704
7702
|
var shift = 0;
|
|
@@ -7724,7 +7722,7 @@ var require_base64_vlq = __commonJS({
|
|
|
7724
7722
|
|
|
7725
7723
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
7726
7724
|
var require_util2 = __commonJS({
|
|
7727
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js"(
|
|
7725
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js"(exports2) {
|
|
7728
7726
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
7729
7727
|
if (aName in aArgs) {
|
|
7730
7728
|
return aArgs[aName];
|
|
@@ -7734,7 +7732,7 @@ var require_util2 = __commonJS({
|
|
|
7734
7732
|
throw new Error('"' + aName + '" is a required argument.');
|
|
7735
7733
|
}
|
|
7736
7734
|
}
|
|
7737
|
-
|
|
7735
|
+
exports2.getArg = getArg;
|
|
7738
7736
|
var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
|
|
7739
7737
|
var dataUrlRegexp = /^data:.+\,.+$/;
|
|
7740
7738
|
function urlParse(aUrl) {
|
|
@@ -7750,7 +7748,7 @@ var require_util2 = __commonJS({
|
|
|
7750
7748
|
path: match[5]
|
|
7751
7749
|
};
|
|
7752
7750
|
}
|
|
7753
|
-
|
|
7751
|
+
exports2.urlParse = urlParse;
|
|
7754
7752
|
function urlGenerate(aParsedUrl) {
|
|
7755
7753
|
var url = "";
|
|
7756
7754
|
if (aParsedUrl.scheme) {
|
|
@@ -7771,7 +7769,7 @@ var require_util2 = __commonJS({
|
|
|
7771
7769
|
}
|
|
7772
7770
|
return url;
|
|
7773
7771
|
}
|
|
7774
|
-
|
|
7772
|
+
exports2.urlGenerate = urlGenerate;
|
|
7775
7773
|
function normalize(aPath) {
|
|
7776
7774
|
var path = aPath;
|
|
7777
7775
|
var url = urlParse(aPath);
|
|
@@ -7781,7 +7779,7 @@ var require_util2 = __commonJS({
|
|
|
7781
7779
|
}
|
|
7782
7780
|
path = url.path;
|
|
7783
7781
|
}
|
|
7784
|
-
var isAbsolute =
|
|
7782
|
+
var isAbsolute = exports2.isAbsolute(path);
|
|
7785
7783
|
var parts = path.split(/\/+/);
|
|
7786
7784
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
|
7787
7785
|
part = parts[i];
|
|
@@ -7809,7 +7807,7 @@ var require_util2 = __commonJS({
|
|
|
7809
7807
|
}
|
|
7810
7808
|
return path;
|
|
7811
7809
|
}
|
|
7812
|
-
|
|
7810
|
+
exports2.normalize = normalize;
|
|
7813
7811
|
function join4(aRoot, aPath) {
|
|
7814
7812
|
if (aRoot === "") {
|
|
7815
7813
|
aRoot = ".";
|
|
@@ -7842,8 +7840,8 @@ var require_util2 = __commonJS({
|
|
|
7842
7840
|
}
|
|
7843
7841
|
return joined;
|
|
7844
7842
|
}
|
|
7845
|
-
|
|
7846
|
-
|
|
7843
|
+
exports2.join = join4;
|
|
7844
|
+
exports2.isAbsolute = function(aPath) {
|
|
7847
7845
|
return aPath.charAt(0) === "/" || urlRegexp.test(aPath);
|
|
7848
7846
|
};
|
|
7849
7847
|
function relative(aRoot, aPath) {
|
|
@@ -7865,7 +7863,7 @@ var require_util2 = __commonJS({
|
|
|
7865
7863
|
}
|
|
7866
7864
|
return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
|
|
7867
7865
|
}
|
|
7868
|
-
|
|
7866
|
+
exports2.relative = relative;
|
|
7869
7867
|
var supportsNullProto = function() {
|
|
7870
7868
|
var obj = /* @__PURE__ */ Object.create(null);
|
|
7871
7869
|
return !("__proto__" in obj);
|
|
@@ -7879,14 +7877,14 @@ var require_util2 = __commonJS({
|
|
|
7879
7877
|
}
|
|
7880
7878
|
return aStr;
|
|
7881
7879
|
}
|
|
7882
|
-
|
|
7880
|
+
exports2.toSetString = supportsNullProto ? identity : toSetString;
|
|
7883
7881
|
function fromSetString(aStr) {
|
|
7884
7882
|
if (isProtoString(aStr)) {
|
|
7885
7883
|
return aStr.slice(1);
|
|
7886
7884
|
}
|
|
7887
7885
|
return aStr;
|
|
7888
7886
|
}
|
|
7889
|
-
|
|
7887
|
+
exports2.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
7890
7888
|
function isProtoString(s) {
|
|
7891
7889
|
if (!s) {
|
|
7892
7890
|
return false;
|
|
@@ -7928,7 +7926,7 @@ var require_util2 = __commonJS({
|
|
|
7928
7926
|
}
|
|
7929
7927
|
return strcmp(mappingA.name, mappingB.name);
|
|
7930
7928
|
}
|
|
7931
|
-
|
|
7929
|
+
exports2.compareByOriginalPositions = compareByOriginalPositions;
|
|
7932
7930
|
function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
|
|
7933
7931
|
var cmp = mappingA.generatedLine - mappingB.generatedLine;
|
|
7934
7932
|
if (cmp !== 0) {
|
|
@@ -7952,7 +7950,7 @@ var require_util2 = __commonJS({
|
|
|
7952
7950
|
}
|
|
7953
7951
|
return strcmp(mappingA.name, mappingB.name);
|
|
7954
7952
|
}
|
|
7955
|
-
|
|
7953
|
+
exports2.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
7956
7954
|
function strcmp(aStr1, aStr2) {
|
|
7957
7955
|
if (aStr1 === aStr2) {
|
|
7958
7956
|
return 0;
|
|
@@ -7991,11 +7989,11 @@ var require_util2 = __commonJS({
|
|
|
7991
7989
|
}
|
|
7992
7990
|
return strcmp(mappingA.name, mappingB.name);
|
|
7993
7991
|
}
|
|
7994
|
-
|
|
7992
|
+
exports2.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
7995
7993
|
function parseSourceMapInput(str) {
|
|
7996
7994
|
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ""));
|
|
7997
7995
|
}
|
|
7998
|
-
|
|
7996
|
+
exports2.parseSourceMapInput = parseSourceMapInput;
|
|
7999
7997
|
function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
|
|
8000
7998
|
sourceURL = sourceURL || "";
|
|
8001
7999
|
if (sourceRoot) {
|
|
@@ -8019,13 +8017,13 @@ var require_util2 = __commonJS({
|
|
|
8019
8017
|
}
|
|
8020
8018
|
return normalize(sourceURL);
|
|
8021
8019
|
}
|
|
8022
|
-
|
|
8020
|
+
exports2.computeSourceURL = computeSourceURL;
|
|
8023
8021
|
}
|
|
8024
8022
|
});
|
|
8025
8023
|
|
|
8026
8024
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
8027
8025
|
var require_array_set = __commonJS({
|
|
8028
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js"(
|
|
8026
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js"(exports2) {
|
|
8029
8027
|
var util2 = require_util2();
|
|
8030
8028
|
var has = Object.prototype.hasOwnProperty;
|
|
8031
8029
|
var hasNativeMap = typeof Map !== "undefined";
|
|
@@ -8089,13 +8087,13 @@ var require_array_set = __commonJS({
|
|
|
8089
8087
|
ArraySet.prototype.toArray = function ArraySet_toArray() {
|
|
8090
8088
|
return this._array.slice();
|
|
8091
8089
|
};
|
|
8092
|
-
|
|
8090
|
+
exports2.ArraySet = ArraySet;
|
|
8093
8091
|
}
|
|
8094
8092
|
});
|
|
8095
8093
|
|
|
8096
8094
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
8097
8095
|
var require_mapping_list = __commonJS({
|
|
8098
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js"(
|
|
8096
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js"(exports2) {
|
|
8099
8097
|
var util2 = require_util2();
|
|
8100
8098
|
function generatedPositionAfter(mappingA, mappingB) {
|
|
8101
8099
|
var lineA = mappingA.generatedLine;
|
|
@@ -8128,13 +8126,13 @@ var require_mapping_list = __commonJS({
|
|
|
8128
8126
|
}
|
|
8129
8127
|
return this._array;
|
|
8130
8128
|
};
|
|
8131
|
-
|
|
8129
|
+
exports2.MappingList = MappingList;
|
|
8132
8130
|
}
|
|
8133
8131
|
});
|
|
8134
8132
|
|
|
8135
8133
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
8136
8134
|
var require_source_map_generator = __commonJS({
|
|
8137
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js"(
|
|
8135
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js"(exports2) {
|
|
8138
8136
|
var base64VLQ = require_base64_vlq();
|
|
8139
8137
|
var util2 = require_util2();
|
|
8140
8138
|
var ArraySet = require_array_set().ArraySet;
|
|
@@ -8404,15 +8402,15 @@ var require_source_map_generator = __commonJS({
|
|
|
8404
8402
|
SourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {
|
|
8405
8403
|
return JSON.stringify(this.toJSON());
|
|
8406
8404
|
};
|
|
8407
|
-
|
|
8405
|
+
exports2.SourceMapGenerator = SourceMapGenerator;
|
|
8408
8406
|
}
|
|
8409
8407
|
});
|
|
8410
8408
|
|
|
8411
8409
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
8412
8410
|
var require_binary_search = __commonJS({
|
|
8413
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js"(
|
|
8414
|
-
|
|
8415
|
-
|
|
8411
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js"(exports2) {
|
|
8412
|
+
exports2.GREATEST_LOWER_BOUND = 1;
|
|
8413
|
+
exports2.LEAST_UPPER_BOUND = 2;
|
|
8416
8414
|
function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
|
|
8417
8415
|
var mid = Math.floor((aHigh - aLow) / 2) + aLow;
|
|
8418
8416
|
var cmp = aCompare(aNeedle, aHaystack[mid], true);
|
|
@@ -8422,7 +8420,7 @@ var require_binary_search = __commonJS({
|
|
|
8422
8420
|
if (aHigh - mid > 1) {
|
|
8423
8421
|
return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
|
|
8424
8422
|
}
|
|
8425
|
-
if (aBias ==
|
|
8423
|
+
if (aBias == exports2.LEAST_UPPER_BOUND) {
|
|
8426
8424
|
return aHigh < aHaystack.length ? aHigh : -1;
|
|
8427
8425
|
} else {
|
|
8428
8426
|
return mid;
|
|
@@ -8431,14 +8429,14 @@ var require_binary_search = __commonJS({
|
|
|
8431
8429
|
if (mid - aLow > 1) {
|
|
8432
8430
|
return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
|
|
8433
8431
|
}
|
|
8434
|
-
if (aBias ==
|
|
8432
|
+
if (aBias == exports2.LEAST_UPPER_BOUND) {
|
|
8435
8433
|
return mid;
|
|
8436
8434
|
} else {
|
|
8437
8435
|
return aLow < 0 ? -1 : aLow;
|
|
8438
8436
|
}
|
|
8439
8437
|
}
|
|
8440
8438
|
}
|
|
8441
|
-
|
|
8439
|
+
exports2.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
8442
8440
|
if (aHaystack.length === 0) {
|
|
8443
8441
|
return -1;
|
|
8444
8442
|
}
|
|
@@ -8448,7 +8446,7 @@ var require_binary_search = __commonJS({
|
|
|
8448
8446
|
aNeedle,
|
|
8449
8447
|
aHaystack,
|
|
8450
8448
|
aCompare,
|
|
8451
|
-
aBias ||
|
|
8449
|
+
aBias || exports2.GREATEST_LOWER_BOUND
|
|
8452
8450
|
);
|
|
8453
8451
|
if (index < 0) {
|
|
8454
8452
|
return -1;
|
|
@@ -8466,7 +8464,7 @@ var require_binary_search = __commonJS({
|
|
|
8466
8464
|
|
|
8467
8465
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
8468
8466
|
var require_quick_sort = __commonJS({
|
|
8469
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js"(
|
|
8467
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js"(exports2) {
|
|
8470
8468
|
function swap(ary, x, y) {
|
|
8471
8469
|
var temp = ary[x];
|
|
8472
8470
|
ary[x] = ary[y];
|
|
@@ -8493,7 +8491,7 @@ var require_quick_sort = __commonJS({
|
|
|
8493
8491
|
doQuickSort(ary, comparator, q + 1, r);
|
|
8494
8492
|
}
|
|
8495
8493
|
}
|
|
8496
|
-
|
|
8494
|
+
exports2.quickSort = function(ary, comparator) {
|
|
8497
8495
|
doQuickSort(ary, comparator, 0, ary.length - 1);
|
|
8498
8496
|
};
|
|
8499
8497
|
}
|
|
@@ -8501,7 +8499,7 @@ var require_quick_sort = __commonJS({
|
|
|
8501
8499
|
|
|
8502
8500
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
8503
8501
|
var require_source_map_consumer = __commonJS({
|
|
8504
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js"(
|
|
8502
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js"(exports2) {
|
|
8505
8503
|
var util2 = require_util2();
|
|
8506
8504
|
var binarySearch = require_binary_search();
|
|
8507
8505
|
var ArraySet = require_array_set().ArraySet;
|
|
@@ -8625,7 +8623,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
8625
8623
|
}
|
|
8626
8624
|
return mappings;
|
|
8627
8625
|
};
|
|
8628
|
-
|
|
8626
|
+
exports2.SourceMapConsumer = SourceMapConsumer;
|
|
8629
8627
|
function BasicSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
|
8630
8628
|
var sourceMap = aSourceMap;
|
|
8631
8629
|
if (typeof aSourceMap === "string") {
|
|
@@ -8938,7 +8936,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
8938
8936
|
lastColumn: null
|
|
8939
8937
|
};
|
|
8940
8938
|
};
|
|
8941
|
-
|
|
8939
|
+
exports2.BasicSourceMapConsumer = BasicSourceMapConsumer;
|
|
8942
8940
|
function IndexedSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
|
8943
8941
|
var sourceMap = aSourceMap;
|
|
8944
8942
|
if (typeof aSourceMap === "string") {
|
|
@@ -9096,13 +9094,13 @@ var require_source_map_consumer = __commonJS({
|
|
|
9096
9094
|
quickSort(this.__generatedMappings, util2.compareByGeneratedPositionsDeflated);
|
|
9097
9095
|
quickSort(this.__originalMappings, util2.compareByOriginalPositions);
|
|
9098
9096
|
};
|
|
9099
|
-
|
|
9097
|
+
exports2.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
9100
9098
|
}
|
|
9101
9099
|
});
|
|
9102
9100
|
|
|
9103
9101
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
9104
9102
|
var require_source_node = __commonJS({
|
|
9105
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js"(
|
|
9103
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js"(exports2) {
|
|
9106
9104
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
9107
9105
|
var util2 = require_util2();
|
|
9108
9106
|
var REGEX_NEWLINE = /(\r?\n)/;
|
|
@@ -9362,22 +9360,22 @@ var require_source_node = __commonJS({
|
|
|
9362
9360
|
});
|
|
9363
9361
|
return { code: generated.code, map };
|
|
9364
9362
|
};
|
|
9365
|
-
|
|
9363
|
+
exports2.SourceNode = SourceNode;
|
|
9366
9364
|
}
|
|
9367
9365
|
});
|
|
9368
9366
|
|
|
9369
9367
|
// node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
9370
9368
|
var require_source_map = __commonJS({
|
|
9371
|
-
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js"(
|
|
9372
|
-
|
|
9373
|
-
|
|
9374
|
-
|
|
9369
|
+
"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js"(exports2) {
|
|
9370
|
+
exports2.SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
9371
|
+
exports2.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
|
9372
|
+
exports2.SourceNode = require_source_node().SourceNode;
|
|
9375
9373
|
}
|
|
9376
9374
|
});
|
|
9377
9375
|
|
|
9378
9376
|
// node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js
|
|
9379
9377
|
var require_buffer_from = __commonJS({
|
|
9380
|
-
"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js"(
|
|
9378
|
+
"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js"(exports2, module2) {
|
|
9381
9379
|
var toString = Object.prototype.toString;
|
|
9382
9380
|
var isModern = typeof Buffer !== "undefined" && typeof Buffer.alloc === "function" && typeof Buffer.allocUnsafe === "function" && typeof Buffer.from === "function";
|
|
9383
9381
|
function isArrayBuffer(input) {
|
|
@@ -9420,18 +9418,18 @@ var require_buffer_from = __commonJS({
|
|
|
9420
9418
|
}
|
|
9421
9419
|
return isModern ? Buffer.from(value) : new Buffer(value);
|
|
9422
9420
|
}
|
|
9423
|
-
|
|
9421
|
+
module2.exports = bufferFrom;
|
|
9424
9422
|
}
|
|
9425
9423
|
});
|
|
9426
9424
|
|
|
9427
9425
|
// node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js
|
|
9428
9426
|
var require_source_map_support = __commonJS({
|
|
9429
|
-
"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js"(
|
|
9427
|
+
"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js"(exports2, module2) {
|
|
9430
9428
|
var SourceMapConsumer = require_source_map().SourceMapConsumer;
|
|
9431
|
-
var path =
|
|
9429
|
+
var path = require("path");
|
|
9432
9430
|
var fs;
|
|
9433
9431
|
try {
|
|
9434
|
-
fs =
|
|
9432
|
+
fs = require("fs");
|
|
9435
9433
|
if (!fs.existsSync || !fs.readFileSync) {
|
|
9436
9434
|
fs = null;
|
|
9437
9435
|
}
|
|
@@ -9811,11 +9809,11 @@ var require_source_map_support = __commonJS({
|
|
|
9811
9809
|
}
|
|
9812
9810
|
var originalRetrieveFileHandlers = retrieveFileHandlers.slice(0);
|
|
9813
9811
|
var originalRetrieveMapHandlers = retrieveMapHandlers.slice(0);
|
|
9814
|
-
|
|
9815
|
-
|
|
9816
|
-
|
|
9817
|
-
|
|
9818
|
-
|
|
9812
|
+
exports2.wrapCallSite = wrapCallSite;
|
|
9813
|
+
exports2.getErrorSource = getErrorSource;
|
|
9814
|
+
exports2.mapSourcePosition = mapSourcePosition;
|
|
9815
|
+
exports2.retrieveSourceMap = retrieveSourceMap;
|
|
9816
|
+
exports2.install = function(options) {
|
|
9819
9817
|
options = options || {};
|
|
9820
9818
|
if (options.environment) {
|
|
9821
9819
|
environment = options.environment;
|
|
@@ -9836,7 +9834,7 @@ var require_source_map_support = __commonJS({
|
|
|
9836
9834
|
retrieveMapHandlers.unshift(options.retrieveSourceMap);
|
|
9837
9835
|
}
|
|
9838
9836
|
if (options.hookRequire && !isInBrowser()) {
|
|
9839
|
-
var Module = dynamicRequire(
|
|
9837
|
+
var Module = dynamicRequire(module2, "module");
|
|
9840
9838
|
var $compile = Module.prototype._compile;
|
|
9841
9839
|
if (!$compile.__sourceMapSupport) {
|
|
9842
9840
|
Module.prototype._compile = function(content, filename) {
|
|
@@ -9857,7 +9855,7 @@ var require_source_map_support = __commonJS({
|
|
|
9857
9855
|
if (!uncaughtShimInstalled) {
|
|
9858
9856
|
var installHandler = "handleUncaughtExceptions" in options ? options.handleUncaughtExceptions : true;
|
|
9859
9857
|
try {
|
|
9860
|
-
var worker_threads = dynamicRequire(
|
|
9858
|
+
var worker_threads = dynamicRequire(module2, "worker_threads");
|
|
9861
9859
|
if (worker_threads.isMainThread === false) {
|
|
9862
9860
|
installHandler = false;
|
|
9863
9861
|
}
|
|
@@ -9869,7 +9867,7 @@ var require_source_map_support = __commonJS({
|
|
|
9869
9867
|
}
|
|
9870
9868
|
}
|
|
9871
9869
|
};
|
|
9872
|
-
|
|
9870
|
+
exports2.resetRetrieveHandlers = function() {
|
|
9873
9871
|
retrieveFileHandlers.length = 0;
|
|
9874
9872
|
retrieveMapHandlers.length = 0;
|
|
9875
9873
|
retrieveFileHandlers = originalRetrieveFileHandlers.slice(0);
|
|
@@ -9882,7 +9880,7 @@ var require_source_map_support = __commonJS({
|
|
|
9882
9880
|
|
|
9883
9881
|
// node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js
|
|
9884
9882
|
var require_typescript = __commonJS({
|
|
9885
|
-
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(
|
|
9883
|
+
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
|
|
9886
9884
|
"use strict";
|
|
9887
9885
|
var ts = (() => {
|
|
9888
9886
|
var __defProp2 = Object.defineProperty;
|
|
@@ -9890,10 +9888,10 @@ var require_typescript = __commonJS({
|
|
|
9890
9888
|
var __esm = (fn, res) => function __init() {
|
|
9891
9889
|
return fn && (res = (0, fn[__getOwnPropNames2(fn)[0]])(fn = 0)), res;
|
|
9892
9890
|
};
|
|
9893
|
-
var __commonJS2 = (cb, mod) => function
|
|
9891
|
+
var __commonJS2 = (cb, mod) => function __require() {
|
|
9894
9892
|
return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9895
9893
|
};
|
|
9896
|
-
var
|
|
9894
|
+
var __export2 = (target, all) => {
|
|
9897
9895
|
for (var name in all)
|
|
9898
9896
|
__defProp2(target, name, { get: all[name], enumerable: true });
|
|
9899
9897
|
};
|
|
@@ -11474,7 +11472,7 @@ var require_typescript = __commonJS({
|
|
|
11474
11472
|
}
|
|
11475
11473
|
}
|
|
11476
11474
|
function isNodeLikeSystem() {
|
|
11477
|
-
return typeof process !== "undefined" && !!process.nextTick && !process.browser && typeof
|
|
11475
|
+
return typeof process !== "undefined" && !!process.nextTick && !process.browser && typeof module2 === "object";
|
|
11478
11476
|
}
|
|
11479
11477
|
var emptyArray, emptyMap, emptySet, SortKind, elementAt, hasOwnProperty, fileNameLowerCaseRegExp, AssertionLevel, createUIStringComparer, uiComparerCaseSensitive, uiLocale;
|
|
11480
11478
|
var init_core = __esm({
|
|
@@ -12901,7 +12899,7 @@ ${lanes.join("\n")}
|
|
|
12901
12899
|
function tryGetNodePerformanceHooks() {
|
|
12902
12900
|
if (isNodeLikeSystem()) {
|
|
12903
12901
|
try {
|
|
12904
|
-
const { performance: performance2, PerformanceObserver: PerformanceObserver2 } =
|
|
12902
|
+
const { performance: performance2, PerformanceObserver: PerformanceObserver2 } = require("perf_hooks");
|
|
12905
12903
|
if (hasRequiredAPI(performance2, PerformanceObserver2)) {
|
|
12906
12904
|
return {
|
|
12907
12905
|
// By default, only write native events when generating a cpu profile or using the v8 profiler.
|
|
@@ -12933,7 +12931,7 @@ ${lanes.join("\n")}
|
|
|
12933
12931
|
"use strict";
|
|
12934
12932
|
try {
|
|
12935
12933
|
const etwModulePath = process.env.TS_ETW_MODULE_PATH ?? "./node_modules/@microsoft/typescript-etw";
|
|
12936
|
-
etwModule =
|
|
12934
|
+
etwModule = require(etwModulePath);
|
|
12937
12935
|
} catch (e) {
|
|
12938
12936
|
etwModule = void 0;
|
|
12939
12937
|
}
|
|
@@ -13052,7 +13050,7 @@ ${lanes.join("\n")}
|
|
|
13052
13050
|
}
|
|
13053
13051
|
});
|
|
13054
13052
|
var ts_performance_exports = {};
|
|
13055
|
-
|
|
13053
|
+
__export2(ts_performance_exports, {
|
|
13056
13054
|
clearMarks: () => clearMarks,
|
|
13057
13055
|
clearMeasures: () => clearMeasures,
|
|
13058
13056
|
createTimer: () => createTimer,
|
|
@@ -13092,7 +13090,7 @@ ${lanes.join("\n")}
|
|
|
13092
13090
|
Debug.assert(!tracing, "Tracing already started");
|
|
13093
13091
|
if (fs === void 0) {
|
|
13094
13092
|
try {
|
|
13095
|
-
fs =
|
|
13093
|
+
fs = require("fs");
|
|
13096
13094
|
} catch (e) {
|
|
13097
13095
|
throw new Error(`tracing requires having fs
|
|
13098
13096
|
(original error: ${e.message || e})`);
|
|
@@ -16278,18 +16276,18 @@ ${lanes.join("\n")}
|
|
|
16278
16276
|
const byteOrderMarkIndicator = "\uFEFF";
|
|
16279
16277
|
function getNodeSystem() {
|
|
16280
16278
|
const nativePattern = /^native |^\([^)]+\)$|^(internal[\\/]|[a-zA-Z0-9_\s]+(\.js)?$)/;
|
|
16281
|
-
const _fs =
|
|
16282
|
-
const _path =
|
|
16283
|
-
const _os =
|
|
16279
|
+
const _fs = require("fs");
|
|
16280
|
+
const _path = require("path");
|
|
16281
|
+
const _os = require("os");
|
|
16284
16282
|
let _crypto;
|
|
16285
16283
|
try {
|
|
16286
|
-
_crypto =
|
|
16284
|
+
_crypto = require("crypto");
|
|
16287
16285
|
} catch {
|
|
16288
16286
|
_crypto = void 0;
|
|
16289
16287
|
}
|
|
16290
16288
|
let activeSession;
|
|
16291
16289
|
let profilePath = "./profile.cpuprofile";
|
|
16292
|
-
const Buffer2 =
|
|
16290
|
+
const Buffer2 = require("buffer").Buffer;
|
|
16293
16291
|
const isLinuxOrMacOs = process.platform === "linux" || process.platform === "darwin";
|
|
16294
16292
|
const platform = _os.platform();
|
|
16295
16293
|
const useCaseSensitiveFileNames2 = isFileSystemCaseSensitive();
|
|
@@ -16410,7 +16408,7 @@ ${lanes.join("\n")}
|
|
|
16410
16408
|
require: (baseDir, moduleName) => {
|
|
16411
16409
|
try {
|
|
16412
16410
|
const modulePath = resolveJSModule(moduleName, baseDir, nodeSystem);
|
|
16413
|
-
return { module:
|
|
16411
|
+
return { module: require(modulePath), modulePath, error: void 0 };
|
|
16414
16412
|
} catch (error2) {
|
|
16415
16413
|
return { module: void 0, modulePath: void 0, error: error2 };
|
|
16416
16414
|
}
|
|
@@ -16425,7 +16423,7 @@ ${lanes.join("\n")}
|
|
|
16425
16423
|
cb();
|
|
16426
16424
|
return false;
|
|
16427
16425
|
}
|
|
16428
|
-
const inspector =
|
|
16426
|
+
const inspector = require("inspector");
|
|
16429
16427
|
if (!inspector || !inspector.Session) {
|
|
16430
16428
|
cb();
|
|
16431
16429
|
return false;
|
|
@@ -23269,8 +23267,8 @@ ${lanes.join("\n")}
|
|
|
23269
23267
|
}
|
|
23270
23268
|
return node;
|
|
23271
23269
|
}
|
|
23272
|
-
function getSourceFileOfModule(
|
|
23273
|
-
return getSourceFileOfNode(
|
|
23270
|
+
function getSourceFileOfModule(module22) {
|
|
23271
|
+
return getSourceFileOfNode(module22.valueDeclaration || getNonAugmentationDeclaration(module22));
|
|
23274
23272
|
}
|
|
23275
23273
|
function isPlainJsFile(file, checkJs) {
|
|
23276
23274
|
return !!file && (file.scriptKind === 1 || file.scriptKind === 2) && !file.checkJsDirective && checkJs === void 0;
|
|
@@ -23598,8 +23596,8 @@ ${lanes.join("\n")}
|
|
|
23598
23596
|
function isBlockScopedContainerTopLevel(node) {
|
|
23599
23597
|
return node.kind === 312 || node.kind === 267 || isFunctionLikeOrClassStaticBlockDeclaration(node);
|
|
23600
23598
|
}
|
|
23601
|
-
function isGlobalScopeAugmentation(
|
|
23602
|
-
return !!(
|
|
23599
|
+
function isGlobalScopeAugmentation(module22) {
|
|
23600
|
+
return !!(module22.flags & 2048);
|
|
23603
23601
|
}
|
|
23604
23602
|
function isExternalModuleAugmentation(node) {
|
|
23605
23603
|
return isAmbientModule(node) && isModuleAugmentationExternal(node);
|
|
@@ -36897,13 +36895,13 @@ ${lanes.join("\n")}
|
|
|
36897
36895
|
[factory2.createThis(), body]
|
|
36898
36896
|
);
|
|
36899
36897
|
}
|
|
36900
|
-
function createCreateBindingHelper(
|
|
36898
|
+
function createCreateBindingHelper(module22, inputName, outputName) {
|
|
36901
36899
|
context.requestEmitHelper(createBindingHelper);
|
|
36902
36900
|
return factory2.createCallExpression(
|
|
36903
36901
|
getUnscopedHelperName("__createBinding"),
|
|
36904
36902
|
/*typeArguments*/
|
|
36905
36903
|
void 0,
|
|
36906
|
-
[factory2.createIdentifier("exports"),
|
|
36904
|
+
[factory2.createIdentifier("exports"), module22, inputName, ...outputName ? [outputName] : []]
|
|
36907
36905
|
);
|
|
36908
36906
|
}
|
|
36909
36907
|
function createImportStarHelper(expression) {
|
|
@@ -53724,18 +53722,18 @@ ${lanes.join("\n")}
|
|
|
53724
53722
|
}
|
|
53725
53723
|
return packageJsonInfo.contents.resolvedEntrypoints = entrypoints || false;
|
|
53726
53724
|
}
|
|
53727
|
-
function loadEntrypointsFromExportMap(scope,
|
|
53725
|
+
function loadEntrypointsFromExportMap(scope, exports3, state, extensions) {
|
|
53728
53726
|
let entrypoints;
|
|
53729
|
-
if (isArray(
|
|
53730
|
-
for (const target of
|
|
53727
|
+
if (isArray(exports3)) {
|
|
53728
|
+
for (const target of exports3) {
|
|
53731
53729
|
loadEntrypointsFromTargetExports(target);
|
|
53732
53730
|
}
|
|
53733
|
-
} else if (typeof
|
|
53734
|
-
for (const key in
|
|
53735
|
-
loadEntrypointsFromTargetExports(
|
|
53731
|
+
} else if (typeof exports3 === "object" && exports3 !== null && allKeysStartWithDot(exports3)) {
|
|
53732
|
+
for (const key in exports3) {
|
|
53733
|
+
loadEntrypointsFromTargetExports(exports3[key]);
|
|
53736
53734
|
}
|
|
53737
53735
|
} else {
|
|
53738
|
-
loadEntrypointsFromTargetExports(
|
|
53736
|
+
loadEntrypointsFromTargetExports(exports3);
|
|
53739
53737
|
}
|
|
53740
53738
|
return entrypoints;
|
|
53741
53739
|
function loadEntrypointsFromTargetExports(target) {
|
|
@@ -58715,10 +58713,10 @@ ${lanes.join("\n")}
|
|
|
58715
58713
|
return ending !== 0 || value === processEnding(relativeToBaseUrl, [ending], compilerOptions, host);
|
|
58716
58714
|
}
|
|
58717
58715
|
}
|
|
58718
|
-
function tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName,
|
|
58719
|
-
if (typeof
|
|
58716
|
+
function tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, exports3, conditions, mode = 0) {
|
|
58717
|
+
if (typeof exports3 === "string") {
|
|
58720
58718
|
const pathOrPattern = getNormalizedAbsolutePath(
|
|
58721
|
-
combinePaths(packageDirectory,
|
|
58719
|
+
combinePaths(packageDirectory, exports3),
|
|
58722
58720
|
/*currentDirectory*/
|
|
58723
58721
|
void 0
|
|
58724
58722
|
);
|
|
@@ -58738,7 +58736,7 @@ ${lanes.join("\n")}
|
|
|
58738
58736
|
false
|
|
58739
58737
|
);
|
|
58740
58738
|
return { moduleFileToTry: getNormalizedAbsolutePath(
|
|
58741
|
-
combinePaths(combinePaths(packageName,
|
|
58739
|
+
combinePaths(combinePaths(packageName, exports3), fragment),
|
|
58742
58740
|
/*currentDirectory*/
|
|
58743
58741
|
void 0
|
|
58744
58742
|
) };
|
|
@@ -58758,23 +58756,23 @@ ${lanes.join("\n")}
|
|
|
58758
58756
|
}
|
|
58759
58757
|
break;
|
|
58760
58758
|
}
|
|
58761
|
-
} else if (Array.isArray(
|
|
58762
|
-
return forEach(
|
|
58763
|
-
} else if (typeof
|
|
58764
|
-
if (allKeysStartWithDot(
|
|
58765
|
-
return forEach(getOwnKeys(
|
|
58759
|
+
} else if (Array.isArray(exports3)) {
|
|
58760
|
+
return forEach(exports3, (e) => tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, e, conditions));
|
|
58761
|
+
} else if (typeof exports3 === "object" && exports3 !== null) {
|
|
58762
|
+
if (allKeysStartWithDot(exports3)) {
|
|
58763
|
+
return forEach(getOwnKeys(exports3), (k) => {
|
|
58766
58764
|
const subPackageName = getNormalizedAbsolutePath(
|
|
58767
58765
|
combinePaths(packageName, k),
|
|
58768
58766
|
/*currentDirectory*/
|
|
58769
58767
|
void 0
|
|
58770
58768
|
);
|
|
58771
58769
|
const mode2 = endsWith(k, "/") ? 1 : k.includes("*") ? 2 : 0;
|
|
58772
|
-
return tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, subPackageName,
|
|
58770
|
+
return tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, subPackageName, exports3[k], conditions, mode2);
|
|
58773
58771
|
});
|
|
58774
58772
|
} else {
|
|
58775
|
-
for (const key of getOwnKeys(
|
|
58773
|
+
for (const key of getOwnKeys(exports3)) {
|
|
58776
58774
|
if (key === "default" || conditions.includes(key) || isApplicableVersionedTypesKey(conditions, key)) {
|
|
58777
|
-
const subTarget =
|
|
58775
|
+
const subTarget = exports3[key];
|
|
58778
58776
|
const result = tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, subTarget, conditions, mode);
|
|
58779
58777
|
if (result) {
|
|
58780
58778
|
return result;
|
|
@@ -59065,7 +59063,7 @@ ${lanes.join("\n")}
|
|
|
59065
59063
|
}
|
|
59066
59064
|
});
|
|
59067
59065
|
var ts_moduleSpecifiers_exports = {};
|
|
59068
|
-
|
|
59066
|
+
__export2(ts_moduleSpecifiers_exports, {
|
|
59069
59067
|
countPathComponents: () => countPathComponents,
|
|
59070
59068
|
forEachFileNameOfModule: () => forEachFileNameOfModule,
|
|
59071
59069
|
getModuleSpecifier: () => getModuleSpecifier,
|
|
@@ -60502,7 +60500,7 @@ ${lanes.join("\n")}
|
|
|
60502
60500
|
}
|
|
60503
60501
|
mainModule = resolveExternalModuleSymbol(mainModule);
|
|
60504
60502
|
if (mainModule.flags & 1920) {
|
|
60505
|
-
if (some(patternAmbientModules, (
|
|
60503
|
+
if (some(patternAmbientModules, (module22) => mainModule === module22.symbol)) {
|
|
60506
60504
|
const merged = mergeSymbol(
|
|
60507
60505
|
moduleAugmentation.symbol,
|
|
60508
60506
|
mainModule,
|
|
@@ -61946,16 +61944,16 @@ ${lanes.join("\n")}
|
|
|
61946
61944
|
function reportNonExportedMember(node, name, declarationName, moduleSymbol, moduleName) {
|
|
61947
61945
|
var _a, _b;
|
|
61948
61946
|
const localSymbol = (_b = (_a = tryCast(moduleSymbol.valueDeclaration, canHaveLocals)) == null ? void 0 : _a.locals) == null ? void 0 : _b.get(name.escapedText);
|
|
61949
|
-
const
|
|
61947
|
+
const exports3 = moduleSymbol.exports;
|
|
61950
61948
|
if (localSymbol) {
|
|
61951
|
-
const exportedEqualsSymbol =
|
|
61949
|
+
const exportedEqualsSymbol = exports3 == null ? void 0 : exports3.get(
|
|
61952
61950
|
"export="
|
|
61953
61951
|
/* ExportEquals */
|
|
61954
61952
|
);
|
|
61955
61953
|
if (exportedEqualsSymbol) {
|
|
61956
61954
|
getSymbolIfSameReference(exportedEqualsSymbol, localSymbol) ? reportInvalidImportEqualsExportMember(node, name, declarationName, moduleName) : error2(name, Diagnostics.Module_0_has_no_exported_member_1, moduleName, declarationName);
|
|
61957
61955
|
} else {
|
|
61958
|
-
const exportedSymbol =
|
|
61956
|
+
const exportedSymbol = exports3 ? find(symbolsToArray(exports3), (symbol) => !!getSymbolIfSameReference(symbol, localSymbol)) : void 0;
|
|
61959
61957
|
const diagnostic = exportedSymbol ? error2(name, Diagnostics.Module_0_declares_1_locally_but_it_is_exported_as_2, moduleName, declarationName, symbolToString(exportedSymbol)) : error2(name, Diagnostics.Module_0_declares_1_locally_but_it_is_not_exported, moduleName, declarationName);
|
|
61960
61958
|
if (localSymbol.declarations) {
|
|
61961
61959
|
addRelatedInfo(diagnostic, ...map(localSymbol.declarations, (decl, index) => createDiagnosticForNode(decl, index === 0 ? Diagnostics._0_is_declared_here : Diagnostics.and_here, declarationName)));
|
|
@@ -62853,19 +62851,19 @@ ${lanes.join("\n")}
|
|
|
62853
62851
|
return symbolsToArray(getExportsOfModule(moduleSymbol));
|
|
62854
62852
|
}
|
|
62855
62853
|
function getExportsAndPropertiesOfModule(moduleSymbol) {
|
|
62856
|
-
const
|
|
62854
|
+
const exports3 = getExportsOfModuleAsArray(moduleSymbol);
|
|
62857
62855
|
const exportEquals = resolveExternalModuleSymbol(moduleSymbol);
|
|
62858
62856
|
if (exportEquals !== moduleSymbol) {
|
|
62859
62857
|
const type = getTypeOfSymbol(exportEquals);
|
|
62860
62858
|
if (shouldTreatPropertiesOfExternalModuleAsExports(type)) {
|
|
62861
|
-
addRange(
|
|
62859
|
+
addRange(exports3, getPropertiesOfType(type));
|
|
62862
62860
|
}
|
|
62863
62861
|
}
|
|
62864
|
-
return
|
|
62862
|
+
return exports3;
|
|
62865
62863
|
}
|
|
62866
62864
|
function forEachExportAndPropertyOfModule(moduleSymbol, cb) {
|
|
62867
|
-
const
|
|
62868
|
-
|
|
62865
|
+
const exports3 = getExportsOfModule(moduleSymbol);
|
|
62866
|
+
exports3.forEach((symbol, key) => {
|
|
62869
62867
|
if (!isReservedMemberName(key)) {
|
|
62870
62868
|
cb(symbol, key);
|
|
62871
62869
|
}
|
|
@@ -62912,8 +62910,8 @@ ${lanes.join("\n")}
|
|
|
62912
62910
|
function getExportsOfModule(moduleSymbol) {
|
|
62913
62911
|
const links = getSymbolLinks(moduleSymbol);
|
|
62914
62912
|
if (!links.resolvedExports) {
|
|
62915
|
-
const { exports:
|
|
62916
|
-
links.resolvedExports =
|
|
62913
|
+
const { exports: exports3, typeOnlyExportStarMap } = getExportsOfModuleWorker(moduleSymbol);
|
|
62914
|
+
links.resolvedExports = exports3;
|
|
62917
62915
|
links.typeOnlyExportStarMap = typeOnlyExportStarMap;
|
|
62918
62916
|
}
|
|
62919
62917
|
return links.resolvedExports;
|
|
@@ -62947,12 +62945,12 @@ ${lanes.join("\n")}
|
|
|
62947
62945
|
let typeOnlyExportStarMap;
|
|
62948
62946
|
const nonTypeOnlyNames = /* @__PURE__ */ new Set();
|
|
62949
62947
|
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
|
|
62950
|
-
const
|
|
62948
|
+
const exports3 = visit(moduleSymbol) || emptySymbols;
|
|
62951
62949
|
if (typeOnlyExportStarMap) {
|
|
62952
62950
|
nonTypeOnlyNames.forEach((name) => typeOnlyExportStarMap.delete(name));
|
|
62953
62951
|
}
|
|
62954
62952
|
return {
|
|
62955
|
-
exports:
|
|
62953
|
+
exports: exports3,
|
|
62956
62954
|
typeOnlyExportStarMap
|
|
62957
62955
|
};
|
|
62958
62956
|
function visit(symbol, exportStar, isTypeOnly) {
|
|
@@ -63146,12 +63144,12 @@ ${lanes.join("\n")}
|
|
|
63146
63144
|
if (exportEquals && getSymbolIfSameReference(exportEquals, symbol)) {
|
|
63147
63145
|
return container;
|
|
63148
63146
|
}
|
|
63149
|
-
const
|
|
63150
|
-
const quick =
|
|
63147
|
+
const exports3 = getExportsOfSymbol(container);
|
|
63148
|
+
const quick = exports3.get(symbol.escapedName);
|
|
63151
63149
|
if (quick && getSymbolIfSameReference(quick, symbol)) {
|
|
63152
63150
|
return quick;
|
|
63153
63151
|
}
|
|
63154
|
-
return forEachEntry(
|
|
63152
|
+
return forEachEntry(exports3, (exported) => {
|
|
63155
63153
|
if (getSymbolIfSameReference(exported, symbol)) {
|
|
63156
63154
|
return exported;
|
|
63157
63155
|
}
|
|
@@ -65631,8 +65629,8 @@ ${lanes.join("\n")}
|
|
|
65631
65629
|
context.flags ^= 16777216;
|
|
65632
65630
|
} else {
|
|
65633
65631
|
if (parent2 && getExportsOfSymbol(parent2)) {
|
|
65634
|
-
const
|
|
65635
|
-
forEachEntry(
|
|
65632
|
+
const exports3 = getExportsOfSymbol(parent2);
|
|
65633
|
+
forEachEntry(exports3, (ex, name) => {
|
|
65636
65634
|
if (getSymbolIfSameReference(ex, symbol2) && !isLateBoundName(name) && name !== "export=") {
|
|
65637
65635
|
symbolName2 = unescapeLeadingUnderscores(name);
|
|
65638
65636
|
return true;
|
|
@@ -66336,8 +66334,8 @@ ${lanes.join("\n")}
|
|
|
66336
66334
|
return statements;
|
|
66337
66335
|
}
|
|
66338
66336
|
function mergeExportDeclarations(statements) {
|
|
66339
|
-
const
|
|
66340
|
-
if (length(
|
|
66337
|
+
const exports3 = filter(statements, (d) => isExportDeclaration(d) && !d.moduleSpecifier && !!d.exportClause && isNamedExports(d.exportClause));
|
|
66338
|
+
if (length(exports3) > 1) {
|
|
66341
66339
|
const nonExports = filter(statements, (d) => !isExportDeclaration(d) || !!d.moduleSpecifier || !d.exportClause);
|
|
66342
66340
|
statements = [
|
|
66343
66341
|
...nonExports,
|
|
@@ -66346,7 +66344,7 @@ ${lanes.join("\n")}
|
|
|
66346
66344
|
void 0,
|
|
66347
66345
|
/*isTypeOnly*/
|
|
66348
66346
|
false,
|
|
66349
|
-
factory.createNamedExports(flatMap(
|
|
66347
|
+
factory.createNamedExports(flatMap(exports3, (e) => cast(e.exportClause, isNamedExports).elements)),
|
|
66350
66348
|
/*moduleSpecifier*/
|
|
66351
66349
|
void 0
|
|
66352
66350
|
)
|
|
@@ -66761,8 +66759,8 @@ ${lanes.join("\n")}
|
|
|
66761
66759
|
);
|
|
66762
66760
|
}
|
|
66763
66761
|
function getNamespaceMembersForSerialization(symbol) {
|
|
66764
|
-
const
|
|
66765
|
-
return !
|
|
66762
|
+
const exports3 = getExportsOfSymbol(symbol);
|
|
66763
|
+
return !exports3 ? [] : filter(arrayFrom(exports3.values()), (m) => isNamespaceMember(m) && isIdentifierText(
|
|
66766
66764
|
m.escapedName,
|
|
66767
66765
|
99
|
|
66768
66766
|
/* ESNext */
|
|
@@ -68744,19 +68742,19 @@ ${lanes.join("\n")}
|
|
|
68744
68742
|
if (!isInJSFile(decl) || !init || !isObjectLiteralExpression(init) || init.properties.length) {
|
|
68745
68743
|
return void 0;
|
|
68746
68744
|
}
|
|
68747
|
-
const
|
|
68745
|
+
const exports3 = createSymbolTable();
|
|
68748
68746
|
while (isBinaryExpression(decl) || isPropertyAccessExpression(decl)) {
|
|
68749
68747
|
const s2 = getSymbolOfNode(decl);
|
|
68750
68748
|
if ((_a = s2 == null ? void 0 : s2.exports) == null ? void 0 : _a.size) {
|
|
68751
|
-
mergeSymbolTable(
|
|
68749
|
+
mergeSymbolTable(exports3, s2.exports);
|
|
68752
68750
|
}
|
|
68753
68751
|
decl = isBinaryExpression(decl) ? decl.parent : decl.parent.parent;
|
|
68754
68752
|
}
|
|
68755
68753
|
const s = getSymbolOfNode(decl);
|
|
68756
68754
|
if ((_b = s == null ? void 0 : s.exports) == null ? void 0 : _b.size) {
|
|
68757
|
-
mergeSymbolTable(
|
|
68755
|
+
mergeSymbolTable(exports3, s.exports);
|
|
68758
68756
|
}
|
|
68759
|
-
const type = createAnonymousType(symbol,
|
|
68757
|
+
const type = createAnonymousType(symbol, exports3, emptyArray, emptyArray, emptyArray);
|
|
68760
68758
|
type.objectFlags |= 4096;
|
|
68761
68759
|
return type;
|
|
68762
68760
|
}
|
|
@@ -86871,9 +86869,9 @@ ${lanes.join("\n")}
|
|
|
86871
86869
|
}
|
|
86872
86870
|
function getJsxType(name, location) {
|
|
86873
86871
|
const namespace = getJsxNamespaceAt(location);
|
|
86874
|
-
const
|
|
86875
|
-
const typeSymbol =
|
|
86876
|
-
|
|
86872
|
+
const exports3 = namespace && getExportsOfSymbol(namespace);
|
|
86873
|
+
const typeSymbol = exports3 && getSymbol2(
|
|
86874
|
+
exports3,
|
|
86877
86875
|
name,
|
|
86878
86876
|
788968
|
|
86879
86877
|
/* Type */
|
|
@@ -89934,9 +89932,9 @@ ${lanes.join("\n")}
|
|
|
89934
89932
|
}
|
|
89935
89933
|
function createSignatureForJSXIntrinsic(node, result) {
|
|
89936
89934
|
const namespace = getJsxNamespaceAt(node);
|
|
89937
|
-
const
|
|
89938
|
-
const typeSymbol =
|
|
89939
|
-
|
|
89935
|
+
const exports3 = namespace && getExportsOfSymbol(namespace);
|
|
89936
|
+
const typeSymbol = exports3 && getSymbol2(
|
|
89937
|
+
exports3,
|
|
89940
89938
|
JsxNames.Element,
|
|
89941
89939
|
788968
|
|
89942
89940
|
/* Type */
|
|
@@ -99362,9 +99360,9 @@ ${lanes.join("\n")}
|
|
|
99362
99360
|
error2(declaration, Diagnostics.An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements);
|
|
99363
99361
|
}
|
|
99364
99362
|
}
|
|
99365
|
-
const
|
|
99366
|
-
if (
|
|
99367
|
-
|
|
99363
|
+
const exports3 = getExportsOfModule(moduleSymbol);
|
|
99364
|
+
if (exports3) {
|
|
99365
|
+
exports3.forEach(({ declarations, flags }, id) => {
|
|
99368
99366
|
if (id === "__export") {
|
|
99369
99367
|
return;
|
|
99370
99368
|
}
|
|
@@ -101356,8 +101354,8 @@ ${lanes.join("\n")}
|
|
|
101356
101354
|
return false;
|
|
101357
101355
|
if (importTarget === file)
|
|
101358
101356
|
return false;
|
|
101359
|
-
const
|
|
101360
|
-
for (const s of arrayFrom(
|
|
101357
|
+
const exports3 = getExportsOfModule(file.symbol);
|
|
101358
|
+
for (const s of arrayFrom(exports3.values())) {
|
|
101361
101359
|
if (s.mergeId) {
|
|
101362
101360
|
const merged = getMergedSymbol(s);
|
|
101363
101361
|
if (merged.declarations) {
|
|
@@ -126652,7 +126650,7 @@ ${lanes.join("\n")}
|
|
|
126652
126650
|
const exportStarFunction = factory2.createUniqueName("exportStar");
|
|
126653
126651
|
const m = factory2.createIdentifier("m");
|
|
126654
126652
|
const n = factory2.createIdentifier("n");
|
|
126655
|
-
const
|
|
126653
|
+
const exports3 = factory2.createIdentifier("exports");
|
|
126656
126654
|
let condition = factory2.createStrictInequality(n, factory2.createStringLiteral("default"));
|
|
126657
126655
|
if (localNames) {
|
|
126658
126656
|
condition = factory2.createLogicalAnd(
|
|
@@ -126691,7 +126689,7 @@ ${lanes.join("\n")}
|
|
|
126691
126689
|
void 0,
|
|
126692
126690
|
factory2.createVariableDeclarationList([
|
|
126693
126691
|
factory2.createVariableDeclaration(
|
|
126694
|
-
|
|
126692
|
+
exports3,
|
|
126695
126693
|
/*exclamationToken*/
|
|
126696
126694
|
void 0,
|
|
126697
126695
|
/*type*/
|
|
@@ -126711,7 +126709,7 @@ ${lanes.join("\n")}
|
|
|
126711
126709
|
condition,
|
|
126712
126710
|
factory2.createExpressionStatement(
|
|
126713
126711
|
factory2.createAssignment(
|
|
126714
|
-
factory2.createElementAccessExpression(
|
|
126712
|
+
factory2.createElementAccessExpression(exports3, n),
|
|
126715
126713
|
factory2.createElementAccessExpression(m, n)
|
|
126716
126714
|
)
|
|
126717
126715
|
)
|
|
@@ -126726,7 +126724,7 @@ ${lanes.join("\n")}
|
|
|
126726
126724
|
exportFunction,
|
|
126727
126725
|
/*typeArguments*/
|
|
126728
126726
|
void 0,
|
|
126729
|
-
[
|
|
126727
|
+
[exports3]
|
|
126730
126728
|
)
|
|
126731
126729
|
)
|
|
126732
126730
|
],
|
|
@@ -147747,12 +147745,12 @@ ${lanes.join("\n")}
|
|
|
147747
147745
|
getTypingNamesFromSourceFileNames(fileNames);
|
|
147748
147746
|
}
|
|
147749
147747
|
if (unresolvedImports) {
|
|
147750
|
-
const
|
|
147748
|
+
const module22 = deduplicate(
|
|
147751
147749
|
unresolvedImports.map(nonRelativeModuleNameForTypingCache),
|
|
147752
147750
|
equateStringsCaseSensitive,
|
|
147753
147751
|
compareStringsCaseSensitive
|
|
147754
147752
|
);
|
|
147755
|
-
addInferredTypings(
|
|
147753
|
+
addInferredTypings(module22, "Inferred typings from unresolved imports");
|
|
147756
147754
|
}
|
|
147757
147755
|
for (const excludeTypingName of exclude) {
|
|
147758
147756
|
const didDelete = inferredTypings.delete(excludeTypingName);
|
|
@@ -148020,7 +148018,7 @@ ${lanes.join("\n")}
|
|
|
148020
148018
|
}
|
|
148021
148019
|
});
|
|
148022
148020
|
var ts_JsTyping_exports = {};
|
|
148023
|
-
|
|
148021
|
+
__export2(ts_JsTyping_exports, {
|
|
148024
148022
|
NameValidationResult: () => NameValidationResult,
|
|
148025
148023
|
discoverTypings: () => discoverTypings,
|
|
148026
148024
|
isTypingUpToDate: () => isTypingUpToDate,
|
|
@@ -151542,8 +151540,8 @@ ${lanes.join("\n")}
|
|
|
151542
151540
|
const pattern = getPatternFromSpec(spec, "", "exclude");
|
|
151543
151541
|
return pattern ? getRegexFromPattern(pattern, useCaseSensitiveFileNames2) : void 0;
|
|
151544
151542
|
});
|
|
151545
|
-
forEachExternalModule(program.getTypeChecker(), program.getSourceFiles(), excludePatterns, (
|
|
151546
|
-
|
|
151543
|
+
forEachExternalModule(program.getTypeChecker(), program.getSourceFiles(), excludePatterns, (module22, file) => cb(
|
|
151544
|
+
module22,
|
|
151547
151545
|
file,
|
|
151548
151546
|
program,
|
|
151549
151547
|
/*isFromPackageJson*/
|
|
@@ -151553,9 +151551,9 @@ ${lanes.join("\n")}
|
|
|
151553
151551
|
if (autoImportProvider) {
|
|
151554
151552
|
const start = timestamp();
|
|
151555
151553
|
const checker = program.getTypeChecker();
|
|
151556
|
-
forEachExternalModule(autoImportProvider.getTypeChecker(), autoImportProvider.getSourceFiles(), excludePatterns, (
|
|
151554
|
+
forEachExternalModule(autoImportProvider.getTypeChecker(), autoImportProvider.getSourceFiles(), excludePatterns, (module22, file) => {
|
|
151557
151555
|
if (file && !program.getSourceFile(file.fileName) || !file && !checker.resolveName(
|
|
151558
|
-
|
|
151556
|
+
module22.name,
|
|
151559
151557
|
/*location*/
|
|
151560
151558
|
void 0,
|
|
151561
151559
|
1536,
|
|
@@ -151563,7 +151561,7 @@ ${lanes.join("\n")}
|
|
|
151563
151561
|
false
|
|
151564
151562
|
)) {
|
|
151565
151563
|
cb(
|
|
151566
|
-
|
|
151564
|
+
module22,
|
|
151567
151565
|
file,
|
|
151568
151566
|
autoImportProvider,
|
|
151569
151567
|
/*isFromPackageJson*/
|
|
@@ -154515,8 +154513,8 @@ ${lanes.join("\n")}
|
|
|
154515
154513
|
const name = importNameForConvertToDefaultImport(importNode);
|
|
154516
154514
|
if (!name)
|
|
154517
154515
|
continue;
|
|
154518
|
-
const
|
|
154519
|
-
const resolvedFile =
|
|
154516
|
+
const module22 = (_a = program.getResolvedModule(sourceFile, moduleSpecifier.text, getModeForUsageLocation(sourceFile, moduleSpecifier))) == null ? void 0 : _a.resolvedModule;
|
|
154517
|
+
const resolvedFile = module22 && program.getSourceFile(module22.resolvedFileName);
|
|
154520
154518
|
if (resolvedFile && resolvedFile.externalModuleIndicator && resolvedFile.externalModuleIndicator !== true && isExportAssignment(resolvedFile.externalModuleIndicator) && resolvedFile.externalModuleIndicator.isExportEquals) {
|
|
154521
154519
|
diags.push(createDiagnosticForNode(name, Diagnostics.Import_may_be_converted_to_a_default_import));
|
|
154522
154520
|
}
|
|
@@ -154953,7 +154951,7 @@ ${lanes.join("\n")}
|
|
|
154953
154951
|
}
|
|
154954
154952
|
});
|
|
154955
154953
|
var ts_NavigateTo_exports = {};
|
|
154956
|
-
|
|
154954
|
+
__export2(ts_NavigateTo_exports, {
|
|
154957
154955
|
getNavigateToItems: () => getNavigateToItems
|
|
154958
154956
|
});
|
|
154959
154957
|
var init_ts_NavigateTo = __esm({
|
|
@@ -155751,7 +155749,7 @@ ${lanes.join("\n")}
|
|
|
155751
155749
|
}
|
|
155752
155750
|
});
|
|
155753
155751
|
var ts_NavigationBar_exports = {};
|
|
155754
|
-
|
|
155752
|
+
__export2(ts_NavigationBar_exports, {
|
|
155755
155753
|
getNavigationBarItems: () => getNavigationBarItems,
|
|
155756
155754
|
getNavigationTree: () => getNavigationTree
|
|
155757
155755
|
});
|
|
@@ -157314,9 +157312,9 @@ ${lanes.join("\n")}
|
|
|
157314
157312
|
var _a;
|
|
157315
157313
|
return needExport.has(Debug.checkDefined((_a = tryCast(d, canHaveSymbol)) == null ? void 0 : _a.symbol));
|
|
157316
157314
|
})) {
|
|
157317
|
-
const
|
|
157318
|
-
if (
|
|
157319
|
-
return
|
|
157315
|
+
const exports3 = addExport(getSynthesizedDeepClone(statement), useEs6Exports);
|
|
157316
|
+
if (exports3)
|
|
157317
|
+
return exports3;
|
|
157320
157318
|
}
|
|
157321
157319
|
return getSynthesizedDeepClone(statement);
|
|
157322
157320
|
});
|
|
@@ -161273,7 +161271,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161273
161271
|
}
|
|
161274
161272
|
});
|
|
161275
161273
|
var ts_refactor_extractSymbol_exports = {};
|
|
161276
|
-
|
|
161274
|
+
__export2(ts_refactor_extractSymbol_exports, {
|
|
161277
161275
|
Messages: () => Messages,
|
|
161278
161276
|
RangeFacts: () => RangeFacts,
|
|
161279
161277
|
getRangeToExtract: () => getRangeToExtract2,
|
|
@@ -161473,7 +161471,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
161473
161471
|
}
|
|
161474
161472
|
});
|
|
161475
161473
|
var ts_refactor_exports = {};
|
|
161476
|
-
|
|
161474
|
+
__export2(ts_refactor_exports, {
|
|
161477
161475
|
addExportToChanges: () => addExportToChanges,
|
|
161478
161476
|
addExports: () => addExports,
|
|
161479
161477
|
addNewFileToTsconfig: () => addNewFileToTsconfig,
|
|
@@ -164584,7 +164582,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
164584
164582
|
}
|
|
164585
164583
|
});
|
|
164586
164584
|
var ts_BreakpointResolver_exports = {};
|
|
164587
|
-
|
|
164585
|
+
__export2(ts_BreakpointResolver_exports, {
|
|
164588
164586
|
spanInSourceFileAtLocation: () => spanInSourceFileAtLocation
|
|
164589
164587
|
});
|
|
164590
164588
|
var init_ts_BreakpointResolver = __esm({
|
|
@@ -165040,7 +165038,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
165040
165038
|
}
|
|
165041
165039
|
});
|
|
165042
165040
|
var ts_CallHierarchy_exports = {};
|
|
165043
|
-
|
|
165041
|
+
__export2(ts_CallHierarchy_exports, {
|
|
165044
165042
|
createCallHierarchyItem: () => createCallHierarchyItem,
|
|
165045
165043
|
getIncomingCalls: () => getIncomingCalls,
|
|
165046
165044
|
getOutgoingCalls: () => getOutgoingCalls,
|
|
@@ -165053,7 +165051,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
165053
165051
|
}
|
|
165054
165052
|
});
|
|
165055
165053
|
var ts_classifier_v2020_exports = {};
|
|
165056
|
-
|
|
165054
|
+
__export2(ts_classifier_v2020_exports, {
|
|
165057
165055
|
TokenEncodingConsts: () => TokenEncodingConsts,
|
|
165058
165056
|
TokenModifier: () => TokenModifier,
|
|
165059
165057
|
TokenType: () => TokenType,
|
|
@@ -165067,7 +165065,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
165067
165065
|
}
|
|
165068
165066
|
});
|
|
165069
165067
|
var ts_classifier_exports = {};
|
|
165070
|
-
|
|
165068
|
+
__export2(ts_classifier_exports, {
|
|
165071
165069
|
v2020: () => ts_classifier_v2020_exports
|
|
165072
165070
|
});
|
|
165073
165071
|
var init_ts_classifier = __esm({
|
|
@@ -167178,8 +167176,8 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167178
167176
|
}
|
|
167179
167177
|
function convertFileToEsModule(sourceFile, checker, changes, target, quotePreference) {
|
|
167180
167178
|
const identifiers = { original: collectFreeIdentifiers(sourceFile), additional: /* @__PURE__ */ new Set() };
|
|
167181
|
-
const
|
|
167182
|
-
convertExportsAccesses(sourceFile,
|
|
167179
|
+
const exports3 = collectExportRenames(sourceFile, checker, identifiers);
|
|
167180
|
+
convertExportsAccesses(sourceFile, exports3, changes);
|
|
167183
167181
|
let moduleExportsChangedToDefault = false;
|
|
167184
167182
|
let useSitesToUnqualify;
|
|
167185
167183
|
for (const statement of filter(sourceFile.statements, isVariableStatement)) {
|
|
@@ -167189,7 +167187,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167189
167187
|
}
|
|
167190
167188
|
}
|
|
167191
167189
|
for (const statement of filter(sourceFile.statements, (s) => !isVariableStatement(s))) {
|
|
167192
|
-
const moduleExportsChanged = convertStatement(sourceFile, statement, checker, changes, identifiers, target,
|
|
167190
|
+
const moduleExportsChanged = convertStatement(sourceFile, statement, checker, changes, identifiers, target, exports3, useSitesToUnqualify, quotePreference);
|
|
167193
167191
|
moduleExportsChangedToDefault = moduleExportsChangedToDefault || moduleExportsChanged;
|
|
167194
167192
|
}
|
|
167195
167193
|
useSitesToUnqualify == null ? void 0 : useSitesToUnqualify.forEach((replacement, original) => {
|
|
@@ -167213,13 +167211,13 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167213
167211
|
});
|
|
167214
167212
|
return res;
|
|
167215
167213
|
}
|
|
167216
|
-
function convertExportsAccesses(sourceFile,
|
|
167214
|
+
function convertExportsAccesses(sourceFile, exports3, changes) {
|
|
167217
167215
|
forEachExportReference(sourceFile, (node, isAssignmentLhs) => {
|
|
167218
167216
|
if (isAssignmentLhs) {
|
|
167219
167217
|
return;
|
|
167220
167218
|
}
|
|
167221
167219
|
const { text } = node.name;
|
|
167222
|
-
changes.replaceNode(sourceFile, node, factory.createIdentifier(
|
|
167220
|
+
changes.replaceNode(sourceFile, node, factory.createIdentifier(exports3.get(text) || text));
|
|
167223
167221
|
});
|
|
167224
167222
|
}
|
|
167225
167223
|
function forEachExportReference(sourceFile, cb) {
|
|
@@ -167235,7 +167233,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167235
167233
|
node.forEachChild(recur);
|
|
167236
167234
|
});
|
|
167237
167235
|
}
|
|
167238
|
-
function convertStatement(sourceFile, statement, checker, changes, identifiers, target,
|
|
167236
|
+
function convertStatement(sourceFile, statement, checker, changes, identifiers, target, exports3, useSitesToUnqualify, quotePreference) {
|
|
167239
167237
|
switch (statement.kind) {
|
|
167240
167238
|
case 243:
|
|
167241
167239
|
convertVariableStatement(sourceFile, statement, changes, checker, identifiers, target, quotePreference);
|
|
@@ -167262,7 +167260,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167262
167260
|
}
|
|
167263
167261
|
case 226: {
|
|
167264
167262
|
const { operatorToken } = expression;
|
|
167265
|
-
return operatorToken.kind === 64 && convertAssignment(sourceFile, checker, expression, changes,
|
|
167263
|
+
return operatorToken.kind === 64 && convertAssignment(sourceFile, checker, expression, changes, exports3, useSitesToUnqualify);
|
|
167266
167264
|
}
|
|
167267
167265
|
}
|
|
167268
167266
|
}
|
|
@@ -167333,7 +167331,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167333
167331
|
return Debug.assertNever(name, `Convert to ES module got invalid syntax form ${name.kind}`);
|
|
167334
167332
|
}
|
|
167335
167333
|
}
|
|
167336
|
-
function convertAssignment(sourceFile, checker, assignment, changes,
|
|
167334
|
+
function convertAssignment(sourceFile, checker, assignment, changes, exports3, useSitesToUnqualify) {
|
|
167337
167335
|
const { left, right } = assignment;
|
|
167338
167336
|
if (!isPropertyAccessExpression(left)) {
|
|
167339
167337
|
return false;
|
|
@@ -167356,7 +167354,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167356
167354
|
}
|
|
167357
167355
|
}
|
|
167358
167356
|
} else if (isExportsOrModuleExportsOrAlias(sourceFile, left.expression)) {
|
|
167359
|
-
convertNamedExport(sourceFile, assignment, changes,
|
|
167357
|
+
convertNamedExport(sourceFile, assignment, changes, exports3);
|
|
167360
167358
|
}
|
|
167361
167359
|
return false;
|
|
167362
167360
|
}
|
|
@@ -167381,9 +167379,9 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167381
167379
|
});
|
|
167382
167380
|
return statements && [statements, false];
|
|
167383
167381
|
}
|
|
167384
|
-
function convertNamedExport(sourceFile, assignment, changes,
|
|
167382
|
+
function convertNamedExport(sourceFile, assignment, changes, exports3) {
|
|
167385
167383
|
const { text } = assignment.left.name;
|
|
167386
|
-
const rename =
|
|
167384
|
+
const rename = exports3.get(text);
|
|
167387
167385
|
if (rename !== void 0) {
|
|
167388
167386
|
const newNodes = [
|
|
167389
167387
|
makeConst(
|
|
@@ -167407,16 +167405,16 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167407
167405
|
function convertReExportAll(reExported, checker) {
|
|
167408
167406
|
const moduleSpecifier = reExported.text;
|
|
167409
167407
|
const moduleSymbol = checker.getSymbolAtLocation(reExported);
|
|
167410
|
-
const
|
|
167411
|
-
return
|
|
167408
|
+
const exports3 = moduleSymbol ? moduleSymbol.exports : emptyMap;
|
|
167409
|
+
return exports3.has(
|
|
167412
167410
|
"export="
|
|
167413
167411
|
/* ExportEquals */
|
|
167414
|
-
) ? [[reExportDefault(moduleSpecifier)], true] : !
|
|
167412
|
+
) ? [[reExportDefault(moduleSpecifier)], true] : !exports3.has(
|
|
167415
167413
|
"default"
|
|
167416
167414
|
/* Default */
|
|
167417
167415
|
) ? [[reExportStar(moduleSpecifier)], false] : (
|
|
167418
167416
|
// If there's some non-default export, must include both `export *` and `export default`.
|
|
167419
|
-
|
|
167417
|
+
exports3.size > 1 ? [[reExportStar(moduleSpecifier), reExportDefault(moduleSpecifier)], true] : [[reExportDefault(moduleSpecifier)], true]
|
|
167420
167418
|
);
|
|
167421
167419
|
}
|
|
167422
167420
|
function reExportStar(moduleSpecifier) {
|
|
@@ -170192,7 +170190,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
170192
170190
|
getAllCodeActions(context) {
|
|
170193
170191
|
const { program } = context;
|
|
170194
170192
|
return createCombinedCodeActions(ts_textChanges_exports.ChangeTracker.with(context, (changes) => {
|
|
170195
|
-
const
|
|
170193
|
+
const exports3 = /* @__PURE__ */ new Map();
|
|
170196
170194
|
eachDiagnostic(context, errorCodes23, (diag2) => {
|
|
170197
170195
|
const info = getInfo7(diag2.file, diag2.start, program);
|
|
170198
170196
|
if (info === void 0)
|
|
@@ -170201,16 +170199,16 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
170201
170199
|
if (tryGetExportDeclaration(moduleSourceFile, exportName.isTypeOnly) === void 0 && canHaveExportModifier(node)) {
|
|
170202
170200
|
changes.insertExportModifier(moduleSourceFile, node);
|
|
170203
170201
|
} else {
|
|
170204
|
-
const moduleExports =
|
|
170202
|
+
const moduleExports = exports3.get(moduleSourceFile) || { typeOnlyExports: [], exports: [] };
|
|
170205
170203
|
if (exportName.isTypeOnly) {
|
|
170206
170204
|
moduleExports.typeOnlyExports.push(exportName);
|
|
170207
170205
|
} else {
|
|
170208
170206
|
moduleExports.exports.push(exportName);
|
|
170209
170207
|
}
|
|
170210
|
-
|
|
170208
|
+
exports3.set(moduleSourceFile, moduleExports);
|
|
170211
170209
|
}
|
|
170212
170210
|
});
|
|
170213
|
-
|
|
170211
|
+
exports3.forEach((moduleExports, moduleSourceFile) => {
|
|
170214
170212
|
const exportDeclaration = tryGetExportDeclaration(
|
|
170215
170213
|
moduleSourceFile,
|
|
170216
170214
|
/*isTypeOnly*/
|
|
@@ -175891,7 +175889,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
175891
175889
|
}
|
|
175892
175890
|
});
|
|
175893
175891
|
var ts_codefix_exports = {};
|
|
175894
|
-
|
|
175892
|
+
__export2(ts_codefix_exports, {
|
|
175895
175893
|
PreserveOptionalFlags: () => PreserveOptionalFlags,
|
|
175896
175894
|
addNewNodeForMemberSymbol: () => addNewNodeForMemberSymbol,
|
|
175897
175895
|
codeFixAll: () => codeFixAll,
|
|
@@ -178948,9 +178946,9 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
178948
178946
|
}
|
|
178949
178947
|
completionKind = 3;
|
|
178950
178948
|
isNewIdentifierLocation = false;
|
|
178951
|
-
const
|
|
178949
|
+
const exports3 = typeChecker.getExportsAndPropertiesOfModule(moduleSpecifierSymbol);
|
|
178952
178950
|
const existing = new Set(namedImportsOrExports.elements.filter((n) => !isCurrentlyEditingNode(n)).map((n) => (n.propertyName || n.name).escapedText));
|
|
178953
|
-
const uniques =
|
|
178951
|
+
const uniques = exports3.filter((e) => e.escapedName !== "default" && !existing.has(e.escapedName));
|
|
178954
178952
|
symbols = concatenate(symbols, uniques);
|
|
178955
178953
|
if (!uniques.length) {
|
|
178956
178954
|
keywordFilters = 0;
|
|
@@ -180380,8 +180378,8 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
180380
180378
|
}
|
|
180381
180379
|
}
|
|
180382
180380
|
function getSupportedExtensionsForModuleResolution(compilerOptions, typeChecker) {
|
|
180383
|
-
const ambientModulesExtensions = !typeChecker ? [] : mapDefined(typeChecker.getAmbientModules(), (
|
|
180384
|
-
const name =
|
|
180381
|
+
const ambientModulesExtensions = !typeChecker ? [] : mapDefined(typeChecker.getAmbientModules(), (module22) => {
|
|
180382
|
+
const name = module22.name.slice(1, -1);
|
|
180385
180383
|
if (!name.startsWith("*.") || name.includes("/"))
|
|
180386
180384
|
return;
|
|
180387
180385
|
return name.slice(1);
|
|
@@ -180632,12 +180630,12 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
180632
180630
|
const packageFile = combinePaths(packageDirectory, "package.json");
|
|
180633
180631
|
if (tryFileExists(host, packageFile)) {
|
|
180634
180632
|
const packageJson = readJson(packageFile, host);
|
|
180635
|
-
const
|
|
180636
|
-
if (
|
|
180637
|
-
if (typeof
|
|
180633
|
+
const exports3 = packageJson.exports;
|
|
180634
|
+
if (exports3) {
|
|
180635
|
+
if (typeof exports3 !== "object" || exports3 === null) {
|
|
180638
180636
|
return;
|
|
180639
180637
|
}
|
|
180640
|
-
const keys = getOwnKeys(
|
|
180638
|
+
const keys = getOwnKeys(exports3);
|
|
180641
180639
|
const fragmentSubpath = components.join("/") + (components.length && hasTrailingDirectorySeparator(fragment) ? "/" : "");
|
|
180642
180640
|
const conditions = getConditions(compilerOptions, mode);
|
|
180643
180641
|
addCompletionEntriesFromPathsOrExports(
|
|
@@ -180647,7 +180645,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
180647
180645
|
extensionOptions,
|
|
180648
180646
|
host,
|
|
180649
180647
|
keys,
|
|
180650
|
-
(key) => singleElementArray(getPatternFromFirstMatchingCondition(
|
|
180648
|
+
(key) => singleElementArray(getPatternFromFirstMatchingCondition(exports3[key], conditions)),
|
|
180651
180649
|
comparePatternKeys
|
|
180652
180650
|
);
|
|
180653
180651
|
return;
|
|
@@ -180905,7 +180903,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
180905
180903
|
}
|
|
180906
180904
|
});
|
|
180907
180905
|
var ts_Completions_StringCompletions_exports = {};
|
|
180908
|
-
|
|
180906
|
+
__export2(ts_Completions_StringCompletions_exports, {
|
|
180909
180907
|
getStringLiteralCompletionDetails: () => getStringLiteralCompletionDetails,
|
|
180910
180908
|
getStringLiteralCompletions: () => getStringLiteralCompletions
|
|
180911
180909
|
});
|
|
@@ -180916,7 +180914,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
180916
180914
|
}
|
|
180917
180915
|
});
|
|
180918
180916
|
var ts_Completions_exports = {};
|
|
180919
|
-
|
|
180917
|
+
__export2(ts_Completions_exports, {
|
|
180920
180918
|
CompletionKind: () => CompletionKind,
|
|
180921
180919
|
CompletionSource: () => CompletionSource,
|
|
180922
180920
|
SortText: () => SortText,
|
|
@@ -183529,7 +183527,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
183529
183527
|
}
|
|
183530
183528
|
});
|
|
183531
183529
|
var ts_FindAllReferences_exports = {};
|
|
183532
|
-
|
|
183530
|
+
__export2(ts_FindAllReferences_exports, {
|
|
183533
183531
|
Core: () => Core,
|
|
183534
183532
|
DefinitionKind: () => DefinitionKind,
|
|
183535
183533
|
EntryKind: () => EntryKind,
|
|
@@ -184097,7 +184095,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
184097
184095
|
}
|
|
184098
184096
|
});
|
|
184099
184097
|
var ts_GoToDefinition_exports = {};
|
|
184100
|
-
|
|
184098
|
+
__export2(ts_GoToDefinition_exports, {
|
|
184101
184099
|
createDefinitionInfo: () => createDefinitionInfo,
|
|
184102
184100
|
findReferenceInPosition: () => findReferenceInPosition,
|
|
184103
184101
|
getDefinitionAndBoundSpan: () => getDefinitionAndBoundSpan,
|
|
@@ -184747,7 +184745,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
184747
184745
|
}
|
|
184748
184746
|
});
|
|
184749
184747
|
var ts_InlayHints_exports = {};
|
|
184750
|
-
|
|
184748
|
+
__export2(ts_InlayHints_exports, {
|
|
184751
184749
|
provideInlayHints: () => provideInlayHints
|
|
184752
184750
|
});
|
|
184753
184751
|
var init_ts_InlayHints = __esm({
|
|
@@ -185186,7 +185184,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
185186
185184
|
}
|
|
185187
185185
|
});
|
|
185188
185186
|
var ts_JsDoc_exports = {};
|
|
185189
|
-
|
|
185187
|
+
__export2(ts_JsDoc_exports, {
|
|
185190
185188
|
getDocCommentTemplateAtPosition: () => getDocCommentTemplateAtPosition,
|
|
185191
185189
|
getJSDocParameterNameCompletionDetails: () => getJSDocParameterNameCompletionDetails,
|
|
185192
185190
|
getJSDocParameterNameCompletions: () => getJSDocParameterNameCompletions,
|
|
@@ -185808,7 +185806,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
185808
185806
|
}
|
|
185809
185807
|
});
|
|
185810
185808
|
var ts_OrganizeImports_exports = {};
|
|
185811
|
-
|
|
185809
|
+
__export2(ts_OrganizeImports_exports, {
|
|
185812
185810
|
coalesceExports: () => coalesceExports,
|
|
185813
185811
|
coalesceImports: () => coalesceImports,
|
|
185814
185812
|
compareImportOrExportSpecifiers: () => compareImportOrExportSpecifiers,
|
|
@@ -186251,7 +186249,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
186251
186249
|
}
|
|
186252
186250
|
});
|
|
186253
186251
|
var ts_OutliningElementsCollector_exports = {};
|
|
186254
|
-
|
|
186252
|
+
__export2(ts_OutliningElementsCollector_exports, {
|
|
186255
186253
|
collectElements: () => collectElements
|
|
186256
186254
|
});
|
|
186257
186255
|
var init_ts_OutliningElementsCollector = __esm({
|
|
@@ -186420,7 +186418,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
186420
186418
|
}
|
|
186421
186419
|
});
|
|
186422
186420
|
var ts_Rename_exports = {};
|
|
186423
|
-
|
|
186421
|
+
__export2(ts_Rename_exports, {
|
|
186424
186422
|
getRenameInfo: () => getRenameInfo,
|
|
186425
186423
|
nodeIsEligibleForRename: () => nodeIsEligibleForRename
|
|
186426
186424
|
});
|
|
@@ -186970,7 +186968,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
186970
186968
|
}
|
|
186971
186969
|
});
|
|
186972
186970
|
var ts_SignatureHelp_exports = {};
|
|
186973
|
-
|
|
186971
|
+
__export2(ts_SignatureHelp_exports, {
|
|
186974
186972
|
getArgumentInfoForCompletions: () => getArgumentInfoForCompletions,
|
|
186975
186973
|
getSignatureHelpItems: () => getSignatureHelpItems
|
|
186976
186974
|
});
|
|
@@ -187216,7 +187214,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
187216
187214
|
}
|
|
187217
187215
|
});
|
|
187218
187216
|
var ts_SmartSelectionRange_exports = {};
|
|
187219
|
-
|
|
187217
|
+
__export2(ts_SmartSelectionRange_exports, {
|
|
187220
187218
|
getSmartSelectionRange: () => getSmartSelectionRange
|
|
187221
187219
|
});
|
|
187222
187220
|
var init_ts_SmartSelectionRange = __esm({
|
|
@@ -188095,7 +188093,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
188095
188093
|
}
|
|
188096
188094
|
});
|
|
188097
188095
|
var ts_SymbolDisplay_exports = {};
|
|
188098
|
-
|
|
188096
|
+
__export2(ts_SymbolDisplay_exports, {
|
|
188099
188097
|
getSymbolDisplayPartsDocumentationAndSymbolKind: () => getSymbolDisplayPartsDocumentationAndSymbolKind,
|
|
188100
188098
|
getSymbolKind: () => getSymbolKind,
|
|
188101
188099
|
getSymbolModifiers: () => getSymbolModifiers
|
|
@@ -189522,7 +189520,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
189522
189520
|
}
|
|
189523
189521
|
});
|
|
189524
189522
|
var ts_textChanges_exports = {};
|
|
189525
|
-
|
|
189523
|
+
__export2(ts_textChanges_exports, {
|
|
189526
189524
|
ChangeTracker: () => ChangeTracker,
|
|
189527
189525
|
LeadingTriviaOption: () => LeadingTriviaOption,
|
|
189528
189526
|
TrailingTriviaOption: () => TrailingTriviaOption,
|
|
@@ -193420,7 +193418,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
193420
193418
|
}
|
|
193421
193419
|
});
|
|
193422
193420
|
var ts_formatting_exports = {};
|
|
193423
|
-
|
|
193421
|
+
__export2(ts_formatting_exports, {
|
|
193424
193422
|
FormattingContext: () => FormattingContext,
|
|
193425
193423
|
FormattingRequestKind: () => FormattingRequestKind,
|
|
193426
193424
|
RuleAction: () => RuleAction,
|
|
@@ -194022,7 +194020,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
194022
194020
|
}
|
|
194023
194021
|
});
|
|
194024
194022
|
var ts_server_typingsInstaller_exports = {};
|
|
194025
|
-
|
|
194023
|
+
__export2(ts_server_typingsInstaller_exports, {
|
|
194026
194024
|
TypingsInstaller: () => TypingsInstaller,
|
|
194027
194025
|
getNpmCommandForInstallation: () => getNpmCommandForInstallation,
|
|
194028
194026
|
installNpmPackages: () => installNpmPackages,
|
|
@@ -194475,7 +194473,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
194475
194473
|
}
|
|
194476
194474
|
});
|
|
194477
194475
|
var ts_server_protocol_exports = {};
|
|
194478
|
-
|
|
194476
|
+
__export2(ts_server_protocol_exports, {
|
|
194479
194477
|
ClassificationType: () => ClassificationType2,
|
|
194480
194478
|
CommandTypes: () => CommandTypes,
|
|
194481
194479
|
CompletionTriggerKind: () => CompletionTriggerKind2,
|
|
@@ -205454,7 +205452,7 @@ ${e.message}`;
|
|
|
205454
205452
|
}
|
|
205455
205453
|
});
|
|
205456
205454
|
var ts_server_exports3 = {};
|
|
205457
|
-
|
|
205455
|
+
__export2(ts_server_exports3, {
|
|
205458
205456
|
ActionInvalidate: () => ActionInvalidate,
|
|
205459
205457
|
ActionPackageInstalled: () => ActionPackageInstalled,
|
|
205460
205458
|
ActionSet: () => ActionSet,
|
|
@@ -205570,7 +205568,7 @@ ${e.message}`;
|
|
|
205570
205568
|
}
|
|
205571
205569
|
});
|
|
205572
205570
|
var ts_exports2 = {};
|
|
205573
|
-
|
|
205571
|
+
__export2(ts_exports2, {
|
|
205574
205572
|
ANONYMOUS: () => ANONYMOUS,
|
|
205575
205573
|
AccessFlags: () => AccessFlags,
|
|
205576
205574
|
AssertionLevel: () => AssertionLevel,
|
|
@@ -207870,7 +207868,7 @@ ${e.message}`;
|
|
|
207870
207868
|
}
|
|
207871
207869
|
});
|
|
207872
207870
|
var ts_server_exports4 = {};
|
|
207873
|
-
|
|
207871
|
+
__export2(ts_server_exports4, {
|
|
207874
207872
|
ActionInvalidate: () => ActionInvalidate,
|
|
207875
207873
|
ActionPackageInstalled: () => ActionPackageInstalled,
|
|
207876
207874
|
ActionSet: () => ActionSet,
|
|
@@ -207974,7 +207972,7 @@ ${e.message}`;
|
|
|
207974
207972
|
}
|
|
207975
207973
|
});
|
|
207976
207974
|
var ts_exports3 = {};
|
|
207977
|
-
|
|
207975
|
+
__export2(ts_exports3, {
|
|
207978
207976
|
ANONYMOUS: () => ANONYMOUS,
|
|
207979
207977
|
AccessFlags: () => AccessFlags,
|
|
207980
207978
|
AssertionLevel: () => AssertionLevel,
|
|
@@ -210274,7 +210272,7 @@ ${e.message}`;
|
|
|
210274
210272
|
}
|
|
210275
210273
|
});
|
|
210276
210274
|
var require_typescript2 = __commonJS2({
|
|
210277
|
-
"src/typescript/typescript.ts"(
|
|
210275
|
+
"src/typescript/typescript.ts"(exports3, module22) {
|
|
210278
210276
|
init_ts8();
|
|
210279
210277
|
init_ts8();
|
|
210280
210278
|
if (typeof console !== "undefined") {
|
|
@@ -210293,29 +210291,29 @@ ${e.message}`;
|
|
|
210293
210291
|
}
|
|
210294
210292
|
};
|
|
210295
210293
|
}
|
|
210296
|
-
|
|
210294
|
+
module22.exports = ts_exports3;
|
|
210297
210295
|
}
|
|
210298
210296
|
});
|
|
210299
210297
|
return require_typescript2();
|
|
210300
210298
|
})();
|
|
210301
|
-
if (typeof
|
|
210302
|
-
|
|
210299
|
+
if (typeof module2 !== "undefined" && module2.exports) {
|
|
210300
|
+
module2.exports = ts;
|
|
210303
210301
|
}
|
|
210304
210302
|
}
|
|
210305
210303
|
});
|
|
210306
210304
|
|
|
210307
210305
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/loaders.js
|
|
210308
210306
|
var require_loaders = __commonJS({
|
|
210309
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/loaders.js"(
|
|
210307
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/loaders.js"(exports2) {
|
|
210310
210308
|
"use strict";
|
|
210311
|
-
var __importDefault =
|
|
210309
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
210312
210310
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
210313
210311
|
};
|
|
210314
|
-
Object.defineProperty(
|
|
210315
|
-
|
|
210312
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210313
|
+
exports2.loadTs = exports2.loadTsSync = exports2.loadYaml = exports2.loadJson = exports2.loadJs = exports2.loadJsSync = void 0;
|
|
210316
210314
|
var fse = require_lib();
|
|
210317
|
-
var path_1 = __importDefault(
|
|
210318
|
-
var url_1 =
|
|
210315
|
+
var path_1 = __importDefault(require("node:path"));
|
|
210316
|
+
var url_1 = require("node:url");
|
|
210319
210317
|
var importFresh;
|
|
210320
210318
|
var loadJsSync = function loadJsSync2(filepath) {
|
|
210321
210319
|
if (importFresh === void 0) {
|
|
@@ -210323,14 +210321,14 @@ var require_loaders = __commonJS({
|
|
|
210323
210321
|
}
|
|
210324
210322
|
return importFresh(filepath);
|
|
210325
210323
|
};
|
|
210326
|
-
|
|
210324
|
+
exports2.loadJsSync = loadJsSync;
|
|
210327
210325
|
var loadJs = async function loadJs2(filepath) {
|
|
210328
210326
|
try {
|
|
210329
210327
|
const { href } = (0, url_1.pathToFileURL)(filepath);
|
|
210330
210328
|
return (await import(href)).default;
|
|
210331
210329
|
} catch (error) {
|
|
210332
210330
|
try {
|
|
210333
|
-
return (0,
|
|
210331
|
+
return (0, exports2.loadJsSync)(filepath, "");
|
|
210334
210332
|
} catch (requireError) {
|
|
210335
210333
|
if (requireError.code === "ERRrequire_ESM" || requireError instanceof SyntaxError && requireError.toString().includes("Cannot use import statement outside a module")) {
|
|
210336
210334
|
throw error;
|
|
@@ -210339,7 +210337,7 @@ var require_loaders = __commonJS({
|
|
|
210339
210337
|
}
|
|
210340
210338
|
}
|
|
210341
210339
|
};
|
|
210342
|
-
|
|
210340
|
+
exports2.loadJs = loadJs;
|
|
210343
210341
|
var parseJson;
|
|
210344
210342
|
var loadJson = function loadJson2(filepath, content) {
|
|
210345
210343
|
if (parseJson === void 0) {
|
|
@@ -210353,7 +210351,7 @@ ${error.message}`;
|
|
|
210353
210351
|
throw error;
|
|
210354
210352
|
}
|
|
210355
210353
|
};
|
|
210356
|
-
|
|
210354
|
+
exports2.loadJson = loadJson;
|
|
210357
210355
|
var yaml;
|
|
210358
210356
|
var loadYaml = function loadYaml2(filepath, content) {
|
|
210359
210357
|
if (yaml === void 0) {
|
|
@@ -210367,7 +210365,7 @@ ${error.message}`;
|
|
|
210367
210365
|
throw error;
|
|
210368
210366
|
}
|
|
210369
210367
|
};
|
|
210370
|
-
|
|
210368
|
+
exports2.loadYaml = loadYaml;
|
|
210371
210369
|
var typescript;
|
|
210372
210370
|
var loadTsSync = function loadTsSync2(filepath, content) {
|
|
210373
210371
|
if (typescript === void 0) {
|
|
@@ -210385,7 +210383,7 @@ ${error.message}`;
|
|
|
210385
210383
|
};
|
|
210386
210384
|
content = typescript.transpileModule(content, config).outputText;
|
|
210387
210385
|
(0, fse.writeFileSync)(compiledFilepath, content);
|
|
210388
|
-
return (0,
|
|
210386
|
+
return (0, exports2.loadJsSync)(compiledFilepath, content).default;
|
|
210389
210387
|
} catch (error) {
|
|
210390
210388
|
error.message = `TypeScript Error in ${filepath}:
|
|
210391
210389
|
${error.message}`;
|
|
@@ -210396,7 +210394,7 @@ ${error.message}`;
|
|
|
210396
210394
|
}
|
|
210397
210395
|
}
|
|
210398
210396
|
};
|
|
210399
|
-
|
|
210397
|
+
exports2.loadTsSync = loadTsSync;
|
|
210400
210398
|
var loadTs = async function loadTs2(filepath, content) {
|
|
210401
210399
|
if (typescript === void 0) {
|
|
210402
210400
|
typescript = (await Promise.resolve().then(() => __toESM(require_typescript()))).default;
|
|
@@ -210420,14 +210418,14 @@ ${error.message}`;
|
|
|
210420
210418
|
${error.message}`;
|
|
210421
210419
|
throw error;
|
|
210422
210420
|
}
|
|
210423
|
-
return await (0,
|
|
210421
|
+
return await (0, exports2.loadJs)(compiledFilepath, transpiledContent);
|
|
210424
210422
|
} finally {
|
|
210425
210423
|
if ((0, fse.pathExistsSync)(compiledFilepath)) {
|
|
210426
210424
|
await (0, fse.remove)(compiledFilepath);
|
|
210427
210425
|
}
|
|
210428
210426
|
}
|
|
210429
210427
|
};
|
|
210430
|
-
|
|
210428
|
+
exports2.loadTs = loadTs;
|
|
210431
210429
|
function resolveTsConfig(directory) {
|
|
210432
210430
|
const filePath = typescript.findConfigFile(directory, (fileName) => {
|
|
210433
210431
|
return typescript.sys.fileExists(fileName);
|
|
@@ -210446,10 +210444,10 @@ ${error.message}`;
|
|
|
210446
210444
|
|
|
210447
210445
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/defaults.js
|
|
210448
210446
|
var require_defaults = __commonJS({
|
|
210449
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/defaults.js"(
|
|
210447
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/defaults.js"(exports2) {
|
|
210450
210448
|
"use strict";
|
|
210451
|
-
Object.defineProperty(
|
|
210452
|
-
|
|
210449
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210450
|
+
exports2.defaultLoadersSync = exports2.defaultLoaders = exports2.metaSearchPlaces = exports2.globalConfigSearchPlacesSync = exports2.globalConfigSearchPlaces = exports2.getDefaultSearchPlacesSync = exports2.getDefaultSearchPlaces = void 0;
|
|
210453
210451
|
var loaders_1 = require_loaders();
|
|
210454
210452
|
function getDefaultSearchPlaces(moduleName) {
|
|
210455
210453
|
return [
|
|
@@ -210476,7 +210474,7 @@ var require_defaults = __commonJS({
|
|
|
210476
210474
|
`${moduleName}.config.mjs`
|
|
210477
210475
|
];
|
|
210478
210476
|
}
|
|
210479
|
-
|
|
210477
|
+
exports2.getDefaultSearchPlaces = getDefaultSearchPlaces;
|
|
210480
210478
|
function getDefaultSearchPlacesSync(moduleName) {
|
|
210481
210479
|
return [
|
|
210482
210480
|
"package.json",
|
|
@@ -210499,8 +210497,8 @@ var require_defaults = __commonJS({
|
|
|
210499
210497
|
`${moduleName}.config.cjs`
|
|
210500
210498
|
];
|
|
210501
210499
|
}
|
|
210502
|
-
|
|
210503
|
-
|
|
210500
|
+
exports2.getDefaultSearchPlacesSync = getDefaultSearchPlacesSync;
|
|
210501
|
+
exports2.globalConfigSearchPlaces = [
|
|
210504
210502
|
"config",
|
|
210505
210503
|
"config.json",
|
|
210506
210504
|
"config.yaml",
|
|
@@ -210510,7 +210508,7 @@ var require_defaults = __commonJS({
|
|
|
210510
210508
|
"config.cjs",
|
|
210511
210509
|
"config.mjs"
|
|
210512
210510
|
];
|
|
210513
|
-
|
|
210511
|
+
exports2.globalConfigSearchPlacesSync = [
|
|
210514
210512
|
"config",
|
|
210515
210513
|
"config.json",
|
|
210516
210514
|
"config.yaml",
|
|
@@ -210519,7 +210517,7 @@ var require_defaults = __commonJS({
|
|
|
210519
210517
|
"config.ts",
|
|
210520
210518
|
"config.cjs"
|
|
210521
210519
|
];
|
|
210522
|
-
|
|
210520
|
+
exports2.metaSearchPlaces = [
|
|
210523
210521
|
"package.json",
|
|
210524
210522
|
"package.yaml",
|
|
210525
210523
|
".config/config.json",
|
|
@@ -210530,7 +210528,7 @@ var require_defaults = __commonJS({
|
|
|
210530
210528
|
".config/config.cjs",
|
|
210531
210529
|
".config/config.mjs"
|
|
210532
210530
|
];
|
|
210533
|
-
|
|
210531
|
+
exports2.defaultLoaders = Object.freeze({
|
|
210534
210532
|
".mjs": loaders_1.loadJs,
|
|
210535
210533
|
".cjs": loaders_1.loadJs,
|
|
210536
210534
|
".js": loaders_1.loadJs,
|
|
@@ -210540,7 +210538,7 @@ var require_defaults = __commonJS({
|
|
|
210540
210538
|
".yml": loaders_1.loadYaml,
|
|
210541
210539
|
noExt: loaders_1.loadYaml
|
|
210542
210540
|
});
|
|
210543
|
-
|
|
210541
|
+
exports2.defaultLoadersSync = Object.freeze({
|
|
210544
210542
|
".cjs": loaders_1.loadJsSync,
|
|
210545
210543
|
".js": loaders_1.loadJsSync,
|
|
210546
210544
|
".ts": loaders_1.loadTsSync,
|
|
@@ -210554,10 +210552,10 @@ var require_defaults = __commonJS({
|
|
|
210554
210552
|
|
|
210555
210553
|
// node_modules/.pnpm/env-paths@2.2.1/node_modules/env-paths/index.js
|
|
210556
210554
|
var require_env_paths = __commonJS({
|
|
210557
|
-
"node_modules/.pnpm/env-paths@2.2.1/node_modules/env-paths/index.js"(
|
|
210555
|
+
"node_modules/.pnpm/env-paths@2.2.1/node_modules/env-paths/index.js"(exports2, module2) {
|
|
210558
210556
|
"use strict";
|
|
210559
|
-
var path =
|
|
210560
|
-
var os =
|
|
210557
|
+
var path = require("path");
|
|
210558
|
+
var os = require("os");
|
|
210561
210559
|
var homedir = os.homedir();
|
|
210562
210560
|
var tmpdir = os.tmpdir();
|
|
210563
210561
|
var { env } = process;
|
|
@@ -210610,16 +210608,16 @@ var require_env_paths = __commonJS({
|
|
|
210610
210608
|
}
|
|
210611
210609
|
return linux(name);
|
|
210612
210610
|
};
|
|
210613
|
-
|
|
210614
|
-
|
|
210611
|
+
module2.exports = envPaths;
|
|
210612
|
+
module2.exports.default = envPaths;
|
|
210615
210613
|
}
|
|
210616
210614
|
});
|
|
210617
210615
|
|
|
210618
210616
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/util.js
|
|
210619
210617
|
var require_util3 = __commonJS({
|
|
210620
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/util.js"(
|
|
210618
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/util.js"(exports2) {
|
|
210621
210619
|
"use strict";
|
|
210622
|
-
var __createBinding =
|
|
210620
|
+
var __createBinding = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
210623
210621
|
if (k2 === void 0)
|
|
210624
210622
|
k2 = k;
|
|
210625
210623
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -210634,12 +210632,12 @@ var require_util3 = __commonJS({
|
|
|
210634
210632
|
k2 = k;
|
|
210635
210633
|
o[k2] = m[k];
|
|
210636
210634
|
});
|
|
210637
|
-
var __setModuleDefault =
|
|
210635
|
+
var __setModuleDefault = exports2 && exports2.__setModuleDefault || (Object.create ? function(o, v) {
|
|
210638
210636
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
210639
210637
|
} : function(o, v) {
|
|
210640
210638
|
o["default"] = v;
|
|
210641
210639
|
});
|
|
210642
|
-
var __importStar =
|
|
210640
|
+
var __importStar = exports2 && exports2.__importStar || function(mod) {
|
|
210643
210641
|
if (mod && mod.__esModule)
|
|
210644
210642
|
return mod;
|
|
210645
210643
|
var result = {};
|
|
@@ -210651,9 +210649,9 @@ var require_util3 = __commonJS({
|
|
|
210651
210649
|
__setModuleDefault(result, mod);
|
|
210652
210650
|
return result;
|
|
210653
210651
|
};
|
|
210654
|
-
Object.defineProperty(
|
|
210655
|
-
|
|
210656
|
-
var fs_1 = __importStar(
|
|
210652
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210653
|
+
exports2.isDirectorySync = exports2.isDirectory = exports2.removeUndefinedValuesFromObject = exports2.getPropertyByPath = exports2.emplace = void 0;
|
|
210654
|
+
var fs_1 = __importStar(require("fs"));
|
|
210657
210655
|
function emplace(map, key, fn) {
|
|
210658
210656
|
const cached = map.get(key);
|
|
210659
210657
|
if (cached !== void 0) {
|
|
@@ -210663,7 +210661,7 @@ var require_util3 = __commonJS({
|
|
|
210663
210661
|
map.set(key, result);
|
|
210664
210662
|
return result;
|
|
210665
210663
|
}
|
|
210666
|
-
|
|
210664
|
+
exports2.emplace = emplace;
|
|
210667
210665
|
function getPropertyByPath(source, path) {
|
|
210668
210666
|
if (typeof path === "string" && Object.prototype.hasOwnProperty.call(source, path)) {
|
|
210669
210667
|
return source[path];
|
|
@@ -210676,11 +210674,11 @@ var require_util3 = __commonJS({
|
|
|
210676
210674
|
return previous[key];
|
|
210677
210675
|
}, source);
|
|
210678
210676
|
}
|
|
210679
|
-
|
|
210677
|
+
exports2.getPropertyByPath = getPropertyByPath;
|
|
210680
210678
|
function removeUndefinedValuesFromObject(options) {
|
|
210681
210679
|
return Object.fromEntries(Object.entries(options).filter(([, value]) => value !== void 0));
|
|
210682
210680
|
}
|
|
210683
|
-
|
|
210681
|
+
exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
|
|
210684
210682
|
async function isDirectory(path) {
|
|
210685
210683
|
try {
|
|
210686
210684
|
const stat2 = await fs_1.promises.stat(path);
|
|
@@ -210692,7 +210690,7 @@ var require_util3 = __commonJS({
|
|
|
210692
210690
|
throw e;
|
|
210693
210691
|
}
|
|
210694
210692
|
}
|
|
210695
|
-
|
|
210693
|
+
exports2.isDirectory = isDirectory;
|
|
210696
210694
|
function isDirectorySync(path) {
|
|
210697
210695
|
try {
|
|
210698
210696
|
const stat2 = fs_1.default.statSync(path);
|
|
@@ -210704,22 +210702,22 @@ var require_util3 = __commonJS({
|
|
|
210704
210702
|
throw e;
|
|
210705
210703
|
}
|
|
210706
210704
|
}
|
|
210707
|
-
|
|
210705
|
+
exports2.isDirectorySync = isDirectorySync;
|
|
210708
210706
|
}
|
|
210709
210707
|
});
|
|
210710
210708
|
|
|
210711
210709
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerBase.js
|
|
210712
210710
|
var require_ExplorerBase = __commonJS({
|
|
210713
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerBase.js"(
|
|
210711
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerBase.js"(exports2) {
|
|
210714
210712
|
"use strict";
|
|
210715
|
-
var __importDefault =
|
|
210713
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
210716
210714
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
210717
210715
|
};
|
|
210718
|
-
Object.defineProperty(
|
|
210719
|
-
|
|
210716
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210717
|
+
exports2.getExtensionDescription = exports2.ExplorerBase = void 0;
|
|
210720
210718
|
var env_paths_1 = __importDefault(require_env_paths());
|
|
210721
|
-
var os_1 = __importDefault(
|
|
210722
|
-
var path_1 = __importDefault(
|
|
210719
|
+
var os_1 = __importDefault(require("os"));
|
|
210720
|
+
var path_1 = __importDefault(require("path"));
|
|
210723
210721
|
var util_js_1 = require_util3();
|
|
210724
210722
|
var ExplorerBase = class {
|
|
210725
210723
|
#loadingMetaConfig = false;
|
|
@@ -210818,21 +210816,21 @@ ${[...importStack, fullPath].map((path, i) => `${i + 1}. ${path}`).join("\n")} (
|
|
|
210818
210816
|
yield { path: this.getGlobalConfigDir(), isGlobalConfig: true };
|
|
210819
210817
|
}
|
|
210820
210818
|
};
|
|
210821
|
-
|
|
210819
|
+
exports2.ExplorerBase = ExplorerBase;
|
|
210822
210820
|
function getExtensionDescription(extension) {
|
|
210823
210821
|
return extension ? `extension "${extension}"` : "files without extensions";
|
|
210824
210822
|
}
|
|
210825
|
-
|
|
210823
|
+
exports2.getExtensionDescription = getExtensionDescription;
|
|
210826
210824
|
}
|
|
210827
210825
|
});
|
|
210828
210826
|
|
|
210829
210827
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/merge.js
|
|
210830
210828
|
var require_merge2 = __commonJS({
|
|
210831
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/merge.js"(
|
|
210829
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/merge.js"(exports2) {
|
|
210832
210830
|
"use strict";
|
|
210833
|
-
Object.defineProperty(
|
|
210834
|
-
|
|
210835
|
-
|
|
210831
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210832
|
+
exports2.mergeAll = exports2.hasOwn = void 0;
|
|
210833
|
+
exports2.hasOwn = Function.prototype.call.bind(Object.prototype.hasOwnProperty);
|
|
210836
210834
|
var objToString = Function.prototype.call.bind(Object.prototype.toString);
|
|
210837
210835
|
function isPlainObject(obj) {
|
|
210838
210836
|
return objToString(obj) === "[object Object]";
|
|
@@ -210840,7 +210838,7 @@ var require_merge2 = __commonJS({
|
|
|
210840
210838
|
function merge(target, source, options) {
|
|
210841
210839
|
for (const key of Object.keys(source)) {
|
|
210842
210840
|
const newValue = source[key];
|
|
210843
|
-
if ((0,
|
|
210841
|
+
if ((0, exports2.hasOwn)(target, key)) {
|
|
210844
210842
|
if (Array.isArray(target[key]) && Array.isArray(newValue)) {
|
|
210845
210843
|
if (options.mergeArrays) {
|
|
210846
210844
|
target[key].push(...newValue);
|
|
@@ -210858,21 +210856,21 @@ var require_merge2 = __commonJS({
|
|
|
210858
210856
|
function mergeAll(objects, options) {
|
|
210859
210857
|
return objects.reduce((target, source) => merge(target, source, options), {});
|
|
210860
210858
|
}
|
|
210861
|
-
|
|
210859
|
+
exports2.mergeAll = mergeAll;
|
|
210862
210860
|
}
|
|
210863
210861
|
});
|
|
210864
210862
|
|
|
210865
210863
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/Explorer.js
|
|
210866
210864
|
var require_Explorer = __commonJS({
|
|
210867
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/Explorer.js"(
|
|
210865
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/Explorer.js"(exports2) {
|
|
210868
210866
|
"use strict";
|
|
210869
|
-
var __importDefault =
|
|
210867
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
210870
210868
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
210871
210869
|
};
|
|
210872
|
-
Object.defineProperty(
|
|
210873
|
-
|
|
210874
|
-
var promises_1 = __importDefault(
|
|
210875
|
-
var path_1 = __importDefault(
|
|
210870
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210871
|
+
exports2.Explorer = void 0;
|
|
210872
|
+
var promises_1 = __importDefault(require("fs/promises"));
|
|
210873
|
+
var path_1 = __importDefault(require("path"));
|
|
210876
210874
|
var defaults_1 = require_defaults();
|
|
210877
210875
|
var ExplorerBase_js_1 = require_ExplorerBase();
|
|
210878
210876
|
var merge_1 = require_merge2();
|
|
@@ -211016,21 +211014,21 @@ var require_Explorer = __commonJS({
|
|
|
211016
211014
|
}
|
|
211017
211015
|
}
|
|
211018
211016
|
};
|
|
211019
|
-
|
|
211017
|
+
exports2.Explorer = Explorer;
|
|
211020
211018
|
}
|
|
211021
211019
|
});
|
|
211022
211020
|
|
|
211023
211021
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerSync.js
|
|
211024
211022
|
var require_ExplorerSync = __commonJS({
|
|
211025
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerSync.js"(
|
|
211023
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/ExplorerSync.js"(exports2) {
|
|
211026
211024
|
"use strict";
|
|
211027
|
-
var __importDefault =
|
|
211025
|
+
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
211028
211026
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
211029
211027
|
};
|
|
211030
|
-
Object.defineProperty(
|
|
211031
|
-
|
|
211032
|
-
var fs_1 = __importDefault(
|
|
211033
|
-
var path_1 = __importDefault(
|
|
211028
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
211029
|
+
exports2.ExplorerSync = void 0;
|
|
211030
|
+
var fs_1 = __importDefault(require("fs"));
|
|
211031
|
+
var path_1 = __importDefault(require("path"));
|
|
211034
211032
|
var defaults_1 = require_defaults();
|
|
211035
211033
|
var ExplorerBase_js_1 = require_ExplorerBase();
|
|
211036
211034
|
var merge_1 = require_merge2();
|
|
@@ -211188,33 +211186,33 @@ var require_ExplorerSync = __commonJS({
|
|
|
211188
211186
|
return this.search(from);
|
|
211189
211187
|
}
|
|
211190
211188
|
};
|
|
211191
|
-
|
|
211189
|
+
exports2.ExplorerSync = ExplorerSync;
|
|
211192
211190
|
}
|
|
211193
211191
|
});
|
|
211194
211192
|
|
|
211195
211193
|
// node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/index.js
|
|
211196
211194
|
var require_dist = __commonJS({
|
|
211197
|
-
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/index.js"(
|
|
211195
|
+
"node_modules/.pnpm/cosmiconfig@9.0.0_patch_hash=kvwqsvntptc5dck76ulq454vwi_typescript@5.3.3/node_modules/cosmiconfig/dist/index.js"(exports2) {
|
|
211198
211196
|
"use strict";
|
|
211199
|
-
Object.defineProperty(
|
|
211200
|
-
|
|
211197
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
211198
|
+
exports2.defaultLoadersSync = exports2.defaultLoaders = exports2.globalConfigSearchPlacesSync = exports2.globalConfigSearchPlaces = exports2.getDefaultSearchPlacesSync = exports2.getDefaultSearchPlaces = exports2.cosmiconfigSync = exports2.cosmiconfig = void 0;
|
|
211201
211199
|
var defaults_1 = require_defaults();
|
|
211202
|
-
Object.defineProperty(
|
|
211200
|
+
Object.defineProperty(exports2, "defaultLoaders", { enumerable: true, get: function() {
|
|
211203
211201
|
return defaults_1.defaultLoaders;
|
|
211204
211202
|
} });
|
|
211205
|
-
Object.defineProperty(
|
|
211203
|
+
Object.defineProperty(exports2, "defaultLoadersSync", { enumerable: true, get: function() {
|
|
211206
211204
|
return defaults_1.defaultLoadersSync;
|
|
211207
211205
|
} });
|
|
211208
|
-
Object.defineProperty(
|
|
211206
|
+
Object.defineProperty(exports2, "getDefaultSearchPlaces", { enumerable: true, get: function() {
|
|
211209
211207
|
return defaults_1.getDefaultSearchPlaces;
|
|
211210
211208
|
} });
|
|
211211
|
-
Object.defineProperty(
|
|
211209
|
+
Object.defineProperty(exports2, "getDefaultSearchPlacesSync", { enumerable: true, get: function() {
|
|
211212
211210
|
return defaults_1.getDefaultSearchPlacesSync;
|
|
211213
211211
|
} });
|
|
211214
|
-
Object.defineProperty(
|
|
211212
|
+
Object.defineProperty(exports2, "globalConfigSearchPlaces", { enumerable: true, get: function() {
|
|
211215
211213
|
return defaults_1.globalConfigSearchPlaces;
|
|
211216
211214
|
} });
|
|
211217
|
-
Object.defineProperty(
|
|
211215
|
+
Object.defineProperty(exports2, "globalConfigSearchPlacesSync", { enumerable: true, get: function() {
|
|
211218
211216
|
return defaults_1.globalConfigSearchPlacesSync;
|
|
211219
211217
|
} });
|
|
211220
211218
|
var Explorer_js_1 = require_Explorer();
|
|
@@ -211339,7 +211337,7 @@ var require_dist = __commonJS({
|
|
|
211339
211337
|
clearCaches: explorer.clearCaches.bind(explorer)
|
|
211340
211338
|
};
|
|
211341
211339
|
}
|
|
211342
|
-
|
|
211340
|
+
exports2.cosmiconfig = cosmiconfig;
|
|
211343
211341
|
function cosmiconfigSync(moduleName, options = {}) {
|
|
211344
211342
|
const normalizedOptions = mergeOptionsSync(moduleName, options);
|
|
211345
211343
|
const explorerSync = new ExplorerSync_js_1.ExplorerSync(normalizedOptions);
|
|
@@ -211351,25 +211349,67 @@ var require_dist = __commonJS({
|
|
|
211351
211349
|
clearCaches: explorerSync.clearCaches.bind(explorerSync)
|
|
211352
211350
|
};
|
|
211353
211351
|
}
|
|
211354
|
-
|
|
211352
|
+
exports2.cosmiconfigSync = cosmiconfigSync;
|
|
211355
211353
|
}
|
|
211356
211354
|
});
|
|
211357
211355
|
|
|
211356
|
+
// packages/config-tools/src/index.ts
|
|
211357
|
+
var src_exports = {};
|
|
211358
|
+
__export(src_exports, {
|
|
211359
|
+
DEFAULT_COLOR_CONFIG: () => DEFAULT_COLOR_CONFIG,
|
|
211360
|
+
DEFAULT_STORM_CONFIG: () => DEFAULT_STORM_CONFIG,
|
|
211361
|
+
LARGE_BUFFER: () => LARGE_BUFFER,
|
|
211362
|
+
LogLevel: () => LogLevel,
|
|
211363
|
+
LogLevelLabel: () => LogLevelLabel,
|
|
211364
|
+
createConfig: () => createConfig,
|
|
211365
|
+
createConfigExtension: () => createConfigExtension,
|
|
211366
|
+
createStormConfig: () => createStormConfig,
|
|
211367
|
+
exitWithError: () => exitWithError,
|
|
211368
|
+
exitWithSuccess: () => exitWithSuccess,
|
|
211369
|
+
findWorkspaceRoot: () => findWorkspaceRoot,
|
|
211370
|
+
findWorkspaceRootSafe: () => findWorkspaceRootSafe,
|
|
211371
|
+
getConfigEnv: () => getConfigEnv,
|
|
211372
|
+
getConfigFile: () => getConfigFile,
|
|
211373
|
+
getConfigFileByName: () => getConfigFileByName,
|
|
211374
|
+
getConfigFileExplorer: () => getConfigFileExplorer,
|
|
211375
|
+
getDefaultConfig: () => getDefaultConfig,
|
|
211376
|
+
getExtensionEnv: () => getExtensionEnv,
|
|
211377
|
+
getJsonConfigFile: () => getJsonConfigFile,
|
|
211378
|
+
getLogFn: () => getLogFn,
|
|
211379
|
+
getLogLevel: () => getLogLevel,
|
|
211380
|
+
getLogLevelLabel: () => getLogLevelLabel,
|
|
211381
|
+
getStopwatch: () => getStopwatch,
|
|
211382
|
+
handleProcess: () => handleProcess,
|
|
211383
|
+
loadStormConfig: () => loadStormConfig,
|
|
211384
|
+
run: () => run,
|
|
211385
|
+
setConfigEnv: () => setConfigEnv,
|
|
211386
|
+
setExtensionEnv: () => setExtensionEnv,
|
|
211387
|
+
writeDebug: () => writeDebug,
|
|
211388
|
+
writeError: () => writeError,
|
|
211389
|
+
writeFatal: () => writeFatal,
|
|
211390
|
+
writeInfo: () => writeInfo,
|
|
211391
|
+
writeSuccess: () => writeSuccess,
|
|
211392
|
+
writeSystem: () => writeSystem,
|
|
211393
|
+
writeTrace: () => writeTrace,
|
|
211394
|
+
writeWarning: () => writeWarning
|
|
211395
|
+
});
|
|
211396
|
+
module.exports = __toCommonJS(src_exports);
|
|
211397
|
+
|
|
211358
211398
|
// packages/config-tools/src/config-file/get-config-file.ts
|
|
211359
|
-
|
|
211399
|
+
var import_node_path2 = require("node:path");
|
|
211360
211400
|
|
|
211361
211401
|
// packages/config-tools/src/utilities/find-up.ts
|
|
211362
|
-
|
|
211363
|
-
|
|
211402
|
+
var import_node_fs = require("node:fs");
|
|
211403
|
+
var import_node_path = require("node:path");
|
|
211364
211404
|
var MAX_PATH_SEARCH_DEPTH = 30;
|
|
211365
211405
|
var depth = 0;
|
|
211366
211406
|
function findFolderUp(startPath, endFileNames) {
|
|
211367
211407
|
const _startPath = startPath ?? process.cwd();
|
|
211368
|
-
if (endFileNames.some((endFileName) => existsSync(join(_startPath, endFileName)))) {
|
|
211408
|
+
if (endFileNames.some((endFileName) => (0, import_node_fs.existsSync)((0, import_node_path.join)(_startPath, endFileName)))) {
|
|
211369
211409
|
return _startPath;
|
|
211370
211410
|
}
|
|
211371
211411
|
if (_startPath !== "/" && depth++ < MAX_PATH_SEARCH_DEPTH) {
|
|
211372
|
-
const parent = join(_startPath, "..");
|
|
211412
|
+
const parent = (0, import_node_path.join)(_startPath, "..");
|
|
211373
211413
|
return findFolderUp(parent, endFileNames);
|
|
211374
211414
|
}
|
|
211375
211415
|
return void 0;
|
|
@@ -211429,12 +211469,12 @@ Path: ${pathInsideMonorepo ? pathInsideMonorepo : process.cwd()}`
|
|
|
211429
211469
|
}
|
|
211430
211470
|
|
|
211431
211471
|
// packages/config-tools/src/config-file/get-config-file.ts
|
|
211432
|
-
|
|
211472
|
+
var import_promises = require("node:fs/promises");
|
|
211433
211473
|
var _cosmiconfig = void 0;
|
|
211434
211474
|
var defaultExplorer;
|
|
211435
211475
|
var getConfigFileExplorer = async (fileName) => {
|
|
211436
211476
|
if (!_cosmiconfig) {
|
|
211437
|
-
const mod = await Promise.resolve().then(() => __toESM(require_dist()
|
|
211477
|
+
const mod = await Promise.resolve().then(() => __toESM(require_dist()));
|
|
211438
211478
|
if (mod?.cosmiconfig) {
|
|
211439
211479
|
_cosmiconfig = mod.cosmiconfig;
|
|
211440
211480
|
}
|
|
@@ -211448,13 +211488,13 @@ var getConfigFileByName = async (fileName, filePath) => {
|
|
|
211448
211488
|
return (await getConfigFileExplorer(fileName))?.search(filePath);
|
|
211449
211489
|
};
|
|
211450
211490
|
var getJsonConfigFile = async (fileName, filePath) => {
|
|
211451
|
-
const jsonPath =
|
|
211491
|
+
const jsonPath = (0, import_node_path2.join)(
|
|
211452
211492
|
filePath ?? process.cwd(),
|
|
211453
211493
|
fileName.endsWith(".json") ? fileName : `${fileName}.json`
|
|
211454
211494
|
);
|
|
211455
|
-
const isEmpty = !!await stat(jsonPath).catch((_) => false);
|
|
211495
|
+
const isEmpty = !!await (0, import_promises.stat)(jsonPath).catch((_) => false);
|
|
211456
211496
|
return isEmpty ? {
|
|
211457
|
-
config: JSON.parse(await readFile(jsonPath, "utf-8")),
|
|
211497
|
+
config: JSON.parse(await (0, import_promises.readFile)(jsonPath, "utf-8")),
|
|
211458
211498
|
filepath: jsonPath,
|
|
211459
211499
|
isEmpty
|
|
211460
211500
|
} : { config: {}, filepath: jsonPath, isEmpty };
|
|
@@ -211492,8 +211532,8 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
211492
211532
|
};
|
|
211493
211533
|
|
|
211494
211534
|
// packages/config-tools/src/utilities/get-default-config.ts
|
|
211495
|
-
|
|
211496
|
-
|
|
211535
|
+
var import_node_fs2 = require("node:fs");
|
|
211536
|
+
var import_node_path3 = require("node:path");
|
|
211497
211537
|
|
|
211498
211538
|
// node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/index.mjs
|
|
211499
211539
|
var util;
|
|
@@ -215322,8 +215362,8 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
215322
215362
|
let license = DEFAULT_STORM_CONFIG.license;
|
|
215323
215363
|
let homepage = DEFAULT_STORM_CONFIG.homepage;
|
|
215324
215364
|
const workspaceRoot = findWorkspaceRoot(root);
|
|
215325
|
-
if (
|
|
215326
|
-
const file = readFileSync(
|
|
215365
|
+
if ((0, import_node_fs2.existsSync)((0, import_node_path3.join)(workspaceRoot, "package.json"))) {
|
|
215366
|
+
const file = (0, import_node_fs2.readFileSync)((0, import_node_path3.join)(workspaceRoot, "package.json"), {
|
|
215327
215367
|
encoding: "utf-8"
|
|
215328
215368
|
});
|
|
215329
215369
|
if (file) {
|
|
@@ -215436,7 +215476,7 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
215436
215476
|
};
|
|
215437
215477
|
|
|
215438
215478
|
// packages/config-tools/src/utilities/logger.ts
|
|
215439
|
-
var import_chalk = __toESM(require_source()
|
|
215479
|
+
var import_chalk = __toESM(require_source());
|
|
215440
215480
|
var chalkDefault = {
|
|
215441
215481
|
hex: (_) => (message) => message,
|
|
215442
215482
|
bgHex: (_) => ({
|
|
@@ -215605,10 +215645,10 @@ Stacktrace: ${error.stack}`
|
|
|
215605
215645
|
};
|
|
215606
215646
|
|
|
215607
215647
|
// packages/config-tools/src/utilities/run.ts
|
|
215608
|
-
|
|
215648
|
+
var import_node_child_process = require("node:child_process");
|
|
215609
215649
|
var LARGE_BUFFER = 1024 * 1e6;
|
|
215610
215650
|
var run = (config, command, cwd = config.workspaceRoot ?? process.cwd()) => {
|
|
215611
|
-
return execSync(command, {
|
|
215651
|
+
return (0, import_node_child_process.execSync)(command, {
|
|
215612
215652
|
cwd,
|
|
215613
215653
|
env: {
|
|
215614
215654
|
...process.env,
|
|
@@ -215902,7 +215942,8 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
215902
215942
|
setConfigEnv(config);
|
|
215903
215943
|
return config;
|
|
215904
215944
|
};
|
|
215905
|
-
export
|
|
215945
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
215946
|
+
0 && (module.exports = {
|
|
215906
215947
|
DEFAULT_COLOR_CONFIG,
|
|
215907
215948
|
DEFAULT_STORM_CONFIG,
|
|
215908
215949
|
LARGE_BUFFER,
|
|
@@ -215939,7 +215980,7 @@ export {
|
|
|
215939
215980
|
writeSystem,
|
|
215940
215981
|
writeTrace,
|
|
215941
215982
|
writeWarning
|
|
215942
|
-
};
|
|
215983
|
+
});
|
|
215943
215984
|
/*! Bundled license information:
|
|
215944
215985
|
|
|
215945
215986
|
typescript/lib/typescript.js:
|