@modern-js/server-generator 3.7.5 → 3.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +477 -523
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -40,9 +40,6 @@ var __objRest = (source2, exclude) => {
|
|
|
40
40
|
}
|
|
41
41
|
return target;
|
|
42
42
|
};
|
|
43
|
-
var __esm = (fn, res) => function __init() {
|
|
44
|
-
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
45
|
-
};
|
|
46
43
|
var __commonJS = (cb, mod) => function __require() {
|
|
47
44
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
48
45
|
};
|
|
@@ -1260,26 +1257,26 @@ var require_has_flag = __commonJS({
|
|
|
1260
1257
|
var require_supports_color = __commonJS({
|
|
1261
1258
|
"../../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports, module2) {
|
|
1262
1259
|
"use strict";
|
|
1263
|
-
var
|
|
1264
|
-
var
|
|
1265
|
-
var
|
|
1266
|
-
var { env
|
|
1260
|
+
var os = require("os");
|
|
1261
|
+
var tty = require("tty");
|
|
1262
|
+
var hasFlag = require_has_flag();
|
|
1263
|
+
var { env } = process;
|
|
1267
1264
|
var forceColor;
|
|
1268
|
-
if (
|
|
1265
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
1269
1266
|
forceColor = 0;
|
|
1270
|
-
} else if (
|
|
1267
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
1271
1268
|
forceColor = 1;
|
|
1272
1269
|
}
|
|
1273
|
-
if ("FORCE_COLOR" in
|
|
1274
|
-
if (
|
|
1270
|
+
if ("FORCE_COLOR" in env) {
|
|
1271
|
+
if (env.FORCE_COLOR === "true") {
|
|
1275
1272
|
forceColor = 1;
|
|
1276
|
-
} else if (
|
|
1273
|
+
} else if (env.FORCE_COLOR === "false") {
|
|
1277
1274
|
forceColor = 0;
|
|
1278
1275
|
} else {
|
|
1279
|
-
forceColor =
|
|
1276
|
+
forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
|
|
1280
1277
|
}
|
|
1281
1278
|
}
|
|
1282
|
-
function
|
|
1279
|
+
function translateLevel(level) {
|
|
1283
1280
|
if (level === 0) {
|
|
1284
1281
|
return false;
|
|
1285
1282
|
}
|
|
@@ -1290,70 +1287,70 @@ var require_supports_color = __commonJS({
|
|
|
1290
1287
|
has16m: level >= 3
|
|
1291
1288
|
};
|
|
1292
1289
|
}
|
|
1293
|
-
function
|
|
1290
|
+
function supportsColor(haveStream, streamIsTTY) {
|
|
1294
1291
|
if (forceColor === 0) {
|
|
1295
1292
|
return 0;
|
|
1296
1293
|
}
|
|
1297
|
-
if (
|
|
1294
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
1298
1295
|
return 3;
|
|
1299
1296
|
}
|
|
1300
|
-
if (
|
|
1297
|
+
if (hasFlag("color=256")) {
|
|
1301
1298
|
return 2;
|
|
1302
1299
|
}
|
|
1303
1300
|
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
1304
1301
|
return 0;
|
|
1305
1302
|
}
|
|
1306
1303
|
const min = forceColor || 0;
|
|
1307
|
-
if (
|
|
1304
|
+
if (env.TERM === "dumb") {
|
|
1308
1305
|
return min;
|
|
1309
1306
|
}
|
|
1310
1307
|
if (process.platform === "win32") {
|
|
1311
|
-
const osRelease =
|
|
1308
|
+
const osRelease = os.release().split(".");
|
|
1312
1309
|
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
1313
1310
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
1314
1311
|
}
|
|
1315
1312
|
return 1;
|
|
1316
1313
|
}
|
|
1317
|
-
if ("CI" in
|
|
1318
|
-
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign2) => sign2 in
|
|
1314
|
+
if ("CI" in env) {
|
|
1315
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign2) => sign2 in env) || env.CI_NAME === "codeship") {
|
|
1319
1316
|
return 1;
|
|
1320
1317
|
}
|
|
1321
1318
|
return min;
|
|
1322
1319
|
}
|
|
1323
|
-
if ("TEAMCITY_VERSION" in
|
|
1324
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(
|
|
1320
|
+
if ("TEAMCITY_VERSION" in env) {
|
|
1321
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
1325
1322
|
}
|
|
1326
|
-
if (
|
|
1323
|
+
if (env.COLORTERM === "truecolor") {
|
|
1327
1324
|
return 3;
|
|
1328
1325
|
}
|
|
1329
|
-
if ("TERM_PROGRAM" in
|
|
1330
|
-
const version = parseInt((
|
|
1331
|
-
switch (
|
|
1326
|
+
if ("TERM_PROGRAM" in env) {
|
|
1327
|
+
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
1328
|
+
switch (env.TERM_PROGRAM) {
|
|
1332
1329
|
case "iTerm.app":
|
|
1333
1330
|
return version >= 3 ? 3 : 2;
|
|
1334
1331
|
case "Apple_Terminal":
|
|
1335
1332
|
return 2;
|
|
1336
1333
|
}
|
|
1337
1334
|
}
|
|
1338
|
-
if (/-256(color)?$/i.test(
|
|
1335
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
|
1339
1336
|
return 2;
|
|
1340
1337
|
}
|
|
1341
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(
|
|
1338
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
1342
1339
|
return 1;
|
|
1343
1340
|
}
|
|
1344
|
-
if ("COLORTERM" in
|
|
1341
|
+
if ("COLORTERM" in env) {
|
|
1345
1342
|
return 1;
|
|
1346
1343
|
}
|
|
1347
1344
|
return min;
|
|
1348
1345
|
}
|
|
1349
1346
|
function getSupportLevel(stream4) {
|
|
1350
|
-
const level =
|
|
1351
|
-
return
|
|
1347
|
+
const level = supportsColor(stream4, stream4 && stream4.isTTY);
|
|
1348
|
+
return translateLevel(level);
|
|
1352
1349
|
}
|
|
1353
1350
|
module2.exports = {
|
|
1354
1351
|
supportsColor: getSupportLevel,
|
|
1355
|
-
stdout:
|
|
1356
|
-
stderr:
|
|
1352
|
+
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
1353
|
+
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
1357
1354
|
};
|
|
1358
1355
|
}
|
|
1359
1356
|
});
|
|
@@ -1805,11 +1802,11 @@ var require_ms = __commonJS({
|
|
|
1805
1802
|
}
|
|
1806
1803
|
});
|
|
1807
1804
|
|
|
1808
|
-
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
1805
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js
|
|
1809
1806
|
var require_common = __commonJS({
|
|
1810
|
-
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
1807
|
+
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
|
|
1811
1808
|
"use strict";
|
|
1812
|
-
function setup(
|
|
1809
|
+
function setup(env) {
|
|
1813
1810
|
createDebug.debug = createDebug;
|
|
1814
1811
|
createDebug.default = createDebug;
|
|
1815
1812
|
createDebug.coerce = coerce;
|
|
@@ -1818,8 +1815,8 @@ var require_common = __commonJS({
|
|
|
1818
1815
|
createDebug.enabled = enabled;
|
|
1819
1816
|
createDebug.humanize = require_ms();
|
|
1820
1817
|
createDebug.destroy = destroy;
|
|
1821
|
-
Object.keys(
|
|
1822
|
-
createDebug[key2] =
|
|
1818
|
+
Object.keys(env).forEach((key2) => {
|
|
1819
|
+
createDebug[key2] = env[key2];
|
|
1823
1820
|
});
|
|
1824
1821
|
createDebug.names = [];
|
|
1825
1822
|
createDebug.skips = [];
|
|
@@ -1969,9 +1966,9 @@ var require_common = __commonJS({
|
|
|
1969
1966
|
}
|
|
1970
1967
|
});
|
|
1971
1968
|
|
|
1972
|
-
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
1969
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js
|
|
1973
1970
|
var require_browser = __commonJS({
|
|
1974
|
-
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
1971
|
+
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
|
|
1975
1972
|
"use strict";
|
|
1976
1973
|
exports.formatArgs = formatArgs;
|
|
1977
1974
|
exports.save = save;
|
|
@@ -2140,162 +2137,136 @@ var require_browser = __commonJS({
|
|
|
2140
2137
|
}
|
|
2141
2138
|
});
|
|
2142
2139
|
|
|
2143
|
-
// ../../../../node_modules/.pnpm/
|
|
2144
|
-
var
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
}
|
|
2155
|
-
function envForceColor() {
|
|
2156
|
-
if ("FORCE_COLOR" in env) {
|
|
2157
|
-
if (env.FORCE_COLOR === "true") {
|
|
2158
|
-
return 1;
|
|
2159
|
-
}
|
|
2160
|
-
if (env.FORCE_COLOR === "false") {
|
|
2161
|
-
return 0;
|
|
2162
|
-
}
|
|
2163
|
-
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
2164
|
-
}
|
|
2165
|
-
}
|
|
2166
|
-
function translateLevel(level) {
|
|
2167
|
-
if (level === 0) {
|
|
2168
|
-
return false;
|
|
2169
|
-
}
|
|
2170
|
-
return {
|
|
2171
|
-
level,
|
|
2172
|
-
hasBasic: true,
|
|
2173
|
-
has256: level >= 2,
|
|
2174
|
-
has16m: level >= 3
|
|
2175
|
-
};
|
|
2176
|
-
}
|
|
2177
|
-
function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
2178
|
-
const noFlagForceColor = envForceColor();
|
|
2179
|
-
if (noFlagForceColor !== void 0) {
|
|
2180
|
-
flagForceColor = noFlagForceColor;
|
|
2181
|
-
}
|
|
2182
|
-
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
2183
|
-
if (forceColor === 0) {
|
|
2184
|
-
return 0;
|
|
2185
|
-
}
|
|
2186
|
-
if (sniffFlags) {
|
|
2187
|
-
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
2188
|
-
return 3;
|
|
2189
|
-
}
|
|
2190
|
-
if (hasFlag("color=256")) {
|
|
2191
|
-
return 2;
|
|
2192
|
-
}
|
|
2193
|
-
}
|
|
2194
|
-
if ("TF_BUILD" in env && "AGENT_NAME" in env) {
|
|
2195
|
-
return 1;
|
|
2196
|
-
}
|
|
2197
|
-
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
2198
|
-
return 0;
|
|
2199
|
-
}
|
|
2200
|
-
const min = forceColor || 0;
|
|
2201
|
-
if (env.TERM === "dumb") {
|
|
2202
|
-
return min;
|
|
2140
|
+
// ../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
|
|
2141
|
+
var require_has_flag2 = __commonJS({
|
|
2142
|
+
"../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
|
2143
|
+
"use strict";
|
|
2144
|
+
module2.exports = (flag, argv) => {
|
|
2145
|
+
argv = argv || process.argv;
|
|
2146
|
+
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
2147
|
+
const pos2 = argv.indexOf(prefix + flag);
|
|
2148
|
+
const terminatorPos = argv.indexOf("--");
|
|
2149
|
+
return pos2 !== -1 && (terminatorPos === -1 ? true : pos2 < terminatorPos);
|
|
2150
|
+
};
|
|
2203
2151
|
}
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2152
|
+
});
|
|
2153
|
+
|
|
2154
|
+
// ../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
|
|
2155
|
+
var require_supports_color2 = __commonJS({
|
|
2156
|
+
"../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
|
|
2157
|
+
"use strict";
|
|
2158
|
+
var os = require("os");
|
|
2159
|
+
var hasFlag = require_has_flag2();
|
|
2160
|
+
var env = process.env;
|
|
2161
|
+
var forceColor;
|
|
2162
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
|
|
2163
|
+
forceColor = false;
|
|
2164
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
2165
|
+
forceColor = true;
|
|
2208
2166
|
}
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
if ("CI" in env) {
|
|
2212
|
-
if ("GITHUB_ACTIONS" in env) {
|
|
2213
|
-
return 3;
|
|
2167
|
+
if ("FORCE_COLOR" in env) {
|
|
2168
|
+
forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
|
|
2214
2169
|
}
|
|
2215
|
-
|
|
2216
|
-
|
|
2170
|
+
function translateLevel(level) {
|
|
2171
|
+
if (level === 0) {
|
|
2172
|
+
return false;
|
|
2173
|
+
}
|
|
2174
|
+
return {
|
|
2175
|
+
level,
|
|
2176
|
+
hasBasic: true,
|
|
2177
|
+
has256: level >= 2,
|
|
2178
|
+
has16m: level >= 3
|
|
2179
|
+
};
|
|
2217
2180
|
}
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
2222
|
-
}
|
|
2223
|
-
if (env.COLORTERM === "truecolor") {
|
|
2224
|
-
return 3;
|
|
2225
|
-
}
|
|
2226
|
-
if (env.TERM === "xterm-kitty") {
|
|
2227
|
-
return 3;
|
|
2228
|
-
}
|
|
2229
|
-
if ("TERM_PROGRAM" in env) {
|
|
2230
|
-
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
2231
|
-
switch (env.TERM_PROGRAM) {
|
|
2232
|
-
case "iTerm.app": {
|
|
2233
|
-
return version >= 3 ? 3 : 2;
|
|
2181
|
+
function supportsColor(stream4) {
|
|
2182
|
+
if (forceColor === false) {
|
|
2183
|
+
return 0;
|
|
2234
2184
|
}
|
|
2235
|
-
|
|
2185
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
2186
|
+
return 3;
|
|
2187
|
+
}
|
|
2188
|
+
if (hasFlag("color=256")) {
|
|
2236
2189
|
return 2;
|
|
2237
2190
|
}
|
|
2191
|
+
if (stream4 && !stream4.isTTY && forceColor !== true) {
|
|
2192
|
+
return 0;
|
|
2193
|
+
}
|
|
2194
|
+
const min = forceColor ? 1 : 0;
|
|
2195
|
+
if (process.platform === "win32") {
|
|
2196
|
+
const osRelease = os.release().split(".");
|
|
2197
|
+
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
2198
|
+
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
2199
|
+
}
|
|
2200
|
+
return 1;
|
|
2201
|
+
}
|
|
2202
|
+
if ("CI" in env) {
|
|
2203
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign2) => sign2 in env) || env.CI_NAME === "codeship") {
|
|
2204
|
+
return 1;
|
|
2205
|
+
}
|
|
2206
|
+
return min;
|
|
2207
|
+
}
|
|
2208
|
+
if ("TEAMCITY_VERSION" in env) {
|
|
2209
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
2210
|
+
}
|
|
2211
|
+
if (env.COLORTERM === "truecolor") {
|
|
2212
|
+
return 3;
|
|
2213
|
+
}
|
|
2214
|
+
if ("TERM_PROGRAM" in env) {
|
|
2215
|
+
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
2216
|
+
switch (env.TERM_PROGRAM) {
|
|
2217
|
+
case "iTerm.app":
|
|
2218
|
+
return version >= 3 ? 3 : 2;
|
|
2219
|
+
case "Apple_Terminal":
|
|
2220
|
+
return 2;
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2223
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
|
2224
|
+
return 2;
|
|
2225
|
+
}
|
|
2226
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
2227
|
+
return 1;
|
|
2228
|
+
}
|
|
2229
|
+
if ("COLORTERM" in env) {
|
|
2230
|
+
return 1;
|
|
2231
|
+
}
|
|
2232
|
+
if (env.TERM === "dumb") {
|
|
2233
|
+
return min;
|
|
2234
|
+
}
|
|
2235
|
+
return min;
|
|
2238
2236
|
}
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
}
|
|
2243
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
2244
|
-
return 1;
|
|
2245
|
-
}
|
|
2246
|
-
if ("COLORTERM" in env) {
|
|
2247
|
-
return 1;
|
|
2248
|
-
}
|
|
2249
|
-
return min;
|
|
2250
|
-
}
|
|
2251
|
-
function createSupportsColor(stream4, options = {}) {
|
|
2252
|
-
const level = _supportsColor(stream4, __spreadValues({
|
|
2253
|
-
streamIsTTY: stream4 && stream4.isTTY
|
|
2254
|
-
}, options));
|
|
2255
|
-
return translateLevel(level);
|
|
2256
|
-
}
|
|
2257
|
-
var import_node_process, import_node_os, import_node_tty, env, flagForceColor, supportsColor, supports_color_default;
|
|
2258
|
-
var init_supports_color = __esm({
|
|
2259
|
-
"../../../../node_modules/.pnpm/supports-color@9.3.1/node_modules/supports-color/index.js"() {
|
|
2260
|
-
"use strict";
|
|
2261
|
-
import_node_process = __toESM(require("process"));
|
|
2262
|
-
import_node_os = __toESM(require("os"));
|
|
2263
|
-
import_node_tty = __toESM(require("tty"));
|
|
2264
|
-
({ env } = import_node_process.default);
|
|
2265
|
-
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
2266
|
-
flagForceColor = 0;
|
|
2267
|
-
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
2268
|
-
flagForceColor = 1;
|
|
2237
|
+
function getSupportLevel(stream4) {
|
|
2238
|
+
const level = supportsColor(stream4);
|
|
2239
|
+
return translateLevel(level);
|
|
2269
2240
|
}
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2241
|
+
module2.exports = {
|
|
2242
|
+
supportsColor: getSupportLevel,
|
|
2243
|
+
stdout: getSupportLevel(process.stdout),
|
|
2244
|
+
stderr: getSupportLevel(process.stderr)
|
|
2273
2245
|
};
|
|
2274
|
-
supports_color_default = supportsColor;
|
|
2275
2246
|
}
|
|
2276
2247
|
});
|
|
2277
2248
|
|
|
2278
|
-
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
2249
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js
|
|
2279
2250
|
var require_node = __commonJS({
|
|
2280
|
-
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
2251
|
+
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
|
|
2281
2252
|
"use strict";
|
|
2282
|
-
var
|
|
2283
|
-
var
|
|
2253
|
+
var tty = require("tty");
|
|
2254
|
+
var util4 = require("util");
|
|
2284
2255
|
exports.init = init;
|
|
2285
2256
|
exports.log = log;
|
|
2286
2257
|
exports.formatArgs = formatArgs;
|
|
2287
2258
|
exports.save = save;
|
|
2288
2259
|
exports.load = load;
|
|
2289
2260
|
exports.useColors = useColors;
|
|
2290
|
-
exports.destroy =
|
|
2261
|
+
exports.destroy = util4.deprecate(
|
|
2291
2262
|
() => {
|
|
2292
2263
|
},
|
|
2293
2264
|
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
2294
2265
|
);
|
|
2295
2266
|
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
2296
2267
|
try {
|
|
2297
|
-
const
|
|
2298
|
-
if (
|
|
2268
|
+
const supportsColor = require_supports_color2();
|
|
2269
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
2299
2270
|
exports.colors = [
|
|
2300
2271
|
20,
|
|
2301
2272
|
21,
|
|
@@ -2397,7 +2368,7 @@ var require_node = __commonJS({
|
|
|
2397
2368
|
return obj;
|
|
2398
2369
|
}, {});
|
|
2399
2370
|
function useColors() {
|
|
2400
|
-
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) :
|
|
2371
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
2401
2372
|
}
|
|
2402
2373
|
function formatArgs(args) {
|
|
2403
2374
|
const { namespace: name, useColors: useColors2 } = this;
|
|
@@ -2418,7 +2389,7 @@ var require_node = __commonJS({
|
|
|
2418
2389
|
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
2419
2390
|
}
|
|
2420
2391
|
function log(...args) {
|
|
2421
|
-
return process.stderr.write(
|
|
2392
|
+
return process.stderr.write(util4.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
|
2422
2393
|
}
|
|
2423
2394
|
function save(namespaces) {
|
|
2424
2395
|
if (namespaces) {
|
|
@@ -2441,18 +2412,18 @@ var require_node = __commonJS({
|
|
|
2441
2412
|
var { formatters } = module2.exports;
|
|
2442
2413
|
formatters.o = function(v) {
|
|
2443
2414
|
this.inspectOpts.colors = this.useColors;
|
|
2444
|
-
return
|
|
2415
|
+
return util4.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
2445
2416
|
};
|
|
2446
2417
|
formatters.O = function(v) {
|
|
2447
2418
|
this.inspectOpts.colors = this.useColors;
|
|
2448
|
-
return
|
|
2419
|
+
return util4.inspect(v, this.inspectOpts);
|
|
2449
2420
|
};
|
|
2450
2421
|
}
|
|
2451
2422
|
});
|
|
2452
2423
|
|
|
2453
|
-
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
2424
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js
|
|
2454
2425
|
var require_src = __commonJS({
|
|
2455
|
-
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
|
2426
|
+
"../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js"(exports, module2) {
|
|
2456
2427
|
"use strict";
|
|
2457
2428
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
2458
2429
|
module2.exports = require_browser();
|
|
@@ -2941,7 +2912,7 @@ var require_graceful_fs = __commonJS({
|
|
|
2941
2912
|
var polyfills2 = require_polyfills();
|
|
2942
2913
|
var legacy = require_legacy_streams();
|
|
2943
2914
|
var clone = require_clone();
|
|
2944
|
-
var
|
|
2915
|
+
var util4 = require("util");
|
|
2945
2916
|
var gracefulQueue;
|
|
2946
2917
|
var previousSymbol;
|
|
2947
2918
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
|
@@ -2961,11 +2932,11 @@ var require_graceful_fs = __commonJS({
|
|
|
2961
2932
|
});
|
|
2962
2933
|
}
|
|
2963
2934
|
var debug = noop2;
|
|
2964
|
-
if (
|
|
2965
|
-
debug =
|
|
2935
|
+
if (util4.debuglog)
|
|
2936
|
+
debug = util4.debuglog("gfs4");
|
|
2966
2937
|
else if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || ""))
|
|
2967
2938
|
debug = function() {
|
|
2968
|
-
var m =
|
|
2939
|
+
var m = util4.format.apply(util4, arguments);
|
|
2969
2940
|
m = "GFS4: " + m.split(/\n/).join("\nGFS4: ");
|
|
2970
2941
|
console.error(m);
|
|
2971
2942
|
};
|
|
@@ -3519,7 +3490,7 @@ var require_stat = __commonJS({
|
|
|
3519
3490
|
"use strict";
|
|
3520
3491
|
var fs2 = require_fs();
|
|
3521
3492
|
var path7 = require("path");
|
|
3522
|
-
var
|
|
3493
|
+
var util4 = require("util");
|
|
3523
3494
|
function getStats(src, dest, opts) {
|
|
3524
3495
|
const statFunc = opts.dereference ? (file) => fs2.stat(file, { bigint: true }) : (file) => fs2.lstat(file, { bigint: true });
|
|
3525
3496
|
return Promise.all([
|
|
@@ -3545,7 +3516,7 @@ var require_stat = __commonJS({
|
|
|
3545
3516
|
return { srcStat, destStat };
|
|
3546
3517
|
}
|
|
3547
3518
|
function checkPaths(src, dest, funcName, opts, cb) {
|
|
3548
|
-
|
|
3519
|
+
util4.callbackify(getStats)(src, dest, opts, (err, stats) => {
|
|
3549
3520
|
if (err)
|
|
3550
3521
|
return cb(err);
|
|
3551
3522
|
const { srcStat, destStat } = stats;
|
|
@@ -5320,7 +5291,7 @@ var require_resolveCommand = __commonJS({
|
|
|
5320
5291
|
var which = require_which();
|
|
5321
5292
|
var getPathKey = require_path_key();
|
|
5322
5293
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
|
5323
|
-
const
|
|
5294
|
+
const env = parsed.options.env || process.env;
|
|
5324
5295
|
const cwd = process.cwd();
|
|
5325
5296
|
const hasCustomCwd = parsed.options.cwd != null;
|
|
5326
5297
|
const shouldSwitchCwd = hasCustomCwd && process.chdir !== void 0 && !process.chdir.disabled;
|
|
@@ -5333,7 +5304,7 @@ var require_resolveCommand = __commonJS({
|
|
|
5333
5304
|
let resolved;
|
|
5334
5305
|
try {
|
|
5335
5306
|
resolved = which.sync(parsed.command, {
|
|
5336
|
-
path:
|
|
5307
|
+
path: env[getPathKey({ env })],
|
|
5337
5308
|
pathExt: withoutPathExt ? path7.delimiter : void 0
|
|
5338
5309
|
});
|
|
5339
5310
|
} catch (e) {
|
|
@@ -5616,11 +5587,11 @@ var require_npm_run_path = __commonJS({
|
|
|
5616
5587
|
options = __spreadValues({
|
|
5617
5588
|
env: process.env
|
|
5618
5589
|
}, options);
|
|
5619
|
-
const
|
|
5620
|
-
const path8 = pathKey({ env
|
|
5621
|
-
options.path =
|
|
5622
|
-
|
|
5623
|
-
return
|
|
5590
|
+
const env = __spreadValues({}, options.env);
|
|
5591
|
+
const path8 = pathKey({ env });
|
|
5592
|
+
options.path = env[path8];
|
|
5593
|
+
env[path8] = module2.exports(options);
|
|
5594
|
+
return env;
|
|
5624
5595
|
};
|
|
5625
5596
|
}
|
|
5626
5597
|
});
|
|
@@ -6236,11 +6207,11 @@ var require_signals2 = __commonJS({
|
|
|
6236
6207
|
var require_signal_exit = __commonJS({
|
|
6237
6208
|
"../../../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js"(exports, module2) {
|
|
6238
6209
|
"use strict";
|
|
6239
|
-
var
|
|
6240
|
-
var processOk = function(
|
|
6241
|
-
return
|
|
6210
|
+
var process2 = global.process;
|
|
6211
|
+
var processOk = function(process3) {
|
|
6212
|
+
return process3 && typeof process3 === "object" && typeof process3.removeListener === "function" && typeof process3.emit === "function" && typeof process3.reallyExit === "function" && typeof process3.listeners === "function" && typeof process3.kill === "function" && typeof process3.pid === "number" && typeof process3.on === "function";
|
|
6242
6213
|
};
|
|
6243
|
-
if (!processOk(
|
|
6214
|
+
if (!processOk(process2)) {
|
|
6244
6215
|
module2.exports = function() {
|
|
6245
6216
|
return function() {
|
|
6246
6217
|
};
|
|
@@ -6248,15 +6219,15 @@ var require_signal_exit = __commonJS({
|
|
|
6248
6219
|
} else {
|
|
6249
6220
|
assert = require("assert");
|
|
6250
6221
|
signals = require_signals2();
|
|
6251
|
-
isWin = /^win/i.test(
|
|
6222
|
+
isWin = /^win/i.test(process2.platform);
|
|
6252
6223
|
EE = require("events");
|
|
6253
6224
|
if (typeof EE !== "function") {
|
|
6254
6225
|
EE = EE.EventEmitter;
|
|
6255
6226
|
}
|
|
6256
|
-
if (
|
|
6257
|
-
emitter =
|
|
6227
|
+
if (process2.__signal_exit_emitter__) {
|
|
6228
|
+
emitter = process2.__signal_exit_emitter__;
|
|
6258
6229
|
} else {
|
|
6259
|
-
emitter =
|
|
6230
|
+
emitter = process2.__signal_exit_emitter__ = new EE();
|
|
6260
6231
|
emitter.count = 0;
|
|
6261
6232
|
emitter.emitted = {};
|
|
6262
6233
|
}
|
|
@@ -6293,12 +6264,12 @@ var require_signal_exit = __commonJS({
|
|
|
6293
6264
|
loaded = false;
|
|
6294
6265
|
signals.forEach(function(sig) {
|
|
6295
6266
|
try {
|
|
6296
|
-
|
|
6267
|
+
process2.removeListener(sig, sigListeners[sig]);
|
|
6297
6268
|
} catch (er) {
|
|
6298
6269
|
}
|
|
6299
6270
|
});
|
|
6300
|
-
|
|
6301
|
-
|
|
6271
|
+
process2.emit = originalProcessEmit;
|
|
6272
|
+
process2.reallyExit = originalProcessReallyExit;
|
|
6302
6273
|
emitter.count -= 1;
|
|
6303
6274
|
};
|
|
6304
6275
|
module2.exports.unload = unload;
|
|
@@ -6315,7 +6286,7 @@ var require_signal_exit = __commonJS({
|
|
|
6315
6286
|
if (!processOk(global.process)) {
|
|
6316
6287
|
return;
|
|
6317
6288
|
}
|
|
6318
|
-
var listeners =
|
|
6289
|
+
var listeners = process2.listeners(sig);
|
|
6319
6290
|
if (listeners.length === emitter.count) {
|
|
6320
6291
|
unload();
|
|
6321
6292
|
emit("exit", null, sig);
|
|
@@ -6323,7 +6294,7 @@ var require_signal_exit = __commonJS({
|
|
|
6323
6294
|
if (isWin && sig === "SIGHUP") {
|
|
6324
6295
|
sig = "SIGINT";
|
|
6325
6296
|
}
|
|
6326
|
-
|
|
6297
|
+
process2.kill(process2.pid, sig);
|
|
6327
6298
|
}
|
|
6328
6299
|
};
|
|
6329
6300
|
});
|
|
@@ -6339,36 +6310,36 @@ var require_signal_exit = __commonJS({
|
|
|
6339
6310
|
emitter.count += 1;
|
|
6340
6311
|
signals = signals.filter(function(sig) {
|
|
6341
6312
|
try {
|
|
6342
|
-
|
|
6313
|
+
process2.on(sig, sigListeners[sig]);
|
|
6343
6314
|
return true;
|
|
6344
6315
|
} catch (er) {
|
|
6345
6316
|
return false;
|
|
6346
6317
|
}
|
|
6347
6318
|
});
|
|
6348
|
-
|
|
6349
|
-
|
|
6319
|
+
process2.emit = processEmit;
|
|
6320
|
+
process2.reallyExit = processReallyExit;
|
|
6350
6321
|
};
|
|
6351
6322
|
module2.exports.load = load;
|
|
6352
|
-
originalProcessReallyExit =
|
|
6323
|
+
originalProcessReallyExit = process2.reallyExit;
|
|
6353
6324
|
processReallyExit = function processReallyExit2(code) {
|
|
6354
6325
|
if (!processOk(global.process)) {
|
|
6355
6326
|
return;
|
|
6356
6327
|
}
|
|
6357
|
-
|
|
6328
|
+
process2.exitCode = code || /* istanbul ignore next */
|
|
6358
6329
|
0;
|
|
6359
|
-
emit("exit",
|
|
6360
|
-
emit("afterexit",
|
|
6361
|
-
originalProcessReallyExit.call(
|
|
6330
|
+
emit("exit", process2.exitCode, null);
|
|
6331
|
+
emit("afterexit", process2.exitCode, null);
|
|
6332
|
+
originalProcessReallyExit.call(process2, process2.exitCode);
|
|
6362
6333
|
};
|
|
6363
|
-
originalProcessEmit =
|
|
6334
|
+
originalProcessEmit = process2.emit;
|
|
6364
6335
|
processEmit = function processEmit2(ev, arg) {
|
|
6365
6336
|
if (ev === "exit" && processOk(global.process)) {
|
|
6366
6337
|
if (arg !== void 0) {
|
|
6367
|
-
|
|
6338
|
+
process2.exitCode = arg;
|
|
6368
6339
|
}
|
|
6369
6340
|
var ret = originalProcessEmit.apply(this, arguments);
|
|
6370
|
-
emit("exit",
|
|
6371
|
-
emit("afterexit",
|
|
6341
|
+
emit("exit", process2.exitCode, null);
|
|
6342
|
+
emit("afterexit", process2.exitCode, null);
|
|
6372
6343
|
return ret;
|
|
6373
6344
|
} else {
|
|
6374
6345
|
return originalProcessEmit.apply(this, arguments);
|
|
@@ -6396,7 +6367,7 @@ var require_signal_exit = __commonJS({
|
|
|
6396
6367
|
var require_kill = __commonJS({
|
|
6397
6368
|
"../../../../node_modules/.pnpm/execa@5.1.1/node_modules/execa/lib/kill.js"(exports, module2) {
|
|
6398
6369
|
"use strict";
|
|
6399
|
-
var
|
|
6370
|
+
var os = require("os");
|
|
6400
6371
|
var onExit = require_signal_exit();
|
|
6401
6372
|
var DEFAULT_FORCE_KILL_TIMEOUT = 1e3 * 5;
|
|
6402
6373
|
var spawnedKill = (kill, signal = "SIGTERM", options = {}) => {
|
|
@@ -6420,7 +6391,7 @@ var require_kill = __commonJS({
|
|
|
6420
6391
|
return isSigterm(signal) && forceKillAfterTimeout !== false && killResult;
|
|
6421
6392
|
};
|
|
6422
6393
|
var isSigterm = (signal) => {
|
|
6423
|
-
return signal ===
|
|
6394
|
+
return signal === os.constants.signals.SIGTERM || typeof signal === "string" && signal.toUpperCase() === "SIGTERM";
|
|
6424
6395
|
};
|
|
6425
6396
|
var getForceKillAfterTimeout = ({ forceKillAfterTimeout = true }) => {
|
|
6426
6397
|
if (forceKillAfterTimeout === true) {
|
|
@@ -6817,11 +6788,11 @@ var require_execa = __commonJS({
|
|
|
6817
6788
|
var { joinCommand, parseCommand, getEscapedCommand } = require_command();
|
|
6818
6789
|
var DEFAULT_MAX_BUFFER = 1e3 * 1e3 * 100;
|
|
6819
6790
|
var getEnv = ({ env: envOption, extendEnv, preferLocal, localDir, execPath }) => {
|
|
6820
|
-
const
|
|
6791
|
+
const env = extendEnv ? __spreadValues(__spreadValues({}, process.env), envOption) : envOption;
|
|
6821
6792
|
if (preferLocal) {
|
|
6822
|
-
return npmRunPath.env({ env
|
|
6793
|
+
return npmRunPath.env({ env, cwd: localDir, execPath });
|
|
6823
6794
|
}
|
|
6824
|
-
return
|
|
6795
|
+
return env;
|
|
6825
6796
|
};
|
|
6826
6797
|
var handleArguments = (file, args, options = {}) => {
|
|
6827
6798
|
const parsed = crossSpawn._parse(file, args, options);
|
|
@@ -9515,7 +9486,7 @@ var require_delayed_stream = __commonJS({
|
|
|
9515
9486
|
"../../../../node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream/lib/delayed_stream.js"(exports, module2) {
|
|
9516
9487
|
"use strict";
|
|
9517
9488
|
var Stream = require("stream").Stream;
|
|
9518
|
-
var
|
|
9489
|
+
var util4 = require("util");
|
|
9519
9490
|
module2.exports = DelayedStream;
|
|
9520
9491
|
function DelayedStream() {
|
|
9521
9492
|
this.source = null;
|
|
@@ -9526,7 +9497,7 @@ var require_delayed_stream = __commonJS({
|
|
|
9526
9497
|
this._released = false;
|
|
9527
9498
|
this._bufferedEvents = [];
|
|
9528
9499
|
}
|
|
9529
|
-
|
|
9500
|
+
util4.inherits(DelayedStream, Stream);
|
|
9530
9501
|
DelayedStream.create = function(source2, options) {
|
|
9531
9502
|
var delayedStream = new this();
|
|
9532
9503
|
options = options || {};
|
|
@@ -9606,7 +9577,7 @@ var require_delayed_stream = __commonJS({
|
|
|
9606
9577
|
var require_combined_stream = __commonJS({
|
|
9607
9578
|
"../../../../node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream/lib/combined_stream.js"(exports, module2) {
|
|
9608
9579
|
"use strict";
|
|
9609
|
-
var
|
|
9580
|
+
var util4 = require("util");
|
|
9610
9581
|
var Stream = require("stream").Stream;
|
|
9611
9582
|
var DelayedStream = require_delayed_stream();
|
|
9612
9583
|
module2.exports = CombinedStream;
|
|
@@ -9622,7 +9593,7 @@ var require_combined_stream = __commonJS({
|
|
|
9622
9593
|
this._insideLoop = false;
|
|
9623
9594
|
this._pendingNext = false;
|
|
9624
9595
|
}
|
|
9625
|
-
|
|
9596
|
+
util4.inherits(CombinedStream, Stream);
|
|
9626
9597
|
CombinedStream.create = function(options) {
|
|
9627
9598
|
var combinedStream = new this();
|
|
9628
9599
|
options = options || {};
|
|
@@ -18617,9 +18588,9 @@ var require_asynckit = __commonJS({
|
|
|
18617
18588
|
}
|
|
18618
18589
|
});
|
|
18619
18590
|
|
|
18620
|
-
// ../../../../node_modules/.pnpm/form-data@4.0.
|
|
18591
|
+
// ../../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/populate.js
|
|
18621
18592
|
var require_populate = __commonJS({
|
|
18622
|
-
"../../../../node_modules/.pnpm/form-data@4.0.
|
|
18593
|
+
"../../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/populate.js"(exports, module2) {
|
|
18623
18594
|
"use strict";
|
|
18624
18595
|
module2.exports = function(dst, src) {
|
|
18625
18596
|
Object.keys(src).forEach(function(prop) {
|
|
@@ -18630,12 +18601,12 @@ var require_populate = __commonJS({
|
|
|
18630
18601
|
}
|
|
18631
18602
|
});
|
|
18632
18603
|
|
|
18633
|
-
// ../../../../node_modules/.pnpm/form-data@4.0.
|
|
18604
|
+
// ../../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/form_data.js
|
|
18634
18605
|
var require_form_data = __commonJS({
|
|
18635
|
-
"../../../../node_modules/.pnpm/form-data@4.0.
|
|
18606
|
+
"../../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/form_data.js"(exports, module2) {
|
|
18636
18607
|
"use strict";
|
|
18637
18608
|
var CombinedStream = require_combined_stream();
|
|
18638
|
-
var
|
|
18609
|
+
var util4 = require("util");
|
|
18639
18610
|
var path7 = require("path");
|
|
18640
18611
|
var http2 = require("http");
|
|
18641
18612
|
var https2 = require("https");
|
|
@@ -18646,7 +18617,7 @@ var require_form_data = __commonJS({
|
|
|
18646
18617
|
var asynckit = require_asynckit();
|
|
18647
18618
|
var populate = require_populate();
|
|
18648
18619
|
module2.exports = FormData3;
|
|
18649
|
-
|
|
18620
|
+
util4.inherits(FormData3, CombinedStream);
|
|
18650
18621
|
function FormData3(options) {
|
|
18651
18622
|
if (!(this instanceof FormData3)) {
|
|
18652
18623
|
return new FormData3(options);
|
|
@@ -18671,7 +18642,7 @@ var require_form_data = __commonJS({
|
|
|
18671
18642
|
if (typeof value == "number") {
|
|
18672
18643
|
value = "" + value;
|
|
18673
18644
|
}
|
|
18674
|
-
if (
|
|
18645
|
+
if (Array.isArray(value)) {
|
|
18675
18646
|
this._error(new Error("Arrays are not supported."));
|
|
18676
18647
|
return;
|
|
18677
18648
|
}
|
|
@@ -18962,7 +18933,7 @@ var require_proxy_from_env = __commonJS({
|
|
|
18962
18933
|
var stringEndsWith = String.prototype.endsWith || function(s) {
|
|
18963
18934
|
return s.length <= this.length && this.indexOf(s, this.length - s.length) !== -1;
|
|
18964
18935
|
};
|
|
18965
|
-
function
|
|
18936
|
+
function getProxyForUrl(url2) {
|
|
18966
18937
|
var parsedUrl = typeof url2 === "string" ? parseUrl(url2) : url2 || {};
|
|
18967
18938
|
var proto = parsedUrl.protocol;
|
|
18968
18939
|
var hostname = parsedUrl.host;
|
|
@@ -19012,7 +18983,7 @@ var require_proxy_from_env = __commonJS({
|
|
|
19012
18983
|
function getEnv(key2) {
|
|
19013
18984
|
return process.env[key2.toLowerCase()] || process.env[key2.toUpperCase()] || "";
|
|
19014
18985
|
}
|
|
19015
|
-
exports.getProxyForUrl =
|
|
18986
|
+
exports.getProxyForUrl = getProxyForUrl;
|
|
19016
18987
|
}
|
|
19017
18988
|
});
|
|
19018
18989
|
|
|
@@ -21978,14 +21949,14 @@ var require_inherits = __commonJS({
|
|
|
21978
21949
|
"../../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js"(exports, module2) {
|
|
21979
21950
|
"use strict";
|
|
21980
21951
|
try {
|
|
21981
|
-
|
|
21982
|
-
if (typeof
|
|
21952
|
+
util4 = require("util");
|
|
21953
|
+
if (typeof util4.inherits !== "function")
|
|
21983
21954
|
throw "";
|
|
21984
|
-
module2.exports =
|
|
21955
|
+
module2.exports = util4.inherits;
|
|
21985
21956
|
} catch (e) {
|
|
21986
21957
|
module2.exports = require_inherits_browser();
|
|
21987
21958
|
}
|
|
21988
|
-
var
|
|
21959
|
+
var util4;
|
|
21989
21960
|
}
|
|
21990
21961
|
});
|
|
21991
21962
|
|
|
@@ -26606,15 +26577,15 @@ var require_runtime = __commonJS({
|
|
|
26606
26577
|
throw new _exception2["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version (" + compilerInfo[1] + ").");
|
|
26607
26578
|
}
|
|
26608
26579
|
}
|
|
26609
|
-
function template(templateSpec,
|
|
26610
|
-
if (!
|
|
26580
|
+
function template(templateSpec, env) {
|
|
26581
|
+
if (!env) {
|
|
26611
26582
|
throw new _exception2["default"]("No environment passed to template");
|
|
26612
26583
|
}
|
|
26613
26584
|
if (!templateSpec || !templateSpec.main) {
|
|
26614
26585
|
throw new _exception2["default"]("Unknown template object: " + typeof templateSpec);
|
|
26615
26586
|
}
|
|
26616
26587
|
templateSpec.main.decorator = templateSpec.main_d;
|
|
26617
|
-
|
|
26588
|
+
env.VM.checkRevision(templateSpec.compiler);
|
|
26618
26589
|
var templateWasPrecompiledWithCompilerV7 = templateSpec.compiler && templateSpec.compiler[0] === 7;
|
|
26619
26590
|
function invokePartialWrapper(partial, context, options) {
|
|
26620
26591
|
if (options.hash) {
|
|
@@ -26623,14 +26594,14 @@ var require_runtime = __commonJS({
|
|
|
26623
26594
|
options.ids[0] = true;
|
|
26624
26595
|
}
|
|
26625
26596
|
}
|
|
26626
|
-
partial =
|
|
26597
|
+
partial = env.VM.resolvePartial.call(this, partial, context, options);
|
|
26627
26598
|
var extendedOptions = Utils.extend({}, options, {
|
|
26628
26599
|
hooks: this.hooks,
|
|
26629
26600
|
protoAccessControl: this.protoAccessControl
|
|
26630
26601
|
});
|
|
26631
|
-
var result =
|
|
26632
|
-
if (result == null &&
|
|
26633
|
-
options.partials[options.name] =
|
|
26602
|
+
var result = env.VM.invokePartial.call(this, partial, context, extendedOptions);
|
|
26603
|
+
if (result == null && env.compile) {
|
|
26604
|
+
options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env);
|
|
26634
26605
|
result = options.partials[options.name](context, extendedOptions);
|
|
26635
26606
|
}
|
|
26636
26607
|
if (result != null) {
|
|
@@ -26715,7 +26686,7 @@ var require_runtime = __commonJS({
|
|
|
26715
26686
|
},
|
|
26716
26687
|
// An empty object to use as replacement for null-contexts
|
|
26717
26688
|
nullContext: Object.seal({}),
|
|
26718
|
-
noop:
|
|
26689
|
+
noop: env.VM.noop,
|
|
26719
26690
|
compilerInfo: templateSpec.compiler
|
|
26720
26691
|
};
|
|
26721
26692
|
function ret(context) {
|
|
@@ -26742,14 +26713,14 @@ var require_runtime = __commonJS({
|
|
|
26742
26713
|
ret.isTop = true;
|
|
26743
26714
|
ret._setup = function(options) {
|
|
26744
26715
|
if (!options.partial) {
|
|
26745
|
-
var mergedHelpers = Utils.extend({},
|
|
26716
|
+
var mergedHelpers = Utils.extend({}, env.helpers, options.helpers);
|
|
26746
26717
|
wrapHelpersToPassLookupProperty(mergedHelpers, container);
|
|
26747
26718
|
container.helpers = mergedHelpers;
|
|
26748
26719
|
if (templateSpec.usePartial) {
|
|
26749
|
-
container.partials = container.mergeIfNeeded(options.partials,
|
|
26720
|
+
container.partials = container.mergeIfNeeded(options.partials, env.partials);
|
|
26750
26721
|
}
|
|
26751
26722
|
if (templateSpec.usePartial || templateSpec.useDecorators) {
|
|
26752
|
-
container.decorators = Utils.extend({},
|
|
26723
|
+
container.decorators = Utils.extend({}, env.decorators, options.decorators);
|
|
26753
26724
|
}
|
|
26754
26725
|
container.hooks = {};
|
|
26755
26726
|
container.protoAccessControl = _internalProtoAccess.createProtoAccessControl(options);
|
|
@@ -28560,7 +28531,7 @@ var require_compiler = __commonJS({
|
|
|
28560
28531
|
}
|
|
28561
28532
|
}
|
|
28562
28533
|
};
|
|
28563
|
-
function precompile(input, options,
|
|
28534
|
+
function precompile(input, options, env) {
|
|
28564
28535
|
if (input == null || typeof input !== "string" && input.type !== "Program") {
|
|
28565
28536
|
throw new _exception2["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed " + input);
|
|
28566
28537
|
}
|
|
@@ -28571,10 +28542,10 @@ var require_compiler = __commonJS({
|
|
|
28571
28542
|
if (options.compat) {
|
|
28572
28543
|
options.useDepths = true;
|
|
28573
28544
|
}
|
|
28574
|
-
var ast =
|
|
28575
|
-
return new
|
|
28545
|
+
var ast = env.parse(input, options), environment = new env.Compiler().compile(ast, options);
|
|
28546
|
+
return new env.JavaScriptCompiler().compile(environment, options);
|
|
28576
28547
|
}
|
|
28577
|
-
function compile2(input, options,
|
|
28548
|
+
function compile2(input, options, env) {
|
|
28578
28549
|
if (options === void 0)
|
|
28579
28550
|
options = {};
|
|
28580
28551
|
if (input == null || typeof input !== "string" && input.type !== "Program") {
|
|
@@ -28589,8 +28560,8 @@ var require_compiler = __commonJS({
|
|
|
28589
28560
|
}
|
|
28590
28561
|
var compiled = void 0;
|
|
28591
28562
|
function compileInput() {
|
|
28592
|
-
var ast =
|
|
28593
|
-
return
|
|
28563
|
+
var ast = env.parse(input, options), environment = new env.Compiler().compile(ast, options), templateSpec = new env.JavaScriptCompiler().compile(environment, options, void 0, true);
|
|
28564
|
+
return env.template(templateSpec);
|
|
28594
28565
|
}
|
|
28595
28566
|
function ret(context, execOptions) {
|
|
28596
28567
|
if (!compiled) {
|
|
@@ -29044,7 +29015,7 @@ var require_util2 = __commonJS({
|
|
|
29044
29015
|
var require_array_set = __commonJS({
|
|
29045
29016
|
"../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js"(exports) {
|
|
29046
29017
|
"use strict";
|
|
29047
|
-
var
|
|
29018
|
+
var util4 = require_util2();
|
|
29048
29019
|
var has2 = Object.prototype.hasOwnProperty;
|
|
29049
29020
|
var hasNativeMap = typeof Map !== "undefined";
|
|
29050
29021
|
function ArraySet2() {
|
|
@@ -29062,7 +29033,7 @@ var require_array_set = __commonJS({
|
|
|
29062
29033
|
return hasNativeMap ? this._set.size : Object.getOwnPropertyNames(this._set).length;
|
|
29063
29034
|
};
|
|
29064
29035
|
ArraySet2.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {
|
|
29065
|
-
var sStr = hasNativeMap ? aStr :
|
|
29036
|
+
var sStr = hasNativeMap ? aStr : util4.toSetString(aStr);
|
|
29066
29037
|
var isDuplicate = hasNativeMap ? this.has(aStr) : has2.call(this._set, sStr);
|
|
29067
29038
|
var idx = this._array.length;
|
|
29068
29039
|
if (!isDuplicate || aAllowDuplicates) {
|
|
@@ -29080,7 +29051,7 @@ var require_array_set = __commonJS({
|
|
|
29080
29051
|
if (hasNativeMap) {
|
|
29081
29052
|
return this._set.has(aStr);
|
|
29082
29053
|
} else {
|
|
29083
|
-
var sStr =
|
|
29054
|
+
var sStr = util4.toSetString(aStr);
|
|
29084
29055
|
return has2.call(this._set, sStr);
|
|
29085
29056
|
}
|
|
29086
29057
|
};
|
|
@@ -29091,7 +29062,7 @@ var require_array_set = __commonJS({
|
|
|
29091
29062
|
return idx;
|
|
29092
29063
|
}
|
|
29093
29064
|
} else {
|
|
29094
|
-
var sStr =
|
|
29065
|
+
var sStr = util4.toSetString(aStr);
|
|
29095
29066
|
if (has2.call(this._set, sStr)) {
|
|
29096
29067
|
return this._set[sStr];
|
|
29097
29068
|
}
|
|
@@ -29115,13 +29086,13 @@ var require_array_set = __commonJS({
|
|
|
29115
29086
|
var require_mapping_list = __commonJS({
|
|
29116
29087
|
"../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js"(exports) {
|
|
29117
29088
|
"use strict";
|
|
29118
|
-
var
|
|
29089
|
+
var util4 = require_util2();
|
|
29119
29090
|
function generatedPositionAfter(mappingA, mappingB) {
|
|
29120
29091
|
var lineA = mappingA.generatedLine;
|
|
29121
29092
|
var lineB = mappingB.generatedLine;
|
|
29122
29093
|
var columnA = mappingA.generatedColumn;
|
|
29123
29094
|
var columnB = mappingB.generatedColumn;
|
|
29124
|
-
return lineB > lineA || lineB == lineA && columnB >= columnA ||
|
|
29095
|
+
return lineB > lineA || lineB == lineA && columnB >= columnA || util4.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;
|
|
29125
29096
|
}
|
|
29126
29097
|
function MappingList() {
|
|
29127
29098
|
this._array = [];
|
|
@@ -29142,7 +29113,7 @@ var require_mapping_list = __commonJS({
|
|
|
29142
29113
|
};
|
|
29143
29114
|
MappingList.prototype.toArray = function MappingList_toArray() {
|
|
29144
29115
|
if (!this._sorted) {
|
|
29145
|
-
this._array.sort(
|
|
29116
|
+
this._array.sort(util4.compareByGeneratedPositionsInflated);
|
|
29146
29117
|
this._sorted = true;
|
|
29147
29118
|
}
|
|
29148
29119
|
return this._array;
|
|
@@ -29156,16 +29127,16 @@ var require_source_map_generator = __commonJS({
|
|
|
29156
29127
|
"../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js"(exports) {
|
|
29157
29128
|
"use strict";
|
|
29158
29129
|
var base64VLQ = require_base64_vlq();
|
|
29159
|
-
var
|
|
29130
|
+
var util4 = require_util2();
|
|
29160
29131
|
var ArraySet2 = require_array_set().ArraySet;
|
|
29161
29132
|
var MappingList = require_mapping_list().MappingList;
|
|
29162
29133
|
function SourceMapGenerator(aArgs) {
|
|
29163
29134
|
if (!aArgs) {
|
|
29164
29135
|
aArgs = {};
|
|
29165
29136
|
}
|
|
29166
|
-
this._file =
|
|
29167
|
-
this._sourceRoot =
|
|
29168
|
-
this._skipValidation =
|
|
29137
|
+
this._file = util4.getArg(aArgs, "file", null);
|
|
29138
|
+
this._sourceRoot = util4.getArg(aArgs, "sourceRoot", null);
|
|
29139
|
+
this._skipValidation = util4.getArg(aArgs, "skipValidation", false);
|
|
29169
29140
|
this._sources = new ArraySet2();
|
|
29170
29141
|
this._names = new ArraySet2();
|
|
29171
29142
|
this._mappings = new MappingList();
|
|
@@ -29188,7 +29159,7 @@ var require_source_map_generator = __commonJS({
|
|
|
29188
29159
|
if (mapping.source != null) {
|
|
29189
29160
|
newMapping.source = mapping.source;
|
|
29190
29161
|
if (sourceRoot != null) {
|
|
29191
|
-
newMapping.source =
|
|
29162
|
+
newMapping.source = util4.relative(sourceRoot, newMapping.source);
|
|
29192
29163
|
}
|
|
29193
29164
|
newMapping.original = {
|
|
29194
29165
|
line: mapping.originalLine,
|
|
@@ -29203,7 +29174,7 @@ var require_source_map_generator = __commonJS({
|
|
|
29203
29174
|
aSourceMapConsumer.sources.forEach(function(sourceFile) {
|
|
29204
29175
|
var sourceRelative = sourceFile;
|
|
29205
29176
|
if (sourceRoot !== null) {
|
|
29206
|
-
sourceRelative =
|
|
29177
|
+
sourceRelative = util4.relative(sourceRoot, sourceFile);
|
|
29207
29178
|
}
|
|
29208
29179
|
if (!generator._sources.has(sourceRelative)) {
|
|
29209
29180
|
generator._sources.add(sourceRelative);
|
|
@@ -29216,10 +29187,10 @@ var require_source_map_generator = __commonJS({
|
|
|
29216
29187
|
return generator;
|
|
29217
29188
|
};
|
|
29218
29189
|
SourceMapGenerator.prototype.addMapping = function SourceMapGenerator_addMapping(aArgs) {
|
|
29219
|
-
var generated =
|
|
29220
|
-
var original =
|
|
29221
|
-
var source2 =
|
|
29222
|
-
var name =
|
|
29190
|
+
var generated = util4.getArg(aArgs, "generated");
|
|
29191
|
+
var original = util4.getArg(aArgs, "original", null);
|
|
29192
|
+
var source2 = util4.getArg(aArgs, "source", null);
|
|
29193
|
+
var name = util4.getArg(aArgs, "name", null);
|
|
29223
29194
|
if (!this._skipValidation) {
|
|
29224
29195
|
this._validateMapping(generated, original, source2, name);
|
|
29225
29196
|
}
|
|
@@ -29247,15 +29218,15 @@ var require_source_map_generator = __commonJS({
|
|
|
29247
29218
|
SourceMapGenerator.prototype.setSourceContent = function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {
|
|
29248
29219
|
var source2 = aSourceFile;
|
|
29249
29220
|
if (this._sourceRoot != null) {
|
|
29250
|
-
source2 =
|
|
29221
|
+
source2 = util4.relative(this._sourceRoot, source2);
|
|
29251
29222
|
}
|
|
29252
29223
|
if (aSourceContent != null) {
|
|
29253
29224
|
if (!this._sourcesContents) {
|
|
29254
29225
|
this._sourcesContents = /* @__PURE__ */ Object.create(null);
|
|
29255
29226
|
}
|
|
29256
|
-
this._sourcesContents[
|
|
29227
|
+
this._sourcesContents[util4.toSetString(source2)] = aSourceContent;
|
|
29257
29228
|
} else if (this._sourcesContents) {
|
|
29258
|
-
delete this._sourcesContents[
|
|
29229
|
+
delete this._sourcesContents[util4.toSetString(source2)];
|
|
29259
29230
|
if (Object.keys(this._sourcesContents).length === 0) {
|
|
29260
29231
|
this._sourcesContents = null;
|
|
29261
29232
|
}
|
|
@@ -29273,7 +29244,7 @@ var require_source_map_generator = __commonJS({
|
|
|
29273
29244
|
}
|
|
29274
29245
|
var sourceRoot = this._sourceRoot;
|
|
29275
29246
|
if (sourceRoot != null) {
|
|
29276
|
-
sourceFile =
|
|
29247
|
+
sourceFile = util4.relative(sourceRoot, sourceFile);
|
|
29277
29248
|
}
|
|
29278
29249
|
var newSources = new ArraySet2();
|
|
29279
29250
|
var newNames = new ArraySet2();
|
|
@@ -29286,10 +29257,10 @@ var require_source_map_generator = __commonJS({
|
|
|
29286
29257
|
if (original.source != null) {
|
|
29287
29258
|
mapping.source = original.source;
|
|
29288
29259
|
if (aSourceMapPath != null) {
|
|
29289
|
-
mapping.source =
|
|
29260
|
+
mapping.source = util4.join(aSourceMapPath, mapping.source);
|
|
29290
29261
|
}
|
|
29291
29262
|
if (sourceRoot != null) {
|
|
29292
|
-
mapping.source =
|
|
29263
|
+
mapping.source = util4.relative(sourceRoot, mapping.source);
|
|
29293
29264
|
}
|
|
29294
29265
|
mapping.originalLine = original.line;
|
|
29295
29266
|
mapping.originalColumn = original.column;
|
|
@@ -29313,10 +29284,10 @@ var require_source_map_generator = __commonJS({
|
|
|
29313
29284
|
var content = aSourceMapConsumer.sourceContentFor(sourceFile2);
|
|
29314
29285
|
if (content != null) {
|
|
29315
29286
|
if (aSourceMapPath != null) {
|
|
29316
|
-
sourceFile2 =
|
|
29287
|
+
sourceFile2 = util4.join(aSourceMapPath, sourceFile2);
|
|
29317
29288
|
}
|
|
29318
29289
|
if (sourceRoot != null) {
|
|
29319
|
-
sourceFile2 =
|
|
29290
|
+
sourceFile2 = util4.relative(sourceRoot, sourceFile2);
|
|
29320
29291
|
}
|
|
29321
29292
|
this.setSourceContent(sourceFile2, content);
|
|
29322
29293
|
}
|
|
@@ -29365,7 +29336,7 @@ var require_source_map_generator = __commonJS({
|
|
|
29365
29336
|
}
|
|
29366
29337
|
} else {
|
|
29367
29338
|
if (i > 0) {
|
|
29368
|
-
if (!
|
|
29339
|
+
if (!util4.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {
|
|
29369
29340
|
continue;
|
|
29370
29341
|
}
|
|
29371
29342
|
next += ",";
|
|
@@ -29397,9 +29368,9 @@ var require_source_map_generator = __commonJS({
|
|
|
29397
29368
|
return null;
|
|
29398
29369
|
}
|
|
29399
29370
|
if (aSourceRoot != null) {
|
|
29400
|
-
source2 =
|
|
29371
|
+
source2 = util4.relative(aSourceRoot, source2);
|
|
29401
29372
|
}
|
|
29402
|
-
var key2 =
|
|
29373
|
+
var key2 = util4.toSetString(source2);
|
|
29403
29374
|
return Object.prototype.hasOwnProperty.call(this._sourcesContents, key2) ? this._sourcesContents[key2] : null;
|
|
29404
29375
|
}, this);
|
|
29405
29376
|
};
|
|
@@ -29525,7 +29496,7 @@ var require_quick_sort = __commonJS({
|
|
|
29525
29496
|
var require_source_map_consumer = __commonJS({
|
|
29526
29497
|
"../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js"(exports) {
|
|
29527
29498
|
"use strict";
|
|
29528
|
-
var
|
|
29499
|
+
var util4 = require_util2();
|
|
29529
29500
|
var binarySearch = require_binary_search();
|
|
29530
29501
|
var ArraySet2 = require_array_set().ArraySet;
|
|
29531
29502
|
var base64VLQ = require_base64_vlq();
|
|
@@ -29533,7 +29504,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29533
29504
|
function SourceMapConsumer(aSourceMap, aSourceMapURL) {
|
|
29534
29505
|
var sourceMap = aSourceMap;
|
|
29535
29506
|
if (typeof aSourceMap === "string") {
|
|
29536
|
-
sourceMap =
|
|
29507
|
+
sourceMap = util4.parseSourceMapInput(aSourceMap);
|
|
29537
29508
|
}
|
|
29538
29509
|
return sourceMap.sections != null ? new IndexedSourceMapConsumer(sourceMap, aSourceMapURL) : new BasicSourceMapConsumer(sourceMap, aSourceMapURL);
|
|
29539
29510
|
}
|
|
@@ -29591,7 +29562,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29591
29562
|
var sourceRoot = this.sourceRoot;
|
|
29592
29563
|
mappings.map(function(mapping) {
|
|
29593
29564
|
var source2 = mapping.source === null ? null : this._sources.at(mapping.source);
|
|
29594
|
-
source2 =
|
|
29565
|
+
source2 = util4.computeSourceURL(sourceRoot, source2, this._sourceMapURL);
|
|
29595
29566
|
return {
|
|
29596
29567
|
source: source2,
|
|
29597
29568
|
generatedLine: mapping.generatedLine,
|
|
@@ -29603,11 +29574,11 @@ var require_source_map_consumer = __commonJS({
|
|
|
29603
29574
|
}, this).forEach(aCallback, context);
|
|
29604
29575
|
};
|
|
29605
29576
|
SourceMapConsumer.prototype.allGeneratedPositionsFor = function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {
|
|
29606
|
-
var line2 =
|
|
29577
|
+
var line2 = util4.getArg(aArgs, "line");
|
|
29607
29578
|
var needle = {
|
|
29608
|
-
source:
|
|
29579
|
+
source: util4.getArg(aArgs, "source"),
|
|
29609
29580
|
originalLine: line2,
|
|
29610
|
-
originalColumn:
|
|
29581
|
+
originalColumn: util4.getArg(aArgs, "column", 0)
|
|
29611
29582
|
};
|
|
29612
29583
|
needle.source = this._findSourceIndex(needle.source);
|
|
29613
29584
|
if (needle.source < 0) {
|
|
@@ -29619,7 +29590,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29619
29590
|
this._originalMappings,
|
|
29620
29591
|
"originalLine",
|
|
29621
29592
|
"originalColumn",
|
|
29622
|
-
|
|
29593
|
+
util4.compareByOriginalPositions,
|
|
29623
29594
|
binarySearch.LEAST_UPPER_BOUND
|
|
29624
29595
|
);
|
|
29625
29596
|
if (index >= 0) {
|
|
@@ -29628,9 +29599,9 @@ var require_source_map_consumer = __commonJS({
|
|
|
29628
29599
|
var originalLine = mapping.originalLine;
|
|
29629
29600
|
while (mapping && mapping.originalLine === originalLine) {
|
|
29630
29601
|
mappings.push({
|
|
29631
|
-
line:
|
|
29632
|
-
column:
|
|
29633
|
-
lastColumn:
|
|
29602
|
+
line: util4.getArg(mapping, "generatedLine", null),
|
|
29603
|
+
column: util4.getArg(mapping, "generatedColumn", null),
|
|
29604
|
+
lastColumn: util4.getArg(mapping, "lastGeneratedColumn", null)
|
|
29634
29605
|
});
|
|
29635
29606
|
mapping = this._originalMappings[++index];
|
|
29636
29607
|
}
|
|
@@ -29638,9 +29609,9 @@ var require_source_map_consumer = __commonJS({
|
|
|
29638
29609
|
var originalColumn = mapping.originalColumn;
|
|
29639
29610
|
while (mapping && mapping.originalLine === line2 && mapping.originalColumn == originalColumn) {
|
|
29640
29611
|
mappings.push({
|
|
29641
|
-
line:
|
|
29642
|
-
column:
|
|
29643
|
-
lastColumn:
|
|
29612
|
+
line: util4.getArg(mapping, "generatedLine", null),
|
|
29613
|
+
column: util4.getArg(mapping, "generatedColumn", null),
|
|
29614
|
+
lastColumn: util4.getArg(mapping, "lastGeneratedColumn", null)
|
|
29644
29615
|
});
|
|
29645
29616
|
mapping = this._originalMappings[++index];
|
|
29646
29617
|
}
|
|
@@ -29652,28 +29623,28 @@ var require_source_map_consumer = __commonJS({
|
|
|
29652
29623
|
function BasicSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
|
29653
29624
|
var sourceMap = aSourceMap;
|
|
29654
29625
|
if (typeof aSourceMap === "string") {
|
|
29655
|
-
sourceMap =
|
|
29656
|
-
}
|
|
29657
|
-
var version =
|
|
29658
|
-
var sources =
|
|
29659
|
-
var names =
|
|
29660
|
-
var sourceRoot =
|
|
29661
|
-
var sourcesContent =
|
|
29662
|
-
var mappings =
|
|
29663
|
-
var file =
|
|
29626
|
+
sourceMap = util4.parseSourceMapInput(aSourceMap);
|
|
29627
|
+
}
|
|
29628
|
+
var version = util4.getArg(sourceMap, "version");
|
|
29629
|
+
var sources = util4.getArg(sourceMap, "sources");
|
|
29630
|
+
var names = util4.getArg(sourceMap, "names", []);
|
|
29631
|
+
var sourceRoot = util4.getArg(sourceMap, "sourceRoot", null);
|
|
29632
|
+
var sourcesContent = util4.getArg(sourceMap, "sourcesContent", null);
|
|
29633
|
+
var mappings = util4.getArg(sourceMap, "mappings");
|
|
29634
|
+
var file = util4.getArg(sourceMap, "file", null);
|
|
29664
29635
|
if (version != this._version) {
|
|
29665
29636
|
throw new Error("Unsupported version: " + version);
|
|
29666
29637
|
}
|
|
29667
29638
|
if (sourceRoot) {
|
|
29668
|
-
sourceRoot =
|
|
29639
|
+
sourceRoot = util4.normalize(sourceRoot);
|
|
29669
29640
|
}
|
|
29670
|
-
sources = sources.map(String).map(
|
|
29671
|
-
return sourceRoot &&
|
|
29641
|
+
sources = sources.map(String).map(util4.normalize).map(function(source2) {
|
|
29642
|
+
return sourceRoot && util4.isAbsolute(sourceRoot) && util4.isAbsolute(source2) ? util4.relative(sourceRoot, source2) : source2;
|
|
29672
29643
|
});
|
|
29673
29644
|
this._names = ArraySet2.fromArray(names.map(String), true);
|
|
29674
29645
|
this._sources = ArraySet2.fromArray(sources, true);
|
|
29675
29646
|
this._absoluteSources = this._sources.toArray().map(function(s) {
|
|
29676
|
-
return
|
|
29647
|
+
return util4.computeSourceURL(sourceRoot, s, aSourceMapURL);
|
|
29677
29648
|
});
|
|
29678
29649
|
this.sourceRoot = sourceRoot;
|
|
29679
29650
|
this.sourcesContent = sourcesContent;
|
|
@@ -29686,7 +29657,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29686
29657
|
BasicSourceMapConsumer.prototype._findSourceIndex = function(aSource) {
|
|
29687
29658
|
var relativeSource = aSource;
|
|
29688
29659
|
if (this.sourceRoot != null) {
|
|
29689
|
-
relativeSource =
|
|
29660
|
+
relativeSource = util4.relative(this.sourceRoot, relativeSource);
|
|
29690
29661
|
}
|
|
29691
29662
|
if (this._sources.has(relativeSource)) {
|
|
29692
29663
|
return this._sources.indexOf(relativeSource);
|
|
@@ -29711,7 +29682,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29711
29682
|
smc.file = aSourceMap._file;
|
|
29712
29683
|
smc._sourceMapURL = aSourceMapURL;
|
|
29713
29684
|
smc._absoluteSources = smc._sources.toArray().map(function(s) {
|
|
29714
|
-
return
|
|
29685
|
+
return util4.computeSourceURL(smc.sourceRoot, s, aSourceMapURL);
|
|
29715
29686
|
});
|
|
29716
29687
|
var generatedMappings = aSourceMap._mappings.toArray().slice();
|
|
29717
29688
|
var destGeneratedMappings = smc.__generatedMappings = [];
|
|
@@ -29732,7 +29703,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29732
29703
|
}
|
|
29733
29704
|
destGeneratedMappings.push(destMapping);
|
|
29734
29705
|
}
|
|
29735
|
-
quickSort(smc.__originalMappings,
|
|
29706
|
+
quickSort(smc.__originalMappings, util4.compareByOriginalPositions);
|
|
29736
29707
|
return smc;
|
|
29737
29708
|
};
|
|
29738
29709
|
BasicSourceMapConsumer.prototype._version = 3;
|
|
@@ -29819,9 +29790,9 @@ var require_source_map_consumer = __commonJS({
|
|
|
29819
29790
|
}
|
|
29820
29791
|
}
|
|
29821
29792
|
}
|
|
29822
|
-
quickSort(generatedMappings,
|
|
29793
|
+
quickSort(generatedMappings, util4.compareByGeneratedPositionsDeflated);
|
|
29823
29794
|
this.__generatedMappings = generatedMappings;
|
|
29824
|
-
quickSort(originalMappings,
|
|
29795
|
+
quickSort(originalMappings, util4.compareByOriginalPositions);
|
|
29825
29796
|
this.__originalMappings = originalMappings;
|
|
29826
29797
|
};
|
|
29827
29798
|
BasicSourceMapConsumer.prototype._findMapping = function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName, aColumnName, aComparator, aBias) {
|
|
@@ -29848,33 +29819,33 @@ var require_source_map_consumer = __commonJS({
|
|
|
29848
29819
|
};
|
|
29849
29820
|
BasicSourceMapConsumer.prototype.originalPositionFor = function SourceMapConsumer_originalPositionFor(aArgs) {
|
|
29850
29821
|
var needle = {
|
|
29851
|
-
generatedLine:
|
|
29852
|
-
generatedColumn:
|
|
29822
|
+
generatedLine: util4.getArg(aArgs, "line"),
|
|
29823
|
+
generatedColumn: util4.getArg(aArgs, "column")
|
|
29853
29824
|
};
|
|
29854
29825
|
var index = this._findMapping(
|
|
29855
29826
|
needle,
|
|
29856
29827
|
this._generatedMappings,
|
|
29857
29828
|
"generatedLine",
|
|
29858
29829
|
"generatedColumn",
|
|
29859
|
-
|
|
29860
|
-
|
|
29830
|
+
util4.compareByGeneratedPositionsDeflated,
|
|
29831
|
+
util4.getArg(aArgs, "bias", SourceMapConsumer.GREATEST_LOWER_BOUND)
|
|
29861
29832
|
);
|
|
29862
29833
|
if (index >= 0) {
|
|
29863
29834
|
var mapping = this._generatedMappings[index];
|
|
29864
29835
|
if (mapping.generatedLine === needle.generatedLine) {
|
|
29865
|
-
var source2 =
|
|
29836
|
+
var source2 = util4.getArg(mapping, "source", null);
|
|
29866
29837
|
if (source2 !== null) {
|
|
29867
29838
|
source2 = this._sources.at(source2);
|
|
29868
|
-
source2 =
|
|
29839
|
+
source2 = util4.computeSourceURL(this.sourceRoot, source2, this._sourceMapURL);
|
|
29869
29840
|
}
|
|
29870
|
-
var name =
|
|
29841
|
+
var name = util4.getArg(mapping, "name", null);
|
|
29871
29842
|
if (name !== null) {
|
|
29872
29843
|
name = this._names.at(name);
|
|
29873
29844
|
}
|
|
29874
29845
|
return {
|
|
29875
29846
|
source: source2,
|
|
29876
|
-
line:
|
|
29877
|
-
column:
|
|
29847
|
+
line: util4.getArg(mapping, "originalLine", null),
|
|
29848
|
+
column: util4.getArg(mapping, "originalColumn", null),
|
|
29878
29849
|
name
|
|
29879
29850
|
};
|
|
29880
29851
|
}
|
|
@@ -29904,10 +29875,10 @@ var require_source_map_consumer = __commonJS({
|
|
|
29904
29875
|
}
|
|
29905
29876
|
var relativeSource = aSource;
|
|
29906
29877
|
if (this.sourceRoot != null) {
|
|
29907
|
-
relativeSource =
|
|
29878
|
+
relativeSource = util4.relative(this.sourceRoot, relativeSource);
|
|
29908
29879
|
}
|
|
29909
29880
|
var url2;
|
|
29910
|
-
if (this.sourceRoot != null && (url2 =
|
|
29881
|
+
if (this.sourceRoot != null && (url2 = util4.urlParse(this.sourceRoot))) {
|
|
29911
29882
|
var fileUriAbsPath = relativeSource.replace(/^file:\/\//, "");
|
|
29912
29883
|
if (url2.scheme == "file" && this._sources.has(fileUriAbsPath)) {
|
|
29913
29884
|
return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)];
|
|
@@ -29923,7 +29894,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29923
29894
|
}
|
|
29924
29895
|
};
|
|
29925
29896
|
BasicSourceMapConsumer.prototype.generatedPositionFor = function SourceMapConsumer_generatedPositionFor(aArgs) {
|
|
29926
|
-
var source2 =
|
|
29897
|
+
var source2 = util4.getArg(aArgs, "source");
|
|
29927
29898
|
source2 = this._findSourceIndex(source2);
|
|
29928
29899
|
if (source2 < 0) {
|
|
29929
29900
|
return {
|
|
@@ -29934,24 +29905,24 @@ var require_source_map_consumer = __commonJS({
|
|
|
29934
29905
|
}
|
|
29935
29906
|
var needle = {
|
|
29936
29907
|
source: source2,
|
|
29937
|
-
originalLine:
|
|
29938
|
-
originalColumn:
|
|
29908
|
+
originalLine: util4.getArg(aArgs, "line"),
|
|
29909
|
+
originalColumn: util4.getArg(aArgs, "column")
|
|
29939
29910
|
};
|
|
29940
29911
|
var index = this._findMapping(
|
|
29941
29912
|
needle,
|
|
29942
29913
|
this._originalMappings,
|
|
29943
29914
|
"originalLine",
|
|
29944
29915
|
"originalColumn",
|
|
29945
|
-
|
|
29946
|
-
|
|
29916
|
+
util4.compareByOriginalPositions,
|
|
29917
|
+
util4.getArg(aArgs, "bias", SourceMapConsumer.GREATEST_LOWER_BOUND)
|
|
29947
29918
|
);
|
|
29948
29919
|
if (index >= 0) {
|
|
29949
29920
|
var mapping = this._originalMappings[index];
|
|
29950
29921
|
if (mapping.source === needle.source) {
|
|
29951
29922
|
return {
|
|
29952
|
-
line:
|
|
29953
|
-
column:
|
|
29954
|
-
lastColumn:
|
|
29923
|
+
line: util4.getArg(mapping, "generatedLine", null),
|
|
29924
|
+
column: util4.getArg(mapping, "generatedColumn", null),
|
|
29925
|
+
lastColumn: util4.getArg(mapping, "lastGeneratedColumn", null)
|
|
29955
29926
|
};
|
|
29956
29927
|
}
|
|
29957
29928
|
}
|
|
@@ -29965,10 +29936,10 @@ var require_source_map_consumer = __commonJS({
|
|
|
29965
29936
|
function IndexedSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
|
29966
29937
|
var sourceMap = aSourceMap;
|
|
29967
29938
|
if (typeof aSourceMap === "string") {
|
|
29968
|
-
sourceMap =
|
|
29939
|
+
sourceMap = util4.parseSourceMapInput(aSourceMap);
|
|
29969
29940
|
}
|
|
29970
|
-
var version =
|
|
29971
|
-
var sections =
|
|
29941
|
+
var version = util4.getArg(sourceMap, "version");
|
|
29942
|
+
var sections = util4.getArg(sourceMap, "sections");
|
|
29972
29943
|
if (version != this._version) {
|
|
29973
29944
|
throw new Error("Unsupported version: " + version);
|
|
29974
29945
|
}
|
|
@@ -29982,9 +29953,9 @@ var require_source_map_consumer = __commonJS({
|
|
|
29982
29953
|
if (s.url) {
|
|
29983
29954
|
throw new Error("Support for url field in sections not implemented.");
|
|
29984
29955
|
}
|
|
29985
|
-
var offset =
|
|
29986
|
-
var offsetLine =
|
|
29987
|
-
var offsetColumn =
|
|
29956
|
+
var offset = util4.getArg(s, "offset");
|
|
29957
|
+
var offsetLine = util4.getArg(offset, "line");
|
|
29958
|
+
var offsetColumn = util4.getArg(offset, "column");
|
|
29988
29959
|
if (offsetLine < lastOffset.line || offsetLine === lastOffset.line && offsetColumn < lastOffset.column) {
|
|
29989
29960
|
throw new Error("Section offsets must be ordered and non-overlapping.");
|
|
29990
29961
|
}
|
|
@@ -29996,7 +29967,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
29996
29967
|
generatedLine: offsetLine + 1,
|
|
29997
29968
|
generatedColumn: offsetColumn + 1
|
|
29998
29969
|
},
|
|
29999
|
-
consumer: new SourceMapConsumer(
|
|
29970
|
+
consumer: new SourceMapConsumer(util4.getArg(s, "map"), aSourceMapURL)
|
|
30000
29971
|
};
|
|
30001
29972
|
});
|
|
30002
29973
|
}
|
|
@@ -30016,8 +29987,8 @@ var require_source_map_consumer = __commonJS({
|
|
|
30016
29987
|
});
|
|
30017
29988
|
IndexedSourceMapConsumer.prototype.originalPositionFor = function IndexedSourceMapConsumer_originalPositionFor(aArgs) {
|
|
30018
29989
|
var needle = {
|
|
30019
|
-
generatedLine:
|
|
30020
|
-
generatedColumn:
|
|
29990
|
+
generatedLine: util4.getArg(aArgs, "line"),
|
|
29991
|
+
generatedColumn: util4.getArg(aArgs, "column")
|
|
30021
29992
|
};
|
|
30022
29993
|
var sectionIndex = binarySearch.search(
|
|
30023
29994
|
needle,
|
|
@@ -30067,7 +30038,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
30067
30038
|
IndexedSourceMapConsumer.prototype.generatedPositionFor = function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {
|
|
30068
30039
|
for (var i = 0; i < this._sections.length; i++) {
|
|
30069
30040
|
var section = this._sections[i];
|
|
30070
|
-
if (section.consumer._findSourceIndex(
|
|
30041
|
+
if (section.consumer._findSourceIndex(util4.getArg(aArgs, "source")) === -1) {
|
|
30071
30042
|
continue;
|
|
30072
30043
|
}
|
|
30073
30044
|
var generatedPosition = section.consumer.generatedPositionFor(aArgs);
|
|
@@ -30093,7 +30064,7 @@ var require_source_map_consumer = __commonJS({
|
|
|
30093
30064
|
for (var j = 0; j < sectionMappings.length; j++) {
|
|
30094
30065
|
var mapping = sectionMappings[j];
|
|
30095
30066
|
var source2 = section.consumer._sources.at(mapping.source);
|
|
30096
|
-
source2 =
|
|
30067
|
+
source2 = util4.computeSourceURL(section.consumer.sourceRoot, source2, this._sourceMapURL);
|
|
30097
30068
|
this._sources.add(source2);
|
|
30098
30069
|
source2 = this._sources.indexOf(source2);
|
|
30099
30070
|
var name = null;
|
|
@@ -30116,8 +30087,8 @@ var require_source_map_consumer = __commonJS({
|
|
|
30116
30087
|
}
|
|
30117
30088
|
}
|
|
30118
30089
|
}
|
|
30119
|
-
quickSort(this.__generatedMappings,
|
|
30120
|
-
quickSort(this.__originalMappings,
|
|
30090
|
+
quickSort(this.__generatedMappings, util4.compareByGeneratedPositionsDeflated);
|
|
30091
|
+
quickSort(this.__originalMappings, util4.compareByOriginalPositions);
|
|
30121
30092
|
};
|
|
30122
30093
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
30123
30094
|
}
|
|
@@ -30128,7 +30099,7 @@ var require_source_node = __commonJS({
|
|
|
30128
30099
|
"../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js"(exports) {
|
|
30129
30100
|
"use strict";
|
|
30130
30101
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
30131
|
-
var
|
|
30102
|
+
var util4 = require_util2();
|
|
30132
30103
|
var REGEX_NEWLINE = /(\r?\n)/;
|
|
30133
30104
|
var NEWLINE_CODE = 10;
|
|
30134
30105
|
var isSourceNode = "$$$isSourceNode$$$";
|
|
@@ -30195,7 +30166,7 @@ var require_source_node = __commonJS({
|
|
|
30195
30166
|
var content = aSourceMapConsumer.sourceContentFor(sourceFile);
|
|
30196
30167
|
if (content != null) {
|
|
30197
30168
|
if (aRelativePath != null) {
|
|
30198
|
-
sourceFile =
|
|
30169
|
+
sourceFile = util4.join(aRelativePath, sourceFile);
|
|
30199
30170
|
}
|
|
30200
30171
|
node.setSourceContent(sourceFile, content);
|
|
30201
30172
|
}
|
|
@@ -30205,7 +30176,7 @@ var require_source_node = __commonJS({
|
|
|
30205
30176
|
if (mapping === null || mapping.source === void 0) {
|
|
30206
30177
|
node.add(code);
|
|
30207
30178
|
} else {
|
|
30208
|
-
var source2 = aRelativePath ?
|
|
30179
|
+
var source2 = aRelativePath ? util4.join(aRelativePath, mapping.source) : mapping.source;
|
|
30209
30180
|
node.add(new SourceNode(
|
|
30210
30181
|
mapping.originalLine,
|
|
30211
30182
|
mapping.originalColumn,
|
|
@@ -30291,7 +30262,7 @@ var require_source_node = __commonJS({
|
|
|
30291
30262
|
return this;
|
|
30292
30263
|
};
|
|
30293
30264
|
SourceNode.prototype.setSourceContent = function SourceNode_setSourceContent(aSourceFile, aSourceContent) {
|
|
30294
|
-
this.sourceContents[
|
|
30265
|
+
this.sourceContents[util4.toSetString(aSourceFile)] = aSourceContent;
|
|
30295
30266
|
};
|
|
30296
30267
|
SourceNode.prototype.walkSourceContents = function SourceNode_walkSourceContents(aFn) {
|
|
30297
30268
|
for (var i = 0, len = this.children.length; i < len; i++) {
|
|
@@ -30301,7 +30272,7 @@ var require_source_node = __commonJS({
|
|
|
30301
30272
|
}
|
|
30302
30273
|
var sources = Object.keys(this.sourceContents);
|
|
30303
30274
|
for (var i = 0, len = sources.length; i < len; i++) {
|
|
30304
|
-
aFn(
|
|
30275
|
+
aFn(util4.fromSetString(sources[i]), this.sourceContents[sources[i]]);
|
|
30305
30276
|
}
|
|
30306
30277
|
};
|
|
30307
30278
|
SourceNode.prototype.toString = function SourceNode_toString() {
|
|
@@ -37442,7 +37413,7 @@ var require_innerFrom = __commonJS({
|
|
|
37442
37413
|
exports.fromIterable = fromIterable;
|
|
37443
37414
|
function fromAsyncIterable(asyncIterable) {
|
|
37444
37415
|
return new Observable_1.Observable(function(subscriber) {
|
|
37445
|
-
|
|
37416
|
+
process2(asyncIterable, subscriber).catch(function(err) {
|
|
37446
37417
|
return subscriber.error(err);
|
|
37447
37418
|
});
|
|
37448
37419
|
});
|
|
@@ -37452,7 +37423,7 @@ var require_innerFrom = __commonJS({
|
|
|
37452
37423
|
return fromAsyncIterable(isReadableStreamLike_1.readableStreamLikeToAsyncGenerator(readableStream));
|
|
37453
37424
|
}
|
|
37454
37425
|
exports.fromReadableStreamLike = fromReadableStreamLike;
|
|
37455
|
-
function
|
|
37426
|
+
function process2(asyncIterable, subscriber) {
|
|
37456
37427
|
var asyncIterable_1, asyncIterable_1_1;
|
|
37457
37428
|
var e_2, _a2;
|
|
37458
37429
|
return __awaiter4(this, void 0, void 0, function() {
|
|
@@ -47159,7 +47130,7 @@ var require_wrap_ansi = __commonJS({
|
|
|
47159
47130
|
var require_screen_manager = __commonJS({
|
|
47160
47131
|
"../../../../node_modules/.pnpm/inquirer@8.2.6/node_modules/inquirer/lib/utils/screen-manager.js"(exports, module2) {
|
|
47161
47132
|
"use strict";
|
|
47162
|
-
var
|
|
47133
|
+
var util4 = require_readline();
|
|
47163
47134
|
var cliWidth = require_cli_width();
|
|
47164
47135
|
var wrapAnsi = require_wrap_ansi();
|
|
47165
47136
|
var stripAnsi3 = require_strip_ansi();
|
|
@@ -47225,11 +47196,11 @@ var require_screen_manager = __commonJS({
|
|
|
47225
47196
|
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - cursorPos.rows;
|
|
47226
47197
|
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height(bottomContent) : 0);
|
|
47227
47198
|
if (bottomContentHeight > 0) {
|
|
47228
|
-
|
|
47199
|
+
util4.up(this.rl, bottomContentHeight);
|
|
47229
47200
|
}
|
|
47230
|
-
|
|
47201
|
+
util4.left(this.rl, stringWidth(lastLine(fullContent)));
|
|
47231
47202
|
if (cursorPos.cols > 0) {
|
|
47232
|
-
|
|
47203
|
+
util4.right(this.rl, cursorPos.cols);
|
|
47233
47204
|
}
|
|
47234
47205
|
this.extraLinesUnderPrompt = bottomContentHeight;
|
|
47235
47206
|
this.height = height(fullContent);
|
|
@@ -47237,9 +47208,9 @@ var require_screen_manager = __commonJS({
|
|
|
47237
47208
|
}
|
|
47238
47209
|
clean(extraLines) {
|
|
47239
47210
|
if (extraLines > 0) {
|
|
47240
|
-
|
|
47211
|
+
util4.down(this.rl, extraLines);
|
|
47241
47212
|
}
|
|
47242
|
-
|
|
47213
|
+
util4.clearLine(this.rl, this.height);
|
|
47243
47214
|
}
|
|
47244
47215
|
done() {
|
|
47245
47216
|
this.rl.setPrompt("");
|
|
@@ -47248,7 +47219,7 @@ var require_screen_manager = __commonJS({
|
|
|
47248
47219
|
}
|
|
47249
47220
|
releaseCursor() {
|
|
47250
47221
|
if (this.extraLinesUnderPrompt > 0) {
|
|
47251
|
-
|
|
47222
|
+
util4.down(this.rl, this.extraLinesUnderPrompt);
|
|
47252
47223
|
}
|
|
47253
47224
|
}
|
|
47254
47225
|
normalizedCliWidth() {
|
|
@@ -48615,7 +48586,7 @@ var require_utf8 = __commonJS({
|
|
|
48615
48586
|
var require_unicode = __commonJS({
|
|
48616
48587
|
"../../../../node_modules/.pnpm/chardet@0.7.0/node_modules/chardet/encoding/unicode.js"(exports, module2) {
|
|
48617
48588
|
"use strict";
|
|
48618
|
-
var
|
|
48589
|
+
var util4 = require("util");
|
|
48619
48590
|
var Match = require_match();
|
|
48620
48591
|
module2.exports.UTF_16BE = function() {
|
|
48621
48592
|
this.name = function() {
|
|
@@ -48683,7 +48654,7 @@ var require_unicode = __commonJS({
|
|
|
48683
48654
|
return (input[index + 0] & 255) << 24 | (input[index + 1] & 255) << 16 | (input[index + 2] & 255) << 8 | input[index + 3] & 255;
|
|
48684
48655
|
};
|
|
48685
48656
|
};
|
|
48686
|
-
|
|
48657
|
+
util4.inherits(module2.exports.UTF_32BE, UTF_32);
|
|
48687
48658
|
module2.exports.UTF_32LE = function() {
|
|
48688
48659
|
this.name = function() {
|
|
48689
48660
|
return "UTF-32LE";
|
|
@@ -48692,7 +48663,7 @@ var require_unicode = __commonJS({
|
|
|
48692
48663
|
return (input[index + 3] & 255) << 24 | (input[index + 2] & 255) << 16 | (input[index + 1] & 255) << 8 | input[index + 0] & 255;
|
|
48693
48664
|
};
|
|
48694
48665
|
};
|
|
48695
|
-
|
|
48666
|
+
util4.inherits(module2.exports.UTF_32LE, UTF_32);
|
|
48696
48667
|
}
|
|
48697
48668
|
});
|
|
48698
48669
|
|
|
@@ -48700,7 +48671,7 @@ var require_unicode = __commonJS({
|
|
|
48700
48671
|
var require_mbcs = __commonJS({
|
|
48701
48672
|
"../../../../node_modules/.pnpm/chardet@0.7.0/node_modules/chardet/encoding/mbcs.js"(exports, module2) {
|
|
48702
48673
|
"use strict";
|
|
48703
|
-
var
|
|
48674
|
+
var util4 = require("util");
|
|
48704
48675
|
var Match = require_match();
|
|
48705
48676
|
function binarySearch(arr, searchValue) {
|
|
48706
48677
|
function find(arr2, searchValue2, left, right) {
|
|
@@ -48878,7 +48849,7 @@ var require_mbcs = __commonJS({
|
|
|
48878
48849
|
return true;
|
|
48879
48850
|
};
|
|
48880
48851
|
};
|
|
48881
|
-
|
|
48852
|
+
util4.inherits(module2.exports.sjis, mbcs);
|
|
48882
48853
|
module2.exports.big5 = function() {
|
|
48883
48854
|
this.name = function() {
|
|
48884
48855
|
return "Big5";
|
|
@@ -49001,7 +48972,7 @@ var require_mbcs = __commonJS({
|
|
|
49001
48972
|
return true;
|
|
49002
48973
|
};
|
|
49003
48974
|
};
|
|
49004
|
-
|
|
48975
|
+
util4.inherits(module2.exports.big5, mbcs);
|
|
49005
48976
|
function eucNextChar(iter, det) {
|
|
49006
48977
|
iter.index = iter.nextIndex;
|
|
49007
48978
|
iter.error = false;
|
|
@@ -49152,7 +49123,7 @@ var require_mbcs = __commonJS({
|
|
|
49152
49123
|
];
|
|
49153
49124
|
this.nextChar = eucNextChar;
|
|
49154
49125
|
};
|
|
49155
|
-
|
|
49126
|
+
util4.inherits(module2.exports.euc_jp, mbcs);
|
|
49156
49127
|
module2.exports.euc_kr = function() {
|
|
49157
49128
|
this.name = function() {
|
|
49158
49129
|
return "EUC-KR";
|
|
@@ -49264,7 +49235,7 @@ var require_mbcs = __commonJS({
|
|
|
49264
49235
|
];
|
|
49265
49236
|
this.nextChar = eucNextChar;
|
|
49266
49237
|
};
|
|
49267
|
-
|
|
49238
|
+
util4.inherits(module2.exports.euc_kr, mbcs);
|
|
49268
49239
|
module2.exports.gb_18030 = function() {
|
|
49269
49240
|
this.name = function() {
|
|
49270
49241
|
return "GB18030";
|
|
@@ -49413,7 +49384,7 @@ var require_mbcs = __commonJS({
|
|
|
49413
49384
|
54992
|
|
49414
49385
|
];
|
|
49415
49386
|
};
|
|
49416
|
-
|
|
49387
|
+
util4.inherits(module2.exports.gb_18030, mbcs);
|
|
49417
49388
|
}
|
|
49418
49389
|
});
|
|
49419
49390
|
|
|
@@ -49421,7 +49392,7 @@ var require_mbcs = __commonJS({
|
|
|
49421
49392
|
var require_sbcs = __commonJS({
|
|
49422
49393
|
"../../../../node_modules/.pnpm/chardet@0.7.0/node_modules/chardet/encoding/sbcs.js"(exports, module2) {
|
|
49423
49394
|
"use strict";
|
|
49424
|
-
var
|
|
49395
|
+
var util4 = require("util");
|
|
49425
49396
|
var Match = require_match();
|
|
49426
49397
|
function NGramParser(theNgramList, theByteMap) {
|
|
49427
49398
|
var N_GRAM_MASK = 16777215;
|
|
@@ -50448,7 +50419,7 @@ var require_sbcs = __commonJS({
|
|
|
50448
50419
|
return det && det.fC1Bytes ? "windows-1252" : "ISO-8859-1";
|
|
50449
50420
|
};
|
|
50450
50421
|
};
|
|
50451
|
-
|
|
50422
|
+
util4.inherits(module2.exports.ISO_8859_1, sbcs);
|
|
50452
50423
|
module2.exports.ISO_8859_2 = function() {
|
|
50453
50424
|
this.byteMap = function() {
|
|
50454
50425
|
return [
|
|
@@ -50982,7 +50953,7 @@ var require_sbcs = __commonJS({
|
|
|
50982
50953
|
return det && det.fC1Bytes ? "windows-1250" : "ISO-8859-2";
|
|
50983
50954
|
};
|
|
50984
50955
|
};
|
|
50985
|
-
|
|
50956
|
+
util4.inherits(module2.exports.ISO_8859_2, sbcs);
|
|
50986
50957
|
module2.exports.ISO_8859_5 = function() {
|
|
50987
50958
|
this.byteMap = function() {
|
|
50988
50959
|
return [
|
|
@@ -51319,7 +51290,7 @@ var require_sbcs = __commonJS({
|
|
|
51319
51290
|
return "ru";
|
|
51320
51291
|
};
|
|
51321
51292
|
};
|
|
51322
|
-
|
|
51293
|
+
util4.inherits(module2.exports.ISO_8859_5, sbcs);
|
|
51323
51294
|
module2.exports.ISO_8859_6 = function() {
|
|
51324
51295
|
this.byteMap = function() {
|
|
51325
51296
|
return [
|
|
@@ -51656,7 +51627,7 @@ var require_sbcs = __commonJS({
|
|
|
51656
51627
|
return "ar";
|
|
51657
51628
|
};
|
|
51658
51629
|
};
|
|
51659
|
-
|
|
51630
|
+
util4.inherits(module2.exports.ISO_8859_6, sbcs);
|
|
51660
51631
|
module2.exports.ISO_8859_7 = function() {
|
|
51661
51632
|
this.byteMap = function() {
|
|
51662
51633
|
return [
|
|
@@ -51993,7 +51964,7 @@ var require_sbcs = __commonJS({
|
|
|
51993
51964
|
return "el";
|
|
51994
51965
|
};
|
|
51995
51966
|
};
|
|
51996
|
-
|
|
51967
|
+
util4.inherits(module2.exports.ISO_8859_7, sbcs);
|
|
51997
51968
|
module2.exports.ISO_8859_8 = function() {
|
|
51998
51969
|
this.byteMap = function() {
|
|
51999
51970
|
return [
|
|
@@ -52398,7 +52369,7 @@ var require_sbcs = __commonJS({
|
|
|
52398
52369
|
return "he";
|
|
52399
52370
|
};
|
|
52400
52371
|
};
|
|
52401
|
-
|
|
52372
|
+
util4.inherits(module2.exports.ISO_8859_8, sbcs);
|
|
52402
52373
|
module2.exports.ISO_8859_9 = function() {
|
|
52403
52374
|
this.byteMap = function() {
|
|
52404
52375
|
return [
|
|
@@ -52735,7 +52706,7 @@ var require_sbcs = __commonJS({
|
|
|
52735
52706
|
return "tr";
|
|
52736
52707
|
};
|
|
52737
52708
|
};
|
|
52738
|
-
|
|
52709
|
+
util4.inherits(module2.exports.ISO_8859_9, sbcs);
|
|
52739
52710
|
module2.exports.windows_1251 = function() {
|
|
52740
52711
|
this.byteMap = function() {
|
|
52741
52712
|
return [
|
|
@@ -53072,7 +53043,7 @@ var require_sbcs = __commonJS({
|
|
|
53072
53043
|
return "ru";
|
|
53073
53044
|
};
|
|
53074
53045
|
};
|
|
53075
|
-
|
|
53046
|
+
util4.inherits(module2.exports.windows_1251, sbcs);
|
|
53076
53047
|
module2.exports.windows_1256 = function() {
|
|
53077
53048
|
this.byteMap = function() {
|
|
53078
53049
|
return [
|
|
@@ -53409,7 +53380,7 @@ var require_sbcs = __commonJS({
|
|
|
53409
53380
|
return "ar";
|
|
53410
53381
|
};
|
|
53411
53382
|
};
|
|
53412
|
-
|
|
53383
|
+
util4.inherits(module2.exports.windows_1256, sbcs);
|
|
53413
53384
|
module2.exports.KOI8_R = function() {
|
|
53414
53385
|
this.byteMap = function() {
|
|
53415
53386
|
return [
|
|
@@ -53746,7 +53717,7 @@ var require_sbcs = __commonJS({
|
|
|
53746
53717
|
return "ru";
|
|
53747
53718
|
};
|
|
53748
53719
|
};
|
|
53749
|
-
|
|
53720
|
+
util4.inherits(module2.exports.KOI8_R, sbcs);
|
|
53750
53721
|
}
|
|
53751
53722
|
});
|
|
53752
53723
|
|
|
@@ -53754,7 +53725,7 @@ var require_sbcs = __commonJS({
|
|
|
53754
53725
|
var require_iso2022 = __commonJS({
|
|
53755
53726
|
"../../../../node_modules/.pnpm/chardet@0.7.0/node_modules/chardet/encoding/iso2022.js"(exports, module2) {
|
|
53756
53727
|
"use strict";
|
|
53757
|
-
var
|
|
53728
|
+
var util4 = require("util");
|
|
53758
53729
|
var Match = require_match();
|
|
53759
53730
|
function ISO_2022() {
|
|
53760
53731
|
}
|
|
@@ -53825,7 +53796,7 @@ var require_iso2022 = __commonJS({
|
|
|
53825
53796
|
// ISO 8859-7
|
|
53826
53797
|
];
|
|
53827
53798
|
};
|
|
53828
|
-
|
|
53799
|
+
util4.inherits(module2.exports.ISO_2022_JP, ISO_2022);
|
|
53829
53800
|
module2.exports.ISO_2022_KR = function() {
|
|
53830
53801
|
this.name = function() {
|
|
53831
53802
|
return "ISO-2022-KR";
|
|
@@ -53834,7 +53805,7 @@ var require_iso2022 = __commonJS({
|
|
|
53834
53805
|
[27, 36, 41, 67]
|
|
53835
53806
|
];
|
|
53836
53807
|
};
|
|
53837
|
-
|
|
53808
|
+
util4.inherits(module2.exports.ISO_2022_KR, ISO_2022);
|
|
53838
53809
|
module2.exports.ISO_2022_CN = function() {
|
|
53839
53810
|
this.name = function() {
|
|
53840
53811
|
return "ISO-2022-CN";
|
|
@@ -53864,7 +53835,7 @@ var require_iso2022 = __commonJS({
|
|
|
53864
53835
|
// SS3
|
|
53865
53836
|
];
|
|
53866
53837
|
};
|
|
53867
|
-
|
|
53838
|
+
util4.inherits(module2.exports.ISO_2022_CN, ISO_2022);
|
|
53868
53839
|
}
|
|
53869
53840
|
});
|
|
53870
53841
|
|
|
@@ -67114,7 +67085,7 @@ var require_screen_manager2 = __commonJS({
|
|
|
67114
67085
|
last: require_last2(),
|
|
67115
67086
|
flatten: require_flatten()
|
|
67116
67087
|
};
|
|
67117
|
-
var
|
|
67088
|
+
var util4 = require_readline2();
|
|
67118
67089
|
var cliWidth = require_cli_width();
|
|
67119
67090
|
var stripAnsi3 = require_strip_ansi();
|
|
67120
67091
|
var stringWidth = require_string_width();
|
|
@@ -67179,11 +67150,11 @@ var require_screen_manager2 = __commonJS({
|
|
|
67179
67150
|
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - cursorPos.rows;
|
|
67180
67151
|
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height(bottomContent) : 0);
|
|
67181
67152
|
if (bottomContentHeight > 0) {
|
|
67182
|
-
|
|
67153
|
+
util4.up(this.rl, bottomContentHeight);
|
|
67183
67154
|
}
|
|
67184
|
-
|
|
67155
|
+
util4.left(this.rl, stringWidth(lastLine(fullContent)));
|
|
67185
67156
|
if (cursorPos.cols > 0) {
|
|
67186
|
-
|
|
67157
|
+
util4.right(this.rl, cursorPos.cols);
|
|
67187
67158
|
}
|
|
67188
67159
|
this.extraLinesUnderPrompt = bottomContentHeight;
|
|
67189
67160
|
this.height = height(fullContent);
|
|
@@ -67191,9 +67162,9 @@ var require_screen_manager2 = __commonJS({
|
|
|
67191
67162
|
}
|
|
67192
67163
|
clean(extraLines) {
|
|
67193
67164
|
if (extraLines > 0) {
|
|
67194
|
-
|
|
67165
|
+
util4.down(this.rl, extraLines);
|
|
67195
67166
|
}
|
|
67196
|
-
|
|
67167
|
+
util4.clearLine(this.rl, this.height);
|
|
67197
67168
|
}
|
|
67198
67169
|
done() {
|
|
67199
67170
|
this.rl.setPrompt("");
|
|
@@ -67202,7 +67173,7 @@ var require_screen_manager2 = __commonJS({
|
|
|
67202
67173
|
}
|
|
67203
67174
|
releaseCursor() {
|
|
67204
67175
|
if (this.extraLinesUnderPrompt > 0) {
|
|
67205
|
-
|
|
67176
|
+
util4.down(this.rl, this.extraLinesUnderPrompt);
|
|
67206
67177
|
}
|
|
67207
67178
|
}
|
|
67208
67179
|
normalizedCliWidth() {
|
|
@@ -75262,14 +75233,14 @@ var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
|
|
|
75262
75233
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.5/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
|
|
75263
75234
|
var import_semver = __toESM(require_semver2());
|
|
75264
75235
|
|
|
75265
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75236
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
|
|
75266
75237
|
function bind(fn, thisArg) {
|
|
75267
75238
|
return function wrap() {
|
|
75268
75239
|
return fn.apply(thisArg, arguments);
|
|
75269
75240
|
};
|
|
75270
75241
|
}
|
|
75271
75242
|
|
|
75272
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75243
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/utils.js
|
|
75273
75244
|
var { toString } = Object.prototype;
|
|
75274
75245
|
var { getPrototypeOf } = Object;
|
|
75275
75246
|
var kindOf = ((cache) => (thing) => {
|
|
@@ -75654,7 +75625,7 @@ var utils_default = {
|
|
|
75654
75625
|
asap
|
|
75655
75626
|
};
|
|
75656
75627
|
|
|
75657
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75628
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
|
|
75658
75629
|
function AxiosError(message, code, config, request, response) {
|
|
75659
75630
|
Error.call(this);
|
|
75660
75631
|
if (Error.captureStackTrace) {
|
|
@@ -75729,11 +75700,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
|
75729
75700
|
};
|
|
75730
75701
|
var AxiosError_default = AxiosError;
|
|
75731
75702
|
|
|
75732
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75703
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
|
|
75733
75704
|
var import_form_data = __toESM(require_form_data());
|
|
75734
75705
|
var FormData_default = import_form_data.default;
|
|
75735
75706
|
|
|
75736
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75707
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
|
|
75737
75708
|
function isVisitable(thing) {
|
|
75738
75709
|
return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
|
|
75739
75710
|
}
|
|
@@ -75848,7 +75819,7 @@ function toFormData(obj, formData, options) {
|
|
|
75848
75819
|
}
|
|
75849
75820
|
var toFormData_default = toFormData;
|
|
75850
75821
|
|
|
75851
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75822
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
|
|
75852
75823
|
function encode(str) {
|
|
75853
75824
|
const charMap = {
|
|
75854
75825
|
"!": "%21",
|
|
@@ -75881,7 +75852,7 @@ prototype2.toString = function toString2(encoder) {
|
|
|
75881
75852
|
};
|
|
75882
75853
|
var AxiosURLSearchParams_default = AxiosURLSearchParams;
|
|
75883
75854
|
|
|
75884
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75855
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
|
|
75885
75856
|
function encode2(val) {
|
|
75886
75857
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
75887
75858
|
}
|
|
@@ -75890,6 +75861,11 @@ function buildURL(url2, params, options) {
|
|
|
75890
75861
|
return url2;
|
|
75891
75862
|
}
|
|
75892
75863
|
const _encode = options && options.encode || encode2;
|
|
75864
|
+
if (utils_default.isFunction(options)) {
|
|
75865
|
+
options = {
|
|
75866
|
+
serialize: options
|
|
75867
|
+
};
|
|
75868
|
+
}
|
|
75893
75869
|
const serializeFn = options && options.serialize;
|
|
75894
75870
|
let serializedParams;
|
|
75895
75871
|
if (serializeFn) {
|
|
@@ -75907,7 +75883,7 @@ function buildURL(url2, params, options) {
|
|
|
75907
75883
|
return url2;
|
|
75908
75884
|
}
|
|
75909
75885
|
|
|
75910
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75886
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
|
|
75911
75887
|
var InterceptorManager = class {
|
|
75912
75888
|
constructor() {
|
|
75913
75889
|
this.handlers = [];
|
|
@@ -75971,18 +75947,18 @@ var InterceptorManager = class {
|
|
|
75971
75947
|
};
|
|
75972
75948
|
var InterceptorManager_default = InterceptorManager;
|
|
75973
75949
|
|
|
75974
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75950
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
|
|
75975
75951
|
var transitional_default = {
|
|
75976
75952
|
silentJSONParsing: true,
|
|
75977
75953
|
forcedJSONParsing: true,
|
|
75978
75954
|
clarifyTimeoutError: false
|
|
75979
75955
|
};
|
|
75980
75956
|
|
|
75981
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75957
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
|
|
75982
75958
|
var import_url = __toESM(require("url"));
|
|
75983
75959
|
var URLSearchParams_default = import_url.default.URLSearchParams;
|
|
75984
75960
|
|
|
75985
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75961
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
|
|
75986
75962
|
var node_default = {
|
|
75987
75963
|
isNode: true,
|
|
75988
75964
|
classes: {
|
|
@@ -75993,7 +75969,7 @@ var node_default = {
|
|
|
75993
75969
|
protocols: ["http", "https", "file", "data"]
|
|
75994
75970
|
};
|
|
75995
75971
|
|
|
75996
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75972
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
|
|
75997
75973
|
var utils_exports = {};
|
|
75998
75974
|
__export(utils_exports, {
|
|
75999
75975
|
hasBrowserEnv: () => hasBrowserEnv,
|
|
@@ -76011,10 +75987,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
76011
75987
|
})();
|
|
76012
75988
|
var origin = hasBrowserEnv && window.location.href || "http://localhost";
|
|
76013
75989
|
|
|
76014
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75990
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/index.js
|
|
76015
75991
|
var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
|
|
76016
75992
|
|
|
76017
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
75993
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
|
|
76018
75994
|
function toURLEncodedForm(data, options) {
|
|
76019
75995
|
return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
|
|
76020
75996
|
visitor: function(value, key2, path7, helpers) {
|
|
@@ -76027,7 +76003,7 @@ function toURLEncodedForm(data, options) {
|
|
|
76027
76003
|
}, options));
|
|
76028
76004
|
}
|
|
76029
76005
|
|
|
76030
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76006
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
|
|
76031
76007
|
function parsePropPath(name) {
|
|
76032
76008
|
return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
|
76033
76009
|
return match[0] === "[]" ? "" : match[1] || match[0];
|
|
@@ -76081,7 +76057,7 @@ function formDataToJSON(formData) {
|
|
|
76081
76057
|
}
|
|
76082
76058
|
var formDataToJSON_default = formDataToJSON;
|
|
76083
76059
|
|
|
76084
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76060
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/index.js
|
|
76085
76061
|
function stringifySafely(rawValue, parser, encoder) {
|
|
76086
76062
|
if (utils_default.isString(rawValue)) {
|
|
76087
76063
|
try {
|
|
@@ -76190,7 +76166,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
|
|
|
76190
76166
|
});
|
|
76191
76167
|
var defaults_default = defaults;
|
|
76192
76168
|
|
|
76193
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76169
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
|
|
76194
76170
|
var ignoreDuplicateOf = utils_default.toObjectSet([
|
|
76195
76171
|
"age",
|
|
76196
76172
|
"authorization",
|
|
@@ -76235,7 +76211,7 @@ var parseHeaders_default = (rawHeaders) => {
|
|
|
76235
76211
|
return parsed;
|
|
76236
76212
|
};
|
|
76237
76213
|
|
|
76238
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76214
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
|
|
76239
76215
|
var $internals = Symbol("internals");
|
|
76240
76216
|
function normalizeHeader(header) {
|
|
76241
76217
|
return header && String(header).trim().toLowerCase();
|
|
@@ -76457,7 +76433,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key2) => {
|
|
|
76457
76433
|
utils_default.freezeMethods(AxiosHeaders);
|
|
76458
76434
|
var AxiosHeaders_default = AxiosHeaders;
|
|
76459
76435
|
|
|
76460
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76436
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/transformData.js
|
|
76461
76437
|
function transformData(fns, response) {
|
|
76462
76438
|
const config = this || defaults_default;
|
|
76463
76439
|
const context = response || config;
|
|
@@ -76470,12 +76446,12 @@ function transformData(fns, response) {
|
|
|
76470
76446
|
return data;
|
|
76471
76447
|
}
|
|
76472
76448
|
|
|
76473
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76449
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
|
|
76474
76450
|
function isCancel(value) {
|
|
76475
76451
|
return !!(value && value.__CANCEL__);
|
|
76476
76452
|
}
|
|
76477
76453
|
|
|
76478
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76454
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
|
|
76479
76455
|
function CanceledError(message, config, request) {
|
|
76480
76456
|
AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
|
|
76481
76457
|
this.name = "CanceledError";
|
|
@@ -76485,7 +76461,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
|
|
|
76485
76461
|
});
|
|
76486
76462
|
var CanceledError_default = CanceledError;
|
|
76487
76463
|
|
|
76488
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76464
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/settle.js
|
|
76489
76465
|
function settle(resolve, reject, response) {
|
|
76490
76466
|
const validateStatus2 = response.config.validateStatus;
|
|
76491
76467
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
@@ -76501,17 +76477,17 @@ function settle(resolve, reject, response) {
|
|
|
76501
76477
|
}
|
|
76502
76478
|
}
|
|
76503
76479
|
|
|
76504
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76480
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
|
|
76505
76481
|
function isAbsoluteURL(url2) {
|
|
76506
76482
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
|
76507
76483
|
}
|
|
76508
76484
|
|
|
76509
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76485
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
|
|
76510
76486
|
function combineURLs(baseURL, relativeURL) {
|
|
76511
76487
|
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
|
76512
76488
|
}
|
|
76513
76489
|
|
|
76514
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76490
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
|
|
76515
76491
|
function buildFullPath(baseURL, requestedURL) {
|
|
76516
76492
|
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
|
76517
76493
|
return combineURLs(baseURL, requestedURL);
|
|
@@ -76519,7 +76495,7 @@ function buildFullPath(baseURL, requestedURL) {
|
|
|
76519
76495
|
return requestedURL;
|
|
76520
76496
|
}
|
|
76521
76497
|
|
|
76522
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76498
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
76523
76499
|
var import_proxy_from_env = __toESM(require_proxy_from_env());
|
|
76524
76500
|
var import_http = __toESM(require("http"));
|
|
76525
76501
|
var import_https = __toESM(require("https"));
|
|
@@ -76527,16 +76503,16 @@ var import_util2 = __toESM(require("util"));
|
|
|
76527
76503
|
var import_follow_redirects = __toESM(require_follow_redirects());
|
|
76528
76504
|
var import_zlib = __toESM(require("zlib"));
|
|
76529
76505
|
|
|
76530
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76531
|
-
var VERSION = "1.7.
|
|
76506
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/env/data.js
|
|
76507
|
+
var VERSION = "1.7.8";
|
|
76532
76508
|
|
|
76533
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76509
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
|
|
76534
76510
|
function parseProtocol(url2) {
|
|
76535
76511
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
|
|
76536
76512
|
return match && match[1] || "";
|
|
76537
76513
|
}
|
|
76538
76514
|
|
|
76539
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76515
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
|
|
76540
76516
|
var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
|
|
76541
76517
|
function fromDataURI(uri, asBlob, options) {
|
|
76542
76518
|
const _Blob = options && options.Blob || platform_default.classes.Blob;
|
|
@@ -76565,10 +76541,10 @@ function fromDataURI(uri, asBlob, options) {
|
|
|
76565
76541
|
throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
|
|
76566
76542
|
}
|
|
76567
76543
|
|
|
76568
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76544
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
76569
76545
|
var import_stream4 = __toESM(require("stream"));
|
|
76570
76546
|
|
|
76571
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76547
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
|
|
76572
76548
|
var import_stream = __toESM(require("stream"));
|
|
76573
76549
|
var kInternals = Symbol("internals");
|
|
76574
76550
|
var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
@@ -76683,14 +76659,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
76683
76659
|
};
|
|
76684
76660
|
var AxiosTransformStream_default = AxiosTransformStream;
|
|
76685
76661
|
|
|
76686
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76662
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
76687
76663
|
var import_events = require("events");
|
|
76688
76664
|
|
|
76689
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76690
|
-
var import_util = require("util");
|
|
76665
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
|
76666
|
+
var import_util = __toESM(require("util"));
|
|
76691
76667
|
var import_stream2 = require("stream");
|
|
76692
76668
|
|
|
76693
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76669
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
|
|
76694
76670
|
var { asyncIterator } = Symbol;
|
|
76695
76671
|
var readBlob = function(blob) {
|
|
76696
76672
|
return __asyncGenerator(this, null, function* () {
|
|
@@ -76707,9 +76683,9 @@ var readBlob = function(blob) {
|
|
|
76707
76683
|
};
|
|
76708
76684
|
var readBlob_default = readBlob;
|
|
76709
76685
|
|
|
76710
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76686
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
|
76711
76687
|
var BOUNDARY_ALPHABET = utils_default.ALPHABET.ALPHA_DIGIT + "-_";
|
|
76712
|
-
var textEncoder = new import_util.TextEncoder();
|
|
76688
|
+
var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
|
|
76713
76689
|
var CRLF = "\r\n";
|
|
76714
76690
|
var CRLF_BYTES = textEncoder.encode(CRLF);
|
|
76715
76691
|
var CRLF_BYTES_COUNT = 2;
|
|
@@ -76790,7 +76766,7 @@ var formDataToStream = (form, headersHandler, options) => {
|
|
|
76790
76766
|
};
|
|
76791
76767
|
var formDataToStream_default = formDataToStream;
|
|
76792
76768
|
|
|
76793
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76769
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
|
|
76794
76770
|
var import_stream3 = __toESM(require("stream"));
|
|
76795
76771
|
var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
76796
76772
|
__transform(chunk, encoding, callback) {
|
|
@@ -76812,7 +76788,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
|
76812
76788
|
};
|
|
76813
76789
|
var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
|
|
76814
76790
|
|
|
76815
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76791
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
|
|
76816
76792
|
var callbackify = (fn, reducer) => {
|
|
76817
76793
|
return utils_default.isAsyncFn(fn) ? function(...args) {
|
|
76818
76794
|
const cb = args.pop();
|
|
@@ -76827,7 +76803,7 @@ var callbackify = (fn, reducer) => {
|
|
|
76827
76803
|
};
|
|
76828
76804
|
var callbackify_default = callbackify;
|
|
76829
76805
|
|
|
76830
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76806
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
|
|
76831
76807
|
function speedometer(samplesCount, min) {
|
|
76832
76808
|
samplesCount = samplesCount || 10;
|
|
76833
76809
|
const bytes = new Array(samplesCount);
|
|
@@ -76863,7 +76839,7 @@ function speedometer(samplesCount, min) {
|
|
|
76863
76839
|
}
|
|
76864
76840
|
var speedometer_default = speedometer;
|
|
76865
76841
|
|
|
76866
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76842
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
|
|
76867
76843
|
function throttle(fn, freq) {
|
|
76868
76844
|
let timestamp = 0;
|
|
76869
76845
|
let threshold = 1e3 / freq;
|
|
@@ -76898,7 +76874,7 @@ function throttle(fn, freq) {
|
|
|
76898
76874
|
}
|
|
76899
76875
|
var throttle_default = throttle;
|
|
76900
76876
|
|
|
76901
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76877
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
|
|
76902
76878
|
var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
76903
76879
|
let bytesNotified = 0;
|
|
76904
76880
|
const _speedometer = speedometer_default(50, 250);
|
|
@@ -76933,7 +76909,7 @@ var progressEventDecorator = (total, throttled) => {
|
|
|
76933
76909
|
};
|
|
76934
76910
|
var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
|
|
76935
76911
|
|
|
76936
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
76912
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
76937
76913
|
var zlibOptions = {
|
|
76938
76914
|
flush: import_zlib.default.constants.Z_SYNC_FLUSH,
|
|
76939
76915
|
finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
|
|
@@ -76963,7 +76939,7 @@ function dispatchBeforeRedirect(options, responseDetails) {
|
|
|
76963
76939
|
function setProxy(options, configProxy, location) {
|
|
76964
76940
|
let proxy = configProxy;
|
|
76965
76941
|
if (!proxy && proxy !== false) {
|
|
76966
|
-
const proxyUrl =
|
|
76942
|
+
const proxyUrl = import_proxy_from_env.default.getProxyForUrl(location);
|
|
76967
76943
|
if (proxyUrl) {
|
|
76968
76944
|
proxy = new URL(proxyUrl);
|
|
76969
76945
|
}
|
|
@@ -77139,7 +77115,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
77139
77115
|
} catch (e) {
|
|
77140
77116
|
}
|
|
77141
77117
|
}
|
|
77142
|
-
} else if (utils_default.isBlob(data)) {
|
|
77118
|
+
} else if (utils_default.isBlob(data) || utils_default.isFile(data)) {
|
|
77143
77119
|
data.size && headers.setContentType(data.type || "application/octet-stream");
|
|
77144
77120
|
headers.setContentLength(data.size || 0);
|
|
77145
77121
|
data = import_stream4.default.Readable.from(readBlob_default(data));
|
|
@@ -77342,7 +77318,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
77342
77318
|
return;
|
|
77343
77319
|
}
|
|
77344
77320
|
const err = new AxiosError_default(
|
|
77345
|
-
"
|
|
77321
|
+
"stream has been aborted",
|
|
77346
77322
|
AxiosError_default.ERR_BAD_RESPONSE,
|
|
77347
77323
|
config,
|
|
77348
77324
|
lastRequest
|
|
@@ -77439,48 +77415,16 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
77439
77415
|
});
|
|
77440
77416
|
};
|
|
77441
77417
|
|
|
77442
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77443
|
-
var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? (
|
|
77444
|
-
|
|
77445
|
-
|
|
77446
|
-
|
|
77447
|
-
|
|
77448
|
-
|
|
77449
|
-
|
|
77450
|
-
function resolveURL(url2) {
|
|
77451
|
-
let href = url2;
|
|
77452
|
-
if (msie) {
|
|
77453
|
-
urlParsingNode.setAttribute("href", href);
|
|
77454
|
-
href = urlParsingNode.href;
|
|
77455
|
-
}
|
|
77456
|
-
urlParsingNode.setAttribute("href", href);
|
|
77457
|
-
return {
|
|
77458
|
-
href: urlParsingNode.href,
|
|
77459
|
-
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, "") : "",
|
|
77460
|
-
host: urlParsingNode.host,
|
|
77461
|
-
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, "") : "",
|
|
77462
|
-
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, "") : "",
|
|
77463
|
-
hostname: urlParsingNode.hostname,
|
|
77464
|
-
port: urlParsingNode.port,
|
|
77465
|
-
pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
|
|
77466
|
-
};
|
|
77467
|
-
}
|
|
77468
|
-
originURL = resolveURL(window.location.href);
|
|
77469
|
-
return function isURLSameOrigin(requestURL) {
|
|
77470
|
-
const parsed = utils_default.isString(requestURL) ? resolveURL(requestURL) : requestURL;
|
|
77471
|
-
return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
|
|
77472
|
-
};
|
|
77473
|
-
}()
|
|
77474
|
-
) : (
|
|
77475
|
-
// Non standard browser envs (web workers, react-native) lack needed support.
|
|
77476
|
-
function nonStandardBrowserEnv() {
|
|
77477
|
-
return function isURLSameOrigin() {
|
|
77478
|
-
return true;
|
|
77479
|
-
};
|
|
77480
|
-
}()
|
|
77481
|
-
);
|
|
77418
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
|
|
77419
|
+
var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
|
|
77420
|
+
url2 = new URL(url2, platform_default.origin);
|
|
77421
|
+
return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
|
|
77422
|
+
})(
|
|
77423
|
+
new URL(platform_default.origin),
|
|
77424
|
+
platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
|
|
77425
|
+
) : () => true;
|
|
77482
77426
|
|
|
77483
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77427
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
|
|
77484
77428
|
var cookies_default = platform_default.hasStandardBrowserEnv ? (
|
|
77485
77429
|
// Standard browser envs support document.cookie
|
|
77486
77430
|
{
|
|
@@ -77513,12 +77457,12 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
|
|
|
77513
77457
|
}
|
|
77514
77458
|
);
|
|
77515
77459
|
|
|
77516
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77460
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
|
|
77517
77461
|
var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
|
|
77518
77462
|
function mergeConfig(config1, config2) {
|
|
77519
77463
|
config2 = config2 || {};
|
|
77520
77464
|
const config = {};
|
|
77521
|
-
function getMergedValue(target, source2, caseless) {
|
|
77465
|
+
function getMergedValue(target, source2, prop, caseless) {
|
|
77522
77466
|
if (utils_default.isPlainObject(target) && utils_default.isPlainObject(source2)) {
|
|
77523
77467
|
return utils_default.merge.call({ caseless }, target, source2);
|
|
77524
77468
|
} else if (utils_default.isPlainObject(source2)) {
|
|
@@ -77528,11 +77472,11 @@ function mergeConfig(config1, config2) {
|
|
|
77528
77472
|
}
|
|
77529
77473
|
return source2;
|
|
77530
77474
|
}
|
|
77531
|
-
function mergeDeepProperties(a, b, caseless) {
|
|
77475
|
+
function mergeDeepProperties(a, b, prop, caseless) {
|
|
77532
77476
|
if (!utils_default.isUndefined(b)) {
|
|
77533
|
-
return getMergedValue(a, b, caseless);
|
|
77477
|
+
return getMergedValue(a, b, prop, caseless);
|
|
77534
77478
|
} else if (!utils_default.isUndefined(a)) {
|
|
77535
|
-
return getMergedValue(void 0, a, caseless);
|
|
77479
|
+
return getMergedValue(void 0, a, prop, caseless);
|
|
77536
77480
|
}
|
|
77537
77481
|
}
|
|
77538
77482
|
function valueFromConfig2(a, b) {
|
|
@@ -77583,7 +77527,7 @@ function mergeConfig(config1, config2) {
|
|
|
77583
77527
|
socketPath: defaultToConfig2,
|
|
77584
77528
|
responseEncoding: defaultToConfig2,
|
|
77585
77529
|
validateStatus: mergeDirectKeys,
|
|
77586
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
77530
|
+
headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
|
|
77587
77531
|
};
|
|
77588
77532
|
utils_default.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
77589
77533
|
const merge4 = mergeMap[prop] || mergeDeepProperties;
|
|
@@ -77593,7 +77537,7 @@ function mergeConfig(config1, config2) {
|
|
|
77593
77537
|
return config;
|
|
77594
77538
|
}
|
|
77595
77539
|
|
|
77596
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77540
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
|
|
77597
77541
|
var resolveConfig_default = (config) => {
|
|
77598
77542
|
const newConfig = mergeConfig({}, config);
|
|
77599
77543
|
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
@@ -77626,7 +77570,7 @@ var resolveConfig_default = (config) => {
|
|
|
77626
77570
|
return newConfig;
|
|
77627
77571
|
};
|
|
77628
77572
|
|
|
77629
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77573
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
|
|
77630
77574
|
var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
|
|
77631
77575
|
var xhr_default = isXHRAdapterSupported && function(config) {
|
|
77632
77576
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
@@ -77753,7 +77697,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
77753
77697
|
});
|
|
77754
77698
|
};
|
|
77755
77699
|
|
|
77756
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77700
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
|
|
77757
77701
|
var composeSignals = (signals, timeout) => {
|
|
77758
77702
|
const { length } = signals = signals ? signals.filter(Boolean) : [];
|
|
77759
77703
|
if (timeout || length) {
|
|
@@ -77789,7 +77733,7 @@ var composeSignals = (signals, timeout) => {
|
|
|
77789
77733
|
};
|
|
77790
77734
|
var composeSignals_default = composeSignals;
|
|
77791
77735
|
|
|
77792
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77736
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
|
|
77793
77737
|
var streamChunk = function* (chunk, chunkSize) {
|
|
77794
77738
|
let len = chunk.byteLength;
|
|
77795
77739
|
if (!chunkSize || len < chunkSize) {
|
|
@@ -77884,7 +77828,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
|
|
|
77884
77828
|
});
|
|
77885
77829
|
};
|
|
77886
77830
|
|
|
77887
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77831
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
|
|
77888
77832
|
var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
|
|
77889
77833
|
var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
|
|
77890
77834
|
var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : (str) => __async(void 0, null, function* () {
|
|
@@ -78049,7 +77993,7 @@ var fetch_default = isFetchSupported && ((config) => __async(void 0, null, funct
|
|
|
78049
77993
|
}
|
|
78050
77994
|
}));
|
|
78051
77995
|
|
|
78052
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
77996
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
|
|
78053
77997
|
var knownAdapters = {
|
|
78054
77998
|
http: http_default,
|
|
78055
77999
|
xhr: xhr_default,
|
|
@@ -78103,7 +78047,7 @@ var adapters_default = {
|
|
|
78103
78047
|
adapters: knownAdapters
|
|
78104
78048
|
};
|
|
78105
78049
|
|
|
78106
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78050
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
|
|
78107
78051
|
function throwIfCancellationRequested(config) {
|
|
78108
78052
|
if (config.cancelToken) {
|
|
78109
78053
|
config.cancelToken.throwIfRequested();
|
|
@@ -78148,7 +78092,7 @@ function dispatchRequest(config) {
|
|
|
78148
78092
|
});
|
|
78149
78093
|
}
|
|
78150
78094
|
|
|
78151
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78095
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
|
|
78152
78096
|
var validators = {};
|
|
78153
78097
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
78154
78098
|
validators[type] = function validator(thing) {
|
|
@@ -78179,6 +78123,12 @@ validators.transitional = function transitional(validator, version, message) {
|
|
|
78179
78123
|
return validator ? validator(value, opt, opts) : true;
|
|
78180
78124
|
};
|
|
78181
78125
|
};
|
|
78126
|
+
validators.spelling = function spelling(correctSpelling) {
|
|
78127
|
+
return (value, opt) => {
|
|
78128
|
+
console.warn(`${opt} is likely a misspelling of ${correctSpelling}`);
|
|
78129
|
+
return true;
|
|
78130
|
+
};
|
|
78131
|
+
};
|
|
78182
78132
|
function assertOptions(options, schema, allowUnknown) {
|
|
78183
78133
|
if (typeof options !== "object") {
|
|
78184
78134
|
throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE);
|
|
@@ -78206,7 +78156,7 @@ var validator_default = {
|
|
|
78206
78156
|
validators
|
|
78207
78157
|
};
|
|
78208
78158
|
|
|
78209
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78159
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/Axios.js
|
|
78210
78160
|
var validators2 = validator_default.validators;
|
|
78211
78161
|
var Axios = class {
|
|
78212
78162
|
constructor(instanceConfig) {
|
|
@@ -78230,8 +78180,8 @@ var Axios = class {
|
|
|
78230
78180
|
return yield this._request(configOrUrl, config);
|
|
78231
78181
|
} catch (err) {
|
|
78232
78182
|
if (err instanceof Error) {
|
|
78233
|
-
let dummy;
|
|
78234
|
-
Error.captureStackTrace ? Error.captureStackTrace(dummy
|
|
78183
|
+
let dummy = {};
|
|
78184
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error();
|
|
78235
78185
|
const stack2 = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : "";
|
|
78236
78186
|
try {
|
|
78237
78187
|
if (!err.stack) {
|
|
@@ -78274,6 +78224,10 @@ var Axios = class {
|
|
|
78274
78224
|
}, true);
|
|
78275
78225
|
}
|
|
78276
78226
|
}
|
|
78227
|
+
validator_default.assertOptions(config, {
|
|
78228
|
+
baseUrl: validators2.spelling("baseURL"),
|
|
78229
|
+
withXsrfToken: validators2.spelling("withXSRFToken")
|
|
78230
|
+
}, true);
|
|
78277
78231
|
config.method = (config.method || this.defaults.method || "get").toLowerCase();
|
|
78278
78232
|
let contextHeaders = headers && utils_default.merge(
|
|
78279
78233
|
headers.common,
|
|
@@ -78371,7 +78325,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
|
|
|
78371
78325
|
});
|
|
78372
78326
|
var Axios_default = Axios;
|
|
78373
78327
|
|
|
78374
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78328
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
|
|
78375
78329
|
var CancelToken = class _CancelToken {
|
|
78376
78330
|
constructor(executor) {
|
|
78377
78331
|
if (typeof executor !== "function") {
|
|
@@ -78470,19 +78424,19 @@ var CancelToken = class _CancelToken {
|
|
|
78470
78424
|
};
|
|
78471
78425
|
var CancelToken_default = CancelToken;
|
|
78472
78426
|
|
|
78473
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78427
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
|
|
78474
78428
|
function spread(callback) {
|
|
78475
78429
|
return function wrap(arr) {
|
|
78476
78430
|
return callback.apply(null, arr);
|
|
78477
78431
|
};
|
|
78478
78432
|
}
|
|
78479
78433
|
|
|
78480
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78434
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
|
|
78481
78435
|
function isAxiosError(payload) {
|
|
78482
78436
|
return utils_default.isObject(payload) && payload.isAxiosError === true;
|
|
78483
78437
|
}
|
|
78484
78438
|
|
|
78485
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78439
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
|
|
78486
78440
|
var HttpStatusCode = {
|
|
78487
78441
|
Continue: 100,
|
|
78488
78442
|
SwitchingProtocols: 101,
|
|
@@ -78553,7 +78507,7 @@ Object.entries(HttpStatusCode).forEach(([key2, value]) => {
|
|
|
78553
78507
|
});
|
|
78554
78508
|
var HttpStatusCode_default = HttpStatusCode;
|
|
78555
78509
|
|
|
78556
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78510
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/axios.js
|
|
78557
78511
|
function createInstance(defaultConfig) {
|
|
78558
78512
|
const context = new Axios_default(defaultConfig);
|
|
78559
78513
|
const instance = bind(Axios_default.prototype.request, context);
|
|
@@ -78586,7 +78540,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
|
|
|
78586
78540
|
axios.default = axios;
|
|
78587
78541
|
var axios_default = axios;
|
|
78588
78542
|
|
|
78589
|
-
// ../../../../node_modules/.pnpm/axios@1.7.
|
|
78543
|
+
// ../../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/index.js
|
|
78590
78544
|
var {
|
|
78591
78545
|
Axios: Axios2,
|
|
78592
78546
|
AxiosError: AxiosError2,
|
|
@@ -79001,7 +78955,7 @@ function _async_to_generator(fn) {
|
|
|
79001
78955
|
};
|
|
79002
78956
|
}
|
|
79003
78957
|
|
|
79004
|
-
// ../../../../node_modules/.pnpm/tslib@2.
|
|
78958
|
+
// ../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs
|
|
79005
78959
|
function __generator(thisArg, body) {
|
|
79006
78960
|
var _ = { label: 0, sent: function() {
|
|
79007
78961
|
if (t[0] & 1)
|
|
@@ -86248,7 +86202,7 @@ var unicode = {
|
|
|
86248
86202
|
ID_Start,
|
|
86249
86203
|
ID_Continue
|
|
86250
86204
|
};
|
|
86251
|
-
var
|
|
86205
|
+
var util3 = {
|
|
86252
86206
|
isSpaceSeparator(c2) {
|
|
86253
86207
|
return typeof c2 === "string" && unicode.Space_Separator.test(c2);
|
|
86254
86208
|
},
|
|
@@ -86390,7 +86344,7 @@ var lexStates = {
|
|
|
86390
86344
|
read();
|
|
86391
86345
|
return newToken("eof");
|
|
86392
86346
|
}
|
|
86393
|
-
if (
|
|
86347
|
+
if (util3.isSpaceSeparator(c)) {
|
|
86394
86348
|
read();
|
|
86395
86349
|
return;
|
|
86396
86350
|
}
|
|
@@ -86522,7 +86476,7 @@ var lexStates = {
|
|
|
86522
86476
|
case "_":
|
|
86523
86477
|
break;
|
|
86524
86478
|
default:
|
|
86525
|
-
if (!
|
|
86479
|
+
if (!util3.isIdStartChar(u)) {
|
|
86526
86480
|
throw invalidIdentifier();
|
|
86527
86481
|
}
|
|
86528
86482
|
break;
|
|
@@ -86543,7 +86497,7 @@ var lexStates = {
|
|
|
86543
86497
|
lexState = "identifierNameEscape";
|
|
86544
86498
|
return;
|
|
86545
86499
|
}
|
|
86546
|
-
if (
|
|
86500
|
+
if (util3.isIdContinueChar(c)) {
|
|
86547
86501
|
buffer += read();
|
|
86548
86502
|
return;
|
|
86549
86503
|
}
|
|
@@ -86562,7 +86516,7 @@ var lexStates = {
|
|
|
86562
86516
|
case "":
|
|
86563
86517
|
break;
|
|
86564
86518
|
default:
|
|
86565
|
-
if (!
|
|
86519
|
+
if (!util3.isIdContinueChar(u)) {
|
|
86566
86520
|
throw invalidIdentifier();
|
|
86567
86521
|
}
|
|
86568
86522
|
break;
|
|
@@ -86634,14 +86588,14 @@ var lexStates = {
|
|
|
86634
86588
|
lexState = "decimalExponent";
|
|
86635
86589
|
return;
|
|
86636
86590
|
}
|
|
86637
|
-
if (
|
|
86591
|
+
if (util3.isDigit(c)) {
|
|
86638
86592
|
buffer += read();
|
|
86639
86593
|
return;
|
|
86640
86594
|
}
|
|
86641
86595
|
return newToken("numeric", sign * Number(buffer));
|
|
86642
86596
|
},
|
|
86643
86597
|
decimalPointLeading() {
|
|
86644
|
-
if (
|
|
86598
|
+
if (util3.isDigit(c)) {
|
|
86645
86599
|
buffer += read();
|
|
86646
86600
|
lexState = "decimalFraction";
|
|
86647
86601
|
return;
|
|
@@ -86656,7 +86610,7 @@ var lexStates = {
|
|
|
86656
86610
|
lexState = "decimalExponent";
|
|
86657
86611
|
return;
|
|
86658
86612
|
}
|
|
86659
|
-
if (
|
|
86613
|
+
if (util3.isDigit(c)) {
|
|
86660
86614
|
buffer += read();
|
|
86661
86615
|
lexState = "decimalFraction";
|
|
86662
86616
|
return;
|
|
@@ -86671,7 +86625,7 @@ var lexStates = {
|
|
|
86671
86625
|
lexState = "decimalExponent";
|
|
86672
86626
|
return;
|
|
86673
86627
|
}
|
|
86674
|
-
if (
|
|
86628
|
+
if (util3.isDigit(c)) {
|
|
86675
86629
|
buffer += read();
|
|
86676
86630
|
return;
|
|
86677
86631
|
}
|
|
@@ -86685,7 +86639,7 @@ var lexStates = {
|
|
|
86685
86639
|
lexState = "decimalExponentSign";
|
|
86686
86640
|
return;
|
|
86687
86641
|
}
|
|
86688
|
-
if (
|
|
86642
|
+
if (util3.isDigit(c)) {
|
|
86689
86643
|
buffer += read();
|
|
86690
86644
|
lexState = "decimalExponentInteger";
|
|
86691
86645
|
return;
|
|
@@ -86693,7 +86647,7 @@ var lexStates = {
|
|
|
86693
86647
|
throw invalidChar(read());
|
|
86694
86648
|
},
|
|
86695
86649
|
decimalExponentSign() {
|
|
86696
|
-
if (
|
|
86650
|
+
if (util3.isDigit(c)) {
|
|
86697
86651
|
buffer += read();
|
|
86698
86652
|
lexState = "decimalExponentInteger";
|
|
86699
86653
|
return;
|
|
@@ -86701,14 +86655,14 @@ var lexStates = {
|
|
|
86701
86655
|
throw invalidChar(read());
|
|
86702
86656
|
},
|
|
86703
86657
|
decimalExponentInteger() {
|
|
86704
|
-
if (
|
|
86658
|
+
if (util3.isDigit(c)) {
|
|
86705
86659
|
buffer += read();
|
|
86706
86660
|
return;
|
|
86707
86661
|
}
|
|
86708
86662
|
return newToken("numeric", sign * Number(buffer));
|
|
86709
86663
|
},
|
|
86710
86664
|
hexadecimal() {
|
|
86711
|
-
if (
|
|
86665
|
+
if (util3.isHexDigit(c)) {
|
|
86712
86666
|
buffer += read();
|
|
86713
86667
|
lexState = "hexadecimalInteger";
|
|
86714
86668
|
return;
|
|
@@ -86716,7 +86670,7 @@ var lexStates = {
|
|
|
86716
86670
|
throw invalidChar(read());
|
|
86717
86671
|
},
|
|
86718
86672
|
hexadecimalInteger() {
|
|
86719
|
-
if (
|
|
86673
|
+
if (util3.isHexDigit(c)) {
|
|
86720
86674
|
buffer += read();
|
|
86721
86675
|
return;
|
|
86722
86676
|
}
|
|
@@ -86781,7 +86735,7 @@ var lexStates = {
|
|
|
86781
86735
|
lexState = "string";
|
|
86782
86736
|
return;
|
|
86783
86737
|
}
|
|
86784
|
-
if (
|
|
86738
|
+
if (util3.isIdStartChar(c)) {
|
|
86785
86739
|
buffer += read();
|
|
86786
86740
|
lexState = "identifierName";
|
|
86787
86741
|
return;
|
|
@@ -86863,7 +86817,7 @@ function escape() {
|
|
|
86863
86817
|
return "\v";
|
|
86864
86818
|
case "0":
|
|
86865
86819
|
read();
|
|
86866
|
-
if (
|
|
86820
|
+
if (util3.isDigit(peek())) {
|
|
86867
86821
|
throw invalidChar(read());
|
|
86868
86822
|
}
|
|
86869
86823
|
return "\0";
|
|
@@ -86902,12 +86856,12 @@ function escape() {
|
|
|
86902
86856
|
function hexEscape() {
|
|
86903
86857
|
let buffer2 = "";
|
|
86904
86858
|
let c2 = peek();
|
|
86905
|
-
if (!
|
|
86859
|
+
if (!util3.isHexDigit(c2)) {
|
|
86906
86860
|
throw invalidChar(read());
|
|
86907
86861
|
}
|
|
86908
86862
|
buffer2 += read();
|
|
86909
86863
|
c2 = peek();
|
|
86910
|
-
if (!
|
|
86864
|
+
if (!util3.isHexDigit(c2)) {
|
|
86911
86865
|
throw invalidChar(read());
|
|
86912
86866
|
}
|
|
86913
86867
|
buffer2 += read();
|
|
@@ -86918,7 +86872,7 @@ function unicodeEscape() {
|
|
|
86918
86872
|
let count = 4;
|
|
86919
86873
|
while (count-- > 0) {
|
|
86920
86874
|
const c2 = peek();
|
|
86921
|
-
if (!
|
|
86875
|
+
if (!util3.isHexDigit(c2)) {
|
|
86922
86876
|
throw invalidChar(read());
|
|
86923
86877
|
}
|
|
86924
86878
|
buffer2 += read();
|
|
@@ -87214,7 +87168,7 @@ var stringify2 = function stringify3(value, replacer, space) {
|
|
|
87214
87168
|
product += c2;
|
|
87215
87169
|
continue;
|
|
87216
87170
|
case "\0":
|
|
87217
|
-
if (
|
|
87171
|
+
if (util3.isDigit(value2[i + 1])) {
|
|
87218
87172
|
product += "\\x00";
|
|
87219
87173
|
continue;
|
|
87220
87174
|
}
|
|
@@ -87277,11 +87231,11 @@ var stringify2 = function stringify3(value, replacer, space) {
|
|
|
87277
87231
|
return quoteString(key2, true);
|
|
87278
87232
|
}
|
|
87279
87233
|
const firstChar = String.fromCodePoint(key2.codePointAt(0));
|
|
87280
|
-
if (!
|
|
87234
|
+
if (!util3.isIdStartChar(firstChar)) {
|
|
87281
87235
|
return quoteString(key2, true);
|
|
87282
87236
|
}
|
|
87283
87237
|
for (let i = firstChar.length; i < key2.length; i++) {
|
|
87284
|
-
if (!
|
|
87238
|
+
if (!util3.isIdContinueChar(String.fromCodePoint(key2.codePointAt(i)))) {
|
|
87285
87239
|
return quoteString(key2, true);
|
|
87286
87240
|
}
|
|
87287
87241
|
}
|