@kubb/cli 3.0.0-alpha.0 → 3.0.0-alpha.1
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/{chunk-AFAQ7VGQ.cjs → chunk-NKSXZ2SM.cjs} +236 -229
- package/dist/chunk-NKSXZ2SM.cjs.map +1 -0
- package/dist/{generate-V7U4OYMB.js → generate-IC27XOTA.js} +3 -13
- package/dist/generate-IC27XOTA.js.map +1 -0
- package/dist/{generate-IKXVPYUW.cjs → generate-SW6IGE4J.cjs} +22 -32
- package/dist/generate-SW6IGE4J.cjs.map +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
- package/src/utils/getPlugins.ts +4 -9
- package/dist/chunk-AFAQ7VGQ.cjs.map +0 -1
- package/dist/generate-IKXVPYUW.cjs.map +0 -1
- package/dist/generate-V7U4OYMB.js.map +0 -1
|
@@ -51,9 +51,9 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
53
|
|
|
54
|
-
// ../../node_modules/.pnpm/tsup@8.2.4_@microsoft+api-extractor@7.47.
|
|
54
|
+
// ../../node_modules/.pnpm/tsup@8.2.4_@microsoft+api-extractor@7.47.7_@types+node@20.16.1__jiti@1.21.6_postcss@8.4.41_typescript@5.5.4_yaml@2.4.5/node_modules/tsup/assets/cjs_shims.js
|
|
55
55
|
var init_cjs_shims = __esm({
|
|
56
|
-
"../../node_modules/.pnpm/tsup@8.2.4_@microsoft+api-extractor@7.47.
|
|
56
|
+
"../../node_modules/.pnpm/tsup@8.2.4_@microsoft+api-extractor@7.47.7_@types+node@20.16.1__jiti@1.21.6_postcss@8.4.41_typescript@5.5.4_yaml@2.4.5/node_modules/tsup/assets/cjs_shims.js"() {
|
|
57
57
|
"use strict";
|
|
58
58
|
}
|
|
59
59
|
});
|
|
@@ -1967,7 +1967,7 @@ var require_windows = __commonJS({
|
|
|
1967
1967
|
module.exports = isexe;
|
|
1968
1968
|
isexe.sync = sync;
|
|
1969
1969
|
var fs = __require("fs");
|
|
1970
|
-
function checkPathExt(
|
|
1970
|
+
function checkPathExt(path6, options) {
|
|
1971
1971
|
var pathext = options.pathExt !== void 0 ? options.pathExt : process.env.PATHEXT;
|
|
1972
1972
|
if (!pathext) {
|
|
1973
1973
|
return true;
|
|
@@ -1978,25 +1978,25 @@ var require_windows = __commonJS({
|
|
|
1978
1978
|
}
|
|
1979
1979
|
for (var i2 = 0; i2 < pathext.length; i2++) {
|
|
1980
1980
|
var p3 = pathext[i2].toLowerCase();
|
|
1981
|
-
if (p3 &&
|
|
1981
|
+
if (p3 && path6.substr(-p3.length).toLowerCase() === p3) {
|
|
1982
1982
|
return true;
|
|
1983
1983
|
}
|
|
1984
1984
|
}
|
|
1985
1985
|
return false;
|
|
1986
1986
|
}
|
|
1987
|
-
function checkStat(stat,
|
|
1987
|
+
function checkStat(stat, path6, options) {
|
|
1988
1988
|
if (!stat.isSymbolicLink() && !stat.isFile()) {
|
|
1989
1989
|
return false;
|
|
1990
1990
|
}
|
|
1991
|
-
return checkPathExt(
|
|
1991
|
+
return checkPathExt(path6, options);
|
|
1992
1992
|
}
|
|
1993
|
-
function isexe(
|
|
1994
|
-
fs.stat(
|
|
1995
|
-
cb(er, er ? false : checkStat(stat,
|
|
1993
|
+
function isexe(path6, options, cb) {
|
|
1994
|
+
fs.stat(path6, function(er, stat) {
|
|
1995
|
+
cb(er, er ? false : checkStat(stat, path6, options));
|
|
1996
1996
|
});
|
|
1997
1997
|
}
|
|
1998
|
-
function sync(
|
|
1999
|
-
return checkStat(fs.statSync(
|
|
1998
|
+
function sync(path6, options) {
|
|
1999
|
+
return checkStat(fs.statSync(path6), path6, options);
|
|
2000
2000
|
}
|
|
2001
2001
|
}
|
|
2002
2002
|
});
|
|
@@ -2009,13 +2009,13 @@ var require_mode = __commonJS({
|
|
|
2009
2009
|
module.exports = isexe;
|
|
2010
2010
|
isexe.sync = sync;
|
|
2011
2011
|
var fs = __require("fs");
|
|
2012
|
-
function isexe(
|
|
2013
|
-
fs.stat(
|
|
2012
|
+
function isexe(path6, options, cb) {
|
|
2013
|
+
fs.stat(path6, function(er, stat) {
|
|
2014
2014
|
cb(er, er ? false : checkStat(stat, options));
|
|
2015
2015
|
});
|
|
2016
2016
|
}
|
|
2017
|
-
function sync(
|
|
2018
|
-
return checkStat(fs.statSync(
|
|
2017
|
+
function sync(path6, options) {
|
|
2018
|
+
return checkStat(fs.statSync(path6), options);
|
|
2019
2019
|
}
|
|
2020
2020
|
function checkStat(stat, options) {
|
|
2021
2021
|
return stat.isFile() && checkMode(stat, options);
|
|
@@ -2050,7 +2050,7 @@ var require_isexe = __commonJS({
|
|
|
2050
2050
|
}
|
|
2051
2051
|
module.exports = isexe;
|
|
2052
2052
|
isexe.sync = sync;
|
|
2053
|
-
function isexe(
|
|
2053
|
+
function isexe(path6, options, cb) {
|
|
2054
2054
|
if (typeof options === "function") {
|
|
2055
2055
|
cb = options;
|
|
2056
2056
|
options = {};
|
|
@@ -2059,17 +2059,17 @@ var require_isexe = __commonJS({
|
|
|
2059
2059
|
if (typeof Promise !== "function") {
|
|
2060
2060
|
throw new TypeError("callback not provided");
|
|
2061
2061
|
}
|
|
2062
|
-
return new Promise(function(
|
|
2063
|
-
isexe(
|
|
2062
|
+
return new Promise(function(resolve2, reject) {
|
|
2063
|
+
isexe(path6, options || {}, function(er, is) {
|
|
2064
2064
|
if (er) {
|
|
2065
2065
|
reject(er);
|
|
2066
2066
|
} else {
|
|
2067
|
-
|
|
2067
|
+
resolve2(is);
|
|
2068
2068
|
}
|
|
2069
2069
|
});
|
|
2070
2070
|
});
|
|
2071
2071
|
}
|
|
2072
|
-
core(
|
|
2072
|
+
core(path6, options || {}, function(er, is) {
|
|
2073
2073
|
if (er) {
|
|
2074
2074
|
if (er.code === "EACCES" || options && options.ignoreErrors) {
|
|
2075
2075
|
er = null;
|
|
@@ -2079,9 +2079,9 @@ var require_isexe = __commonJS({
|
|
|
2079
2079
|
cb(er, is);
|
|
2080
2080
|
});
|
|
2081
2081
|
}
|
|
2082
|
-
function sync(
|
|
2082
|
+
function sync(path6, options) {
|
|
2083
2083
|
try {
|
|
2084
|
-
return core.sync(
|
|
2084
|
+
return core.sync(path6, options || {});
|
|
2085
2085
|
} catch (er) {
|
|
2086
2086
|
if (options && options.ignoreErrors || er.code === "EACCES") {
|
|
2087
2087
|
return false;
|
|
@@ -2099,7 +2099,7 @@ var require_which = __commonJS({
|
|
|
2099
2099
|
"use strict";
|
|
2100
2100
|
init_cjs_shims();
|
|
2101
2101
|
var isWindows = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
|
2102
|
-
var
|
|
2102
|
+
var path6 = __require("path");
|
|
2103
2103
|
var COLON = isWindows ? ";" : ":";
|
|
2104
2104
|
var isexe = require_isexe();
|
|
2105
2105
|
var getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" });
|
|
@@ -2132,27 +2132,27 @@ var require_which = __commonJS({
|
|
|
2132
2132
|
opt = {};
|
|
2133
2133
|
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
2134
2134
|
const found = [];
|
|
2135
|
-
const step = (i2) => new Promise((
|
|
2135
|
+
const step = (i2) => new Promise((resolve2, reject) => {
|
|
2136
2136
|
if (i2 === pathEnv.length)
|
|
2137
|
-
return opt.all && found.length ?
|
|
2137
|
+
return opt.all && found.length ? resolve2(found) : reject(getNotFoundError(cmd));
|
|
2138
2138
|
const ppRaw = pathEnv[i2];
|
|
2139
2139
|
const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
|
|
2140
|
-
const pCmd =
|
|
2140
|
+
const pCmd = path6.join(pathPart, cmd);
|
|
2141
2141
|
const p3 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
|
|
2142
|
-
|
|
2142
|
+
resolve2(subStep(p3, i2, 0));
|
|
2143
2143
|
});
|
|
2144
|
-
const subStep = (p3, i2, ii) => new Promise((
|
|
2144
|
+
const subStep = (p3, i2, ii) => new Promise((resolve2, reject) => {
|
|
2145
2145
|
if (ii === pathExt.length)
|
|
2146
|
-
return
|
|
2146
|
+
return resolve2(step(i2 + 1));
|
|
2147
2147
|
const ext = pathExt[ii];
|
|
2148
2148
|
isexe(p3 + ext, { pathExt: pathExtExe }, (er, is) => {
|
|
2149
2149
|
if (!er && is) {
|
|
2150
2150
|
if (opt.all)
|
|
2151
2151
|
found.push(p3 + ext);
|
|
2152
2152
|
else
|
|
2153
|
-
return
|
|
2153
|
+
return resolve2(p3 + ext);
|
|
2154
2154
|
}
|
|
2155
|
-
return
|
|
2155
|
+
return resolve2(subStep(p3, i2, ii + 1));
|
|
2156
2156
|
});
|
|
2157
2157
|
});
|
|
2158
2158
|
return cb ? step(0).then((res) => cb(null, res), cb) : step(0);
|
|
@@ -2164,7 +2164,7 @@ var require_which = __commonJS({
|
|
|
2164
2164
|
for (let i2 = 0; i2 < pathEnv.length; i2++) {
|
|
2165
2165
|
const ppRaw = pathEnv[i2];
|
|
2166
2166
|
const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
|
|
2167
|
-
const pCmd =
|
|
2167
|
+
const pCmd = path6.join(pathPart, cmd);
|
|
2168
2168
|
const p3 = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
|
|
2169
2169
|
for (let j = 0; j < pathExt.length; j++) {
|
|
2170
2170
|
const cur = p3 + pathExt[j];
|
|
@@ -2214,7 +2214,7 @@ var require_resolveCommand = __commonJS({
|
|
|
2214
2214
|
"../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/resolveCommand.js"(exports, module) {
|
|
2215
2215
|
"use strict";
|
|
2216
2216
|
init_cjs_shims();
|
|
2217
|
-
var
|
|
2217
|
+
var path6 = __require("path");
|
|
2218
2218
|
var which = require_which();
|
|
2219
2219
|
var getPathKey = require_path_key();
|
|
2220
2220
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
|
@@ -2232,7 +2232,7 @@ var require_resolveCommand = __commonJS({
|
|
|
2232
2232
|
try {
|
|
2233
2233
|
resolved = which.sync(parsed.command, {
|
|
2234
2234
|
path: env2[getPathKey({ env: env2 })],
|
|
2235
|
-
pathExt: withoutPathExt ?
|
|
2235
|
+
pathExt: withoutPathExt ? path6.delimiter : void 0
|
|
2236
2236
|
});
|
|
2237
2237
|
} catch (e) {
|
|
2238
2238
|
} finally {
|
|
@@ -2241,7 +2241,7 @@ var require_resolveCommand = __commonJS({
|
|
|
2241
2241
|
}
|
|
2242
2242
|
}
|
|
2243
2243
|
if (resolved) {
|
|
2244
|
-
resolved =
|
|
2244
|
+
resolved = path6.resolve(hasCustomCwd ? parsed.options.cwd : "", resolved);
|
|
2245
2245
|
}
|
|
2246
2246
|
return resolved;
|
|
2247
2247
|
}
|
|
@@ -2298,8 +2298,8 @@ var require_shebang_command = __commonJS({
|
|
|
2298
2298
|
if (!match) {
|
|
2299
2299
|
return null;
|
|
2300
2300
|
}
|
|
2301
|
-
const [
|
|
2302
|
-
const binary =
|
|
2301
|
+
const [path6, argument] = match[0].replace(/#! ?/, "").split(" ");
|
|
2302
|
+
const binary = path6.split("/").pop();
|
|
2303
2303
|
if (binary === "env") {
|
|
2304
2304
|
return argument;
|
|
2305
2305
|
}
|
|
@@ -2336,7 +2336,7 @@ var require_parse = __commonJS({
|
|
|
2336
2336
|
"../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/parse.js"(exports, module) {
|
|
2337
2337
|
"use strict";
|
|
2338
2338
|
init_cjs_shims();
|
|
2339
|
-
var
|
|
2339
|
+
var path6 = __require("path");
|
|
2340
2340
|
var resolveCommand = require_resolveCommand();
|
|
2341
2341
|
var escape = require_escape();
|
|
2342
2342
|
var readShebang = require_readShebang();
|
|
@@ -2361,7 +2361,7 @@ var require_parse = __commonJS({
|
|
|
2361
2361
|
const needsShell = !isExecutableRegExp.test(commandFile);
|
|
2362
2362
|
if (parsed.options.forceShell || needsShell) {
|
|
2363
2363
|
const needsDoubleEscapeMetaChars = isCmdShimRegExp.test(commandFile);
|
|
2364
|
-
parsed.command =
|
|
2364
|
+
parsed.command = path6.normalize(parsed.command);
|
|
2365
2365
|
parsed.command = escape.command(parsed.command);
|
|
2366
2366
|
parsed.args = parsed.args.map((arg) => escape.argument(arg, needsDoubleEscapeMetaChars));
|
|
2367
2367
|
const shellCommand = [parsed.command].concat(parsed.args).join(" ");
|
|
@@ -3614,10 +3614,10 @@ var spinner = ora({
|
|
|
3614
3614
|
spinner: "clock"
|
|
3615
3615
|
});
|
|
3616
3616
|
|
|
3617
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3617
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/index.js
|
|
3618
3618
|
init_cjs_shims();
|
|
3619
3619
|
|
|
3620
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3620
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/create.js
|
|
3621
3621
|
init_cjs_shims();
|
|
3622
3622
|
|
|
3623
3623
|
// ../../node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js
|
|
@@ -3630,10 +3630,10 @@ function isPlainObject(value) {
|
|
|
3630
3630
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
3631
3631
|
}
|
|
3632
3632
|
|
|
3633
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3633
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/parameters.js
|
|
3634
3634
|
init_cjs_shims();
|
|
3635
3635
|
|
|
3636
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3636
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/file-url.js
|
|
3637
3637
|
init_cjs_shims();
|
|
3638
3638
|
var _url = require('url');
|
|
3639
3639
|
var safeNormalizeFileUrl = (file, name) => {
|
|
@@ -3645,7 +3645,7 @@ var safeNormalizeFileUrl = (file, name) => {
|
|
|
3645
3645
|
};
|
|
3646
3646
|
var normalizeFileUrl = (file) => file instanceof URL ? _url.fileURLToPath.call(void 0, file) : file;
|
|
3647
3647
|
|
|
3648
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3648
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/parameters.js
|
|
3649
3649
|
var normalizeParameters = (rawFile, rawArguments = [], rawOptions = {}) => {
|
|
3650
3650
|
const filePath = safeNormalizeFileUrl(rawFile, "First argument");
|
|
3651
3651
|
const [commandArguments, options] = isPlainObject(rawArguments) ? [[], rawArguments] : [rawArguments, rawOptions];
|
|
@@ -3666,11 +3666,11 @@ var normalizeParameters = (rawFile, rawArguments = [], rawOptions = {}) => {
|
|
|
3666
3666
|
return [filePath, normalizedArguments, options];
|
|
3667
3667
|
};
|
|
3668
3668
|
|
|
3669
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3669
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/template.js
|
|
3670
3670
|
init_cjs_shims();
|
|
3671
3671
|
var _child_process = require('child_process');
|
|
3672
3672
|
|
|
3673
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3673
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/uint-array.js
|
|
3674
3674
|
init_cjs_shims();
|
|
3675
3675
|
var _string_decoder = require('string_decoder');
|
|
3676
3676
|
var { toString: objectToString } = Object.prototype;
|
|
@@ -3718,7 +3718,7 @@ var getJoinLength = (uint8Arrays) => {
|
|
|
3718
3718
|
return joinLength;
|
|
3719
3719
|
};
|
|
3720
3720
|
|
|
3721
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3721
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/template.js
|
|
3722
3722
|
var isTemplateString = (templates) => Array.isArray(templates) && Array.isArray(templates.raw);
|
|
3723
3723
|
var parseTemplates = (templates, expressions) => {
|
|
3724
3724
|
let tokens = [];
|
|
@@ -3815,24 +3815,24 @@ var getSubprocessResult = ({ stdout }) => {
|
|
|
3815
3815
|
throw new TypeError(`Unexpected "${typeof stdout}" stdout in template expression`);
|
|
3816
3816
|
};
|
|
3817
3817
|
|
|
3818
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3818
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/main-sync.js
|
|
3819
3819
|
init_cjs_shims();
|
|
3820
3820
|
|
|
3821
3821
|
|
|
3822
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3822
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/command.js
|
|
3823
3823
|
init_cjs_shims();
|
|
3824
3824
|
|
|
3825
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3825
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/start.js
|
|
3826
3826
|
init_cjs_shims();
|
|
3827
3827
|
|
|
3828
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3828
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/values.js
|
|
3829
3829
|
init_cjs_shims();
|
|
3830
3830
|
|
|
3831
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3831
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/specific.js
|
|
3832
3832
|
init_cjs_shims();
|
|
3833
3833
|
var _util = require('util');
|
|
3834
3834
|
|
|
3835
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3835
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/standard-stream.js
|
|
3836
3836
|
init_cjs_shims();
|
|
3837
3837
|
|
|
3838
3838
|
var isStandardStream = (stream) => STANDARD_STREAMS.includes(stream);
|
|
@@ -3840,7 +3840,7 @@ var STANDARD_STREAMS = [_process3.default.stdin, _process3.default.stdout, _proc
|
|
|
3840
3840
|
var STANDARD_STREAMS_ALIASES = ["stdin", "stdout", "stderr"];
|
|
3841
3841
|
var getStreamName = (fdNumber) => _nullishCoalesce(STANDARD_STREAMS_ALIASES[fdNumber], () => ( `stdio[${fdNumber}]`));
|
|
3842
3842
|
|
|
3843
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3843
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/specific.js
|
|
3844
3844
|
var normalizeFdSpecificOptions = (options) => {
|
|
3845
3845
|
const optionsCopy = { ...options };
|
|
3846
3846
|
for (const optionName of FD_SPECIFIC_OPTIONS) {
|
|
@@ -3910,7 +3910,7 @@ var DEFAULT_OPTIONS = {
|
|
|
3910
3910
|
var FD_SPECIFIC_OPTIONS = ["lines", "buffer", "maxBuffer", "verbose", "stripFinalNewline"];
|
|
3911
3911
|
var getFdSpecificValue = (optionArray, fdNumber) => fdNumber === "ipc" ? optionArray.at(-1) : optionArray[fdNumber];
|
|
3912
3912
|
|
|
3913
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3913
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/values.js
|
|
3914
3914
|
var isVerbose = ({ verbose }, fdNumber) => getFdVerbose(verbose, fdNumber) !== "none";
|
|
3915
3915
|
var isFullVerbose = ({ verbose }, fdNumber) => !["none", "short"].includes(getFdVerbose(verbose, fdNumber));
|
|
3916
3916
|
var getVerboseFunction = ({ verbose }, fdNumber) => {
|
|
@@ -3922,12 +3922,12 @@ var getFdGenericVerbose = (verbose) => _nullishCoalesce(verbose.find((fdVerbose)
|
|
|
3922
3922
|
var isVerboseFunction = (fdVerbose) => typeof fdVerbose === "function";
|
|
3923
3923
|
var VERBOSE_VALUES = ["none", "short", "full"];
|
|
3924
3924
|
|
|
3925
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3925
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/log.js
|
|
3926
3926
|
init_cjs_shims();
|
|
3927
3927
|
var _fs = require('fs');
|
|
3928
3928
|
|
|
3929
3929
|
|
|
3930
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3930
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/escape.js
|
|
3931
3931
|
init_cjs_shims();
|
|
3932
3932
|
|
|
3933
3933
|
|
|
@@ -3948,7 +3948,14 @@ var escapeControlCharacter = (character) => {
|
|
|
3948
3948
|
const codepointHex = codepoint.toString(16);
|
|
3949
3949
|
return codepoint <= ASTRAL_START ? `\\u${codepointHex.padStart(4, "0")}` : `\\U${codepointHex}`;
|
|
3950
3950
|
};
|
|
3951
|
-
var
|
|
3951
|
+
var getSpecialCharRegExp = () => {
|
|
3952
|
+
try {
|
|
3953
|
+
return new RegExp("\\p{Separator}|\\p{Other}", "gu");
|
|
3954
|
+
} catch (e2) {
|
|
3955
|
+
return /[\s\u0000-\u001F\u007F-\u009F\u00AD]/g;
|
|
3956
|
+
}
|
|
3957
|
+
};
|
|
3958
|
+
var SPECIAL_CHAR_REGEXP = getSpecialCharRegExp();
|
|
3952
3959
|
var COMMON_ESCAPES = {
|
|
3953
3960
|
" ": " ",
|
|
3954
3961
|
"\b": "\\b",
|
|
@@ -3966,7 +3973,7 @@ var quoteString = (escapedArgument) => {
|
|
|
3966
3973
|
};
|
|
3967
3974
|
var NO_ESCAPE_REGEXP = /^[\w./-]+$/;
|
|
3968
3975
|
|
|
3969
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
3976
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/default.js
|
|
3970
3977
|
init_cjs_shims();
|
|
3971
3978
|
|
|
3972
3979
|
// ../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js
|
|
@@ -4315,7 +4322,7 @@ var bgMagentaBright = format(105, 49);
|
|
|
4315
4322
|
var bgCyanBright = format(106, 49);
|
|
4316
4323
|
var bgWhiteBright = format(107, 49);
|
|
4317
4324
|
|
|
4318
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4325
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/default.js
|
|
4319
4326
|
var defaultVerboseFunction = ({
|
|
4320
4327
|
type,
|
|
4321
4328
|
message,
|
|
@@ -4354,7 +4361,7 @@ var COLORS = {
|
|
|
4354
4361
|
duration: () => gray
|
|
4355
4362
|
};
|
|
4356
4363
|
|
|
4357
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4364
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/custom.js
|
|
4358
4365
|
init_cjs_shims();
|
|
4359
4366
|
var applyVerboseOnLines = (printedLines, verboseInfo, fdNumber) => {
|
|
4360
4367
|
const verboseFunction = getVerboseFunction(verboseInfo, fdNumber);
|
|
@@ -4372,7 +4379,7 @@ var applyVerboseFunction = (verboseLine, verboseObject, verboseFunction) => {
|
|
|
4372
4379
|
var appendNewline = (printedLine) => printedLine.endsWith("\n") ? printedLine : `${printedLine}
|
|
4373
4380
|
`;
|
|
4374
4381
|
|
|
4375
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4382
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/log.js
|
|
4376
4383
|
var verboseLog = ({ type, verboseMessage, fdNumber, verboseInfo, result }) => {
|
|
4377
4384
|
const verboseObject = getVerboseObject({ type, result, verboseInfo });
|
|
4378
4385
|
const printedLines = getPrintedLines(verboseMessage, verboseObject);
|
|
@@ -4405,7 +4412,7 @@ var serializeVerboseMessage = (message) => {
|
|
|
4405
4412
|
};
|
|
4406
4413
|
var TAB_SIZE = 2;
|
|
4407
4414
|
|
|
4408
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4415
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/start.js
|
|
4409
4416
|
var logCommand = (escapedCommand, verboseInfo) => {
|
|
4410
4417
|
if (!isVerbose(verboseInfo)) {
|
|
4411
4418
|
return;
|
|
@@ -4417,7 +4424,7 @@ var logCommand = (escapedCommand, verboseInfo) => {
|
|
|
4417
4424
|
});
|
|
4418
4425
|
};
|
|
4419
4426
|
|
|
4420
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4427
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/info.js
|
|
4421
4428
|
init_cjs_shims();
|
|
4422
4429
|
var getVerboseInfo = (verbose, escapedCommand, rawOptions) => {
|
|
4423
4430
|
validateVerbose(verbose);
|
|
@@ -4446,13 +4453,13 @@ var validateVerbose = (verbose) => {
|
|
|
4446
4453
|
}
|
|
4447
4454
|
};
|
|
4448
4455
|
|
|
4449
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4456
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/duration.js
|
|
4450
4457
|
init_cjs_shims();
|
|
4451
4458
|
|
|
4452
4459
|
var getStartTime = () => _process2.hrtime.bigint();
|
|
4453
4460
|
var getDurationMs = (startTime) => Number(_process2.hrtime.bigint() - startTime) / 1e6;
|
|
4454
4461
|
|
|
4455
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4462
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/command.js
|
|
4456
4463
|
var handleCommand = (filePath, rawArguments, rawOptions) => {
|
|
4457
4464
|
const startTime = getStartTime();
|
|
4458
4465
|
const { command, escapedCommand } = joinCommand(filePath, rawArguments);
|
|
@@ -4467,7 +4474,7 @@ var handleCommand = (filePath, rawArguments, rawOptions) => {
|
|
|
4467
4474
|
};
|
|
4468
4475
|
};
|
|
4469
4476
|
|
|
4470
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4477
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/options.js
|
|
4471
4478
|
init_cjs_shims();
|
|
4472
4479
|
var import_cross_spawn = __toESM(require_cross_spawn(), 1);
|
|
4473
4480
|
var _path = require('path'); var _path2 = _interopRequireDefault(_path);
|
|
@@ -4531,11 +4538,11 @@ var npmRunPathEnv = ({ env: env2 = _process3.default.env, ...options } = {}) =>
|
|
|
4531
4538
|
return env2;
|
|
4532
4539
|
};
|
|
4533
4540
|
|
|
4534
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4541
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/kill.js
|
|
4535
4542
|
init_cjs_shims();
|
|
4536
4543
|
var _promises = require('timers/promises');
|
|
4537
4544
|
|
|
4538
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4545
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/final-error.js
|
|
4539
4546
|
init_cjs_shims();
|
|
4540
4547
|
var getFinalError = (originalError, message, isSync) => {
|
|
4541
4548
|
const ErrorClass = isSync ? ExecaSyncError : ExecaError;
|
|
@@ -4568,15 +4575,15 @@ var ExecaSyncError = class extends Error {
|
|
|
4568
4575
|
};
|
|
4569
4576
|
setErrorName(ExecaSyncError, ExecaSyncError.name);
|
|
4570
4577
|
|
|
4571
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4578
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/signal.js
|
|
4572
4579
|
init_cjs_shims();
|
|
4573
4580
|
|
|
4574
4581
|
|
|
4575
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4582
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/main.js
|
|
4576
4583
|
init_cjs_shims();
|
|
4577
4584
|
|
|
4578
4585
|
|
|
4579
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4586
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/realtime.js
|
|
4580
4587
|
init_cjs_shims();
|
|
4581
4588
|
var getRealtimeSignals = () => {
|
|
4582
4589
|
const length = SIGRTMAX - SIGRTMIN + 1;
|
|
@@ -4592,11 +4599,11 @@ var getRealtimeSignal = (value, index) => ({
|
|
|
4592
4599
|
var SIGRTMIN = 34;
|
|
4593
4600
|
var SIGRTMAX = 64;
|
|
4594
4601
|
|
|
4595
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4602
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/signals.js
|
|
4596
4603
|
init_cjs_shims();
|
|
4597
4604
|
|
|
4598
4605
|
|
|
4599
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4606
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/core.js
|
|
4600
4607
|
init_cjs_shims();
|
|
4601
4608
|
var SIGNALS = [
|
|
4602
4609
|
{
|
|
@@ -4870,7 +4877,7 @@ var SIGNALS = [
|
|
|
4870
4877
|
}
|
|
4871
4878
|
];
|
|
4872
4879
|
|
|
4873
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4880
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/signals.js
|
|
4874
4881
|
var getSignals = () => {
|
|
4875
4882
|
const realtimeSignals = getRealtimeSignals();
|
|
4876
4883
|
const signals2 = [...SIGNALS, ...realtimeSignals].map(normalizeSignal);
|
|
@@ -4892,7 +4899,7 @@ var normalizeSignal = ({
|
|
|
4892
4899
|
return { name, number, description, supported, action, forced, standard };
|
|
4893
4900
|
};
|
|
4894
4901
|
|
|
4895
|
-
// ../../node_modules/.pnpm/human-signals@
|
|
4902
|
+
// ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/main.js
|
|
4896
4903
|
var getSignalsByName = () => {
|
|
4897
4904
|
const signals2 = getSignals();
|
|
4898
4905
|
return Object.fromEntries(signals2.map(getSignalByName));
|
|
@@ -4943,7 +4950,7 @@ var findSignalByNumber = (number, signals2) => {
|
|
|
4943
4950
|
};
|
|
4944
4951
|
var signalsByNumber = getSignalsByNumber();
|
|
4945
4952
|
|
|
4946
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4953
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/signal.js
|
|
4947
4954
|
var normalizeKillSignal = (killSignal) => {
|
|
4948
4955
|
const optionName = "option `killSignal`";
|
|
4949
4956
|
if (killSignal === 0) {
|
|
@@ -4987,7 +4994,7 @@ var getAvailableSignalNames = () => Object.keys(_os.constants.signals).sort().ma
|
|
|
4987
4994
|
var getAvailableSignalIntegers = () => [...new Set(Object.values(_os.constants.signals).sort((signalInteger, signalIntegerTwo) => signalInteger - signalIntegerTwo))].join(", ");
|
|
4988
4995
|
var getSignalDescription = (signal) => signalsByName[signal].description;
|
|
4989
4996
|
|
|
4990
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
4997
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/kill.js
|
|
4991
4998
|
var normalizeForceKillAfterDelay = (forceKillAfterDelay) => {
|
|
4992
4999
|
if (forceKillAfterDelay === false) {
|
|
4993
5000
|
return forceKillAfterDelay;
|
|
@@ -5050,14 +5057,14 @@ var killOnTimeout = async ({ kill, forceKillAfterDelay, context, controllerSigna
|
|
|
5050
5057
|
if (kill("SIGKILL")) {
|
|
5051
5058
|
_nullishCoalesce(context.isForcefullyTerminated, () => ( (context.isForcefullyTerminated = true)));
|
|
5052
5059
|
}
|
|
5053
|
-
} catch (
|
|
5060
|
+
} catch (e3) {
|
|
5054
5061
|
}
|
|
5055
5062
|
};
|
|
5056
5063
|
|
|
5057
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5064
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cancel.js
|
|
5058
5065
|
init_cjs_shims();
|
|
5059
5066
|
|
|
5060
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5067
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/abort-signal.js
|
|
5061
5068
|
init_cjs_shims();
|
|
5062
5069
|
var _events = require('events');
|
|
5063
5070
|
var onAbortedSignal = async (mainSignal, stopSignal) => {
|
|
@@ -5066,7 +5073,7 @@ var onAbortedSignal = async (mainSignal, stopSignal) => {
|
|
|
5066
5073
|
}
|
|
5067
5074
|
};
|
|
5068
5075
|
|
|
5069
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5076
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cancel.js
|
|
5070
5077
|
var validateCancelSignal = ({ cancelSignal }) => {
|
|
5071
5078
|
if (cancelSignal !== void 0 && Object.prototype.toString.call(cancelSignal) !== "[object AbortSignal]") {
|
|
5072
5079
|
throw new Error(`The \`cancelSignal\` option must be an AbortSignal: ${String(cancelSignal)}`);
|
|
@@ -5080,18 +5087,18 @@ var terminateOnCancel = async (subprocess, cancelSignal, context, { signal }) =>
|
|
|
5080
5087
|
throw cancelSignal.reason;
|
|
5081
5088
|
};
|
|
5082
5089
|
|
|
5083
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5090
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/graceful.js
|
|
5084
5091
|
init_cjs_shims();
|
|
5085
5092
|
|
|
5086
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5093
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/graceful.js
|
|
5087
5094
|
init_cjs_shims();
|
|
5088
5095
|
|
|
5089
5096
|
|
|
5090
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5097
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/send.js
|
|
5091
5098
|
init_cjs_shims();
|
|
5092
5099
|
|
|
5093
5100
|
|
|
5094
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5101
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/validation.js
|
|
5095
5102
|
init_cjs_shims();
|
|
5096
5103
|
var validateIpcMethod = ({ methodName, isSubprocess, ipc, isConnected: isConnected2 }) => {
|
|
5097
5104
|
validateIpcOption(methodName, isSubprocess, ipc);
|
|
@@ -5164,20 +5171,20 @@ var disconnect = (anyProcess) => {
|
|
|
5164
5171
|
}
|
|
5165
5172
|
};
|
|
5166
5173
|
|
|
5167
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5174
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/outgoing.js
|
|
5168
5175
|
init_cjs_shims();
|
|
5169
5176
|
|
|
5170
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5177
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/deferred.js
|
|
5171
5178
|
init_cjs_shims();
|
|
5172
5179
|
var createDeferred = () => {
|
|
5173
5180
|
const methods = {};
|
|
5174
|
-
const promise = new Promise((
|
|
5175
|
-
Object.assign(methods, { resolve:
|
|
5181
|
+
const promise = new Promise((resolve2, reject) => {
|
|
5182
|
+
Object.assign(methods, { resolve: resolve2, reject });
|
|
5176
5183
|
});
|
|
5177
5184
|
return Object.assign(promise, methods);
|
|
5178
5185
|
};
|
|
5179
5186
|
|
|
5180
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5187
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/fd-options.js
|
|
5181
5188
|
init_cjs_shims();
|
|
5182
5189
|
var getToStream = (destination, to = "stdin") => {
|
|
5183
5190
|
const isWritable = true;
|
|
@@ -5258,11 +5265,11 @@ var serializeOptionValue = (value) => {
|
|
|
5258
5265
|
return typeof value === "number" ? `${value}` : "Stream";
|
|
5259
5266
|
};
|
|
5260
5267
|
|
|
5261
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5268
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/strict.js
|
|
5262
5269
|
init_cjs_shims();
|
|
5263
5270
|
|
|
5264
5271
|
|
|
5265
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5272
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/max-listeners.js
|
|
5266
5273
|
init_cjs_shims();
|
|
5267
5274
|
|
|
5268
5275
|
var incrementMaxListeners = (eventEmitter, maxListenersIncrement, signal) => {
|
|
@@ -5276,16 +5283,16 @@ var incrementMaxListeners = (eventEmitter, maxListenersIncrement, signal) => {
|
|
|
5276
5283
|
});
|
|
5277
5284
|
};
|
|
5278
5285
|
|
|
5279
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5286
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/forward.js
|
|
5280
5287
|
init_cjs_shims();
|
|
5281
5288
|
|
|
5282
5289
|
|
|
5283
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5290
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/incoming.js
|
|
5284
5291
|
init_cjs_shims();
|
|
5285
5292
|
|
|
5286
5293
|
|
|
5287
5294
|
|
|
5288
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5295
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/reference.js
|
|
5289
5296
|
init_cjs_shims();
|
|
5290
5297
|
var addReference = (channel, reference) => {
|
|
5291
5298
|
if (reference) {
|
|
@@ -5316,7 +5323,7 @@ var redoAddedReferences = (channel, isSubprocess) => {
|
|
|
5316
5323
|
}
|
|
5317
5324
|
};
|
|
5318
5325
|
|
|
5319
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5326
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/incoming.js
|
|
5320
5327
|
var onMessage = async ({ anyProcess, channel, isSubprocess, ipcEmitter }, wrappedMessage) => {
|
|
5321
5328
|
if (handleStrictResponse(wrappedMessage) || handleAbort(wrappedMessage)) {
|
|
5322
5329
|
return;
|
|
@@ -5357,7 +5364,7 @@ var onDisconnect = async ({ anyProcess, channel, isSubprocess, ipcEmitter, bound
|
|
|
5357
5364
|
};
|
|
5358
5365
|
var INCOMING_MESSAGES = /* @__PURE__ */ new WeakMap();
|
|
5359
5366
|
|
|
5360
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5367
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/forward.js
|
|
5361
5368
|
var getIpcEmitter = (anyProcess, channel, isSubprocess) => {
|
|
5362
5369
|
if (IPC_EMITTERS.has(anyProcess)) {
|
|
5363
5370
|
return IPC_EMITTERS.get(anyProcess);
|
|
@@ -5396,7 +5403,7 @@ var isConnected = (anyProcess) => {
|
|
|
5396
5403
|
return ipcEmitter === void 0 ? anyProcess.channel !== null : ipcEmitter.connected;
|
|
5397
5404
|
};
|
|
5398
5405
|
|
|
5399
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5406
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/strict.js
|
|
5400
5407
|
var handleSendStrict = ({ anyProcess, channel, isSubprocess, message, strict }) => {
|
|
5401
5408
|
if (!strict) {
|
|
5402
5409
|
return message;
|
|
@@ -5479,7 +5486,7 @@ var throwOnDisconnect = async (anyProcess, isSubprocess, { signal }) => {
|
|
|
5479
5486
|
var REQUEST_TYPE = "execa:ipc:request";
|
|
5480
5487
|
var RESPONSE_TYPE = "execa:ipc:response";
|
|
5481
5488
|
|
|
5482
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5489
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/outgoing.js
|
|
5483
5490
|
var startSendMessage = (anyProcess, wrappedMessage, strict) => {
|
|
5484
5491
|
if (!OUTGOING_MESSAGES.has(anyProcess)) {
|
|
5485
5492
|
OUTGOING_MESSAGES.set(anyProcess, /* @__PURE__ */ new Set());
|
|
@@ -5506,7 +5513,7 @@ var OUTGOING_MESSAGES = /* @__PURE__ */ new WeakMap();
|
|
|
5506
5513
|
var hasMessageListeners = (anyProcess, ipcEmitter) => ipcEmitter.listenerCount("message") > getMinListenerCount(anyProcess);
|
|
5507
5514
|
var getMinListenerCount = (anyProcess) => SUBPROCESS_OPTIONS.has(anyProcess) && !getFdSpecificValue(SUBPROCESS_OPTIONS.get(anyProcess).options.buffer, "ipc") ? 1 : 0;
|
|
5508
5515
|
|
|
5509
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5516
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/send.js
|
|
5510
5517
|
var sendMessage = ({ anyProcess, channel, isSubprocess, ipc }, message, { strict = false } = {}) => {
|
|
5511
5518
|
const methodName = "sendMessage";
|
|
5512
5519
|
validateIpcMethod({
|
|
@@ -5576,7 +5583,7 @@ var getSendMethod = (anyProcess) => {
|
|
|
5576
5583
|
};
|
|
5577
5584
|
var PROCESS_SEND_METHODS = /* @__PURE__ */ new WeakMap();
|
|
5578
5585
|
|
|
5579
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5586
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/graceful.js
|
|
5580
5587
|
var sendAbort = (subprocess, message) => {
|
|
5581
5588
|
const methodName = "cancelSignal";
|
|
5582
5589
|
validateConnection(methodName, false, subprocess.connected);
|
|
@@ -5627,7 +5634,7 @@ var abortOnDisconnect = () => {
|
|
|
5627
5634
|
};
|
|
5628
5635
|
var cancelController = new AbortController();
|
|
5629
5636
|
|
|
5630
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5637
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/graceful.js
|
|
5631
5638
|
var validateGracefulCancel = ({ gracefulCancel, cancelSignal, ipc, serialization }) => {
|
|
5632
5639
|
if (!gracefulCancel) {
|
|
5633
5640
|
return;
|
|
@@ -5683,7 +5690,7 @@ var getReason = ({ reason }) => {
|
|
|
5683
5690
|
return error;
|
|
5684
5691
|
};
|
|
5685
5692
|
|
|
5686
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5693
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/timeout.js
|
|
5687
5694
|
init_cjs_shims();
|
|
5688
5695
|
|
|
5689
5696
|
var validateTimeout = ({ timeout }) => {
|
|
@@ -5699,7 +5706,7 @@ var killAfterTimeout = async (subprocess, timeout, context, { signal }) => {
|
|
|
5699
5706
|
throw new DiscardedError();
|
|
5700
5707
|
};
|
|
5701
5708
|
|
|
5702
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5709
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/node.js
|
|
5703
5710
|
init_cjs_shims();
|
|
5704
5711
|
|
|
5705
5712
|
|
|
@@ -5721,7 +5728,7 @@ var handleNodeOption = (file, commandArguments, {
|
|
|
5721
5728
|
throw new TypeError('The "execPath" option has been removed. Please use the "nodePath" option instead.');
|
|
5722
5729
|
}
|
|
5723
5730
|
const normalizedNodePath = safeNormalizeFileUrl(nodePath, 'The "nodePath" option');
|
|
5724
|
-
const resolvedNodePath =
|
|
5731
|
+
const resolvedNodePath = _path2.default.resolve(cwd, normalizedNodePath);
|
|
5725
5732
|
const newOptions = {
|
|
5726
5733
|
...options,
|
|
5727
5734
|
nodePath: resolvedNodePath,
|
|
@@ -5731,7 +5738,7 @@ var handleNodeOption = (file, commandArguments, {
|
|
|
5731
5738
|
if (!shouldHandleNode) {
|
|
5732
5739
|
return [file, commandArguments, newOptions];
|
|
5733
5740
|
}
|
|
5734
|
-
if (
|
|
5741
|
+
if (_path2.default.basename(file, ".exe") === "node") {
|
|
5735
5742
|
throw new TypeError('When the "node" option is true, the first argument does not need to be "node".');
|
|
5736
5743
|
}
|
|
5737
5744
|
return [
|
|
@@ -5741,7 +5748,7 @@ var handleNodeOption = (file, commandArguments, {
|
|
|
5741
5748
|
];
|
|
5742
5749
|
};
|
|
5743
5750
|
|
|
5744
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5751
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/ipc-input.js
|
|
5745
5752
|
init_cjs_shims();
|
|
5746
5753
|
var _v8 = require('v8');
|
|
5747
5754
|
var validateIpcInputOption = ({ ipcInput, ipc, serialization }) => {
|
|
@@ -5778,7 +5785,7 @@ var sendIpcInput = async (subprocess, ipcInput) => {
|
|
|
5778
5785
|
await subprocess.sendMessage(ipcInput);
|
|
5779
5786
|
};
|
|
5780
5787
|
|
|
5781
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5788
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/encoding-option.js
|
|
5782
5789
|
init_cjs_shims();
|
|
5783
5790
|
var validateEncoding = ({ encoding }) => {
|
|
5784
5791
|
if (ENCODINGS.has(encoding)) {
|
|
@@ -5821,14 +5828,14 @@ var ENCODING_ALIASES = {
|
|
|
5821
5828
|
};
|
|
5822
5829
|
var serializeEncoding = (encoding) => typeof encoding === "string" ? `"${encoding}"` : String(encoding);
|
|
5823
5830
|
|
|
5824
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5831
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/cwd.js
|
|
5825
5832
|
init_cjs_shims();
|
|
5826
5833
|
|
|
5827
5834
|
|
|
5828
5835
|
|
|
5829
5836
|
var normalizeCwd = (cwd = getDefaultCwd()) => {
|
|
5830
5837
|
const cwdString = safeNormalizeFileUrl(cwd, 'The "cwd" option');
|
|
5831
|
-
return
|
|
5838
|
+
return _path2.default.resolve(cwdString);
|
|
5832
5839
|
};
|
|
5833
5840
|
var getDefaultCwd = () => {
|
|
5834
5841
|
try {
|
|
@@ -5858,7 +5865,7 @@ ${originalMessage}`;
|
|
|
5858
5865
|
return originalMessage;
|
|
5859
5866
|
};
|
|
5860
5867
|
|
|
5861
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5868
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/arguments/options.js
|
|
5862
5869
|
var normalizeOptions = (filePath, rawArguments, rawOptions) => {
|
|
5863
5870
|
rawOptions.cwd = normalizeCwd(rawOptions.cwd);
|
|
5864
5871
|
const [processedFile, processedArguments, processedOptions] = handleNodeOption(filePath, rawArguments, rawOptions);
|
|
@@ -5875,7 +5882,7 @@ var normalizeOptions = (filePath, rawArguments, rawOptions) => {
|
|
|
5875
5882
|
options.killSignal = normalizeKillSignal(options.killSignal);
|
|
5876
5883
|
options.forceKillAfterDelay = normalizeForceKillAfterDelay(options.forceKillAfterDelay);
|
|
5877
5884
|
options.lines = options.lines.map((lines, fdNumber) => lines && !BINARY_ENCODINGS.has(options.encoding) && options.buffer[fdNumber]);
|
|
5878
|
-
if (_process3.default.platform === "win32" &&
|
|
5885
|
+
if (_process3.default.platform === "win32" && _path2.default.basename(file, ".exe") === "cmd") {
|
|
5879
5886
|
commandArguments.unshift("/q");
|
|
5880
5887
|
}
|
|
5881
5888
|
return { file, commandArguments, options };
|
|
@@ -5929,10 +5936,10 @@ var getEnv = ({ env: envOption, extendEnv, preferLocal, node, localDirectory, no
|
|
|
5929
5936
|
return env2;
|
|
5930
5937
|
};
|
|
5931
5938
|
|
|
5932
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5939
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/result.js
|
|
5933
5940
|
init_cjs_shims();
|
|
5934
5941
|
|
|
5935
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5942
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/message.js
|
|
5936
5943
|
init_cjs_shims();
|
|
5937
5944
|
|
|
5938
5945
|
|
|
@@ -5954,7 +5961,7 @@ var LF_BINARY = LF.codePointAt(0);
|
|
|
5954
5961
|
var CR = "\r";
|
|
5955
5962
|
var CR_BINARY = CR.codePointAt(0);
|
|
5956
5963
|
|
|
5957
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
5964
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/max-buffer.js
|
|
5958
5965
|
init_cjs_shims();
|
|
5959
5966
|
|
|
5960
5967
|
// ../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/index.js
|
|
@@ -6356,7 +6363,7 @@ var stringMethods = {
|
|
|
6356
6363
|
// ../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/index.js
|
|
6357
6364
|
Object.assign(nodeImports, { on: _events.on, finished: _promises3.finished });
|
|
6358
6365
|
|
|
6359
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6366
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/max-buffer.js
|
|
6360
6367
|
var handleMaxBuffer = ({ error, stream, readableObjectMode, lines, encoding, fdNumber }) => {
|
|
6361
6368
|
if (!(error instanceof MaxBufferError)) {
|
|
6362
6369
|
throw error;
|
|
@@ -6415,7 +6422,7 @@ var truncateMaxBufferSync = (result, isMaxBuffer, maxBuffer) => {
|
|
|
6415
6422
|
};
|
|
6416
6423
|
var getMaxBufferSync = ([, stdoutMaxBuffer]) => stdoutMaxBuffer;
|
|
6417
6424
|
|
|
6418
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6425
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/message.js
|
|
6419
6426
|
var createMessages = ({
|
|
6420
6427
|
stdio,
|
|
6421
6428
|
all,
|
|
@@ -6533,7 +6540,7 @@ var serializeMessageItem = (messageItem) => {
|
|
|
6533
6540
|
return "";
|
|
6534
6541
|
};
|
|
6535
6542
|
|
|
6536
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6543
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/result.js
|
|
6537
6544
|
var makeSuccessResult = ({
|
|
6538
6545
|
command,
|
|
6539
6546
|
escapedCommand,
|
|
@@ -6706,10 +6713,10 @@ var normalizeExitPayload = (rawExitCode, rawSignal) => {
|
|
|
6706
6713
|
return { exitCode, signal, signalDescription };
|
|
6707
6714
|
};
|
|
6708
6715
|
|
|
6709
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6716
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/reject.js
|
|
6710
6717
|
init_cjs_shims();
|
|
6711
6718
|
|
|
6712
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6719
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/complete.js
|
|
6713
6720
|
init_cjs_shims();
|
|
6714
6721
|
|
|
6715
6722
|
// ../../node_modules/.pnpm/pretty-ms@9.0.0/node_modules/pretty-ms/index.js
|
|
@@ -6842,7 +6849,7 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
6842
6849
|
return result.join(separator);
|
|
6843
6850
|
}
|
|
6844
6851
|
|
|
6845
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6852
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/error.js
|
|
6846
6853
|
init_cjs_shims();
|
|
6847
6854
|
var logError = (result, verboseInfo) => {
|
|
6848
6855
|
if (result.failed) {
|
|
@@ -6855,7 +6862,7 @@ var logError = (result, verboseInfo) => {
|
|
|
6855
6862
|
}
|
|
6856
6863
|
};
|
|
6857
6864
|
|
|
6858
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6865
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/complete.js
|
|
6859
6866
|
var logResult = (result, verboseInfo) => {
|
|
6860
6867
|
if (!isVerbose(verboseInfo)) {
|
|
6861
6868
|
return;
|
|
@@ -6873,7 +6880,7 @@ var logDuration = (result, verboseInfo) => {
|
|
|
6873
6880
|
});
|
|
6874
6881
|
};
|
|
6875
6882
|
|
|
6876
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6883
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/reject.js
|
|
6877
6884
|
var handleResult = (result, verboseInfo, { reject }) => {
|
|
6878
6885
|
logResult(result, verboseInfo);
|
|
6879
6886
|
if (result.failed && reject) {
|
|
@@ -6882,17 +6889,17 @@ var handleResult = (result, verboseInfo, { reject }) => {
|
|
|
6882
6889
|
return result;
|
|
6883
6890
|
};
|
|
6884
6891
|
|
|
6885
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6892
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/handle-sync.js
|
|
6886
6893
|
init_cjs_shims();
|
|
6887
6894
|
|
|
6888
6895
|
|
|
6889
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6896
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/handle.js
|
|
6890
6897
|
init_cjs_shims();
|
|
6891
6898
|
|
|
6892
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6899
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/normalize.js
|
|
6893
6900
|
init_cjs_shims();
|
|
6894
6901
|
|
|
6895
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
6902
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/type.js
|
|
6896
6903
|
init_cjs_shims();
|
|
6897
6904
|
var getStdioItemType = (value, optionName) => {
|
|
6898
6905
|
if (isAsyncGenerator(value)) {
|
|
@@ -7018,7 +7025,7 @@ var TYPE_TO_MESSAGE = {
|
|
|
7018
7025
|
uint8Array: "a Uint8Array"
|
|
7019
7026
|
};
|
|
7020
7027
|
|
|
7021
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7028
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/object-mode.js
|
|
7022
7029
|
init_cjs_shims();
|
|
7023
7030
|
var getTransformObjectModes = (objectMode, index, newTransforms, direction) => direction === "output" ? getOutputObjectModes(objectMode, index, newTransforms) : getInputObjectModes(objectMode, index, newTransforms);
|
|
7024
7031
|
var getOutputObjectModes = (objectMode, index, newTransforms) => {
|
|
@@ -7039,7 +7046,7 @@ var getFdObjectMode = (stdioItems, direction) => {
|
|
|
7039
7046
|
return direction === "input" ? lastTransform.value.writableObjectMode : lastTransform.value.readableObjectMode;
|
|
7040
7047
|
};
|
|
7041
7048
|
|
|
7042
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7049
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/normalize.js
|
|
7043
7050
|
var normalizeTransforms = (stdioItems, optionName, direction, options) => [
|
|
7044
7051
|
...stdioItems.filter(({ type }) => !TRANSFORM_TYPES.has(type)),
|
|
7045
7052
|
...getTransforms(stdioItems, optionName, direction, options)
|
|
@@ -7133,7 +7140,7 @@ var normalizeGenerator = ({ stdioItem, stdioItem: { value }, index, newTransform
|
|
|
7133
7140
|
};
|
|
7134
7141
|
var sortTransforms = (newTransforms, direction) => direction === "input" ? newTransforms.reverse() : newTransforms;
|
|
7135
7142
|
|
|
7136
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7143
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/direction.js
|
|
7137
7144
|
init_cjs_shims();
|
|
7138
7145
|
|
|
7139
7146
|
var getStreamDirection = (stdioItems, fdNumber, optionName) => {
|
|
@@ -7184,14 +7191,14 @@ var getStandardStreamDirection = (value) => {
|
|
|
7184
7191
|
};
|
|
7185
7192
|
var DEFAULT_DIRECTION = "output";
|
|
7186
7193
|
|
|
7187
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7194
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/stdio-option.js
|
|
7188
7195
|
init_cjs_shims();
|
|
7189
7196
|
|
|
7190
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7197
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/array.js
|
|
7191
7198
|
init_cjs_shims();
|
|
7192
7199
|
var normalizeIpcStdioArray = (stdioArray, ipc) => ipc && !stdioArray.includes("ipc") ? [...stdioArray, "ipc"] : stdioArray;
|
|
7193
7200
|
|
|
7194
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7201
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/stdio-option.js
|
|
7195
7202
|
var normalizeStdioOption = ({ stdio, ipc, buffer, ...options }, verboseInfo, isSync) => {
|
|
7196
7203
|
const stdioArray = getStdioArray(stdio, options).map((stdioOption, fdNumber) => addDefaultValue2(stdioOption, fdNumber));
|
|
7197
7204
|
return isSync ? normalizeStdioSync(stdioArray, buffer, verboseInfo) : normalizeIpcStdioArray(stdioArray, ipc);
|
|
@@ -7225,7 +7232,7 @@ var addDefaultValue2 = (stdioOption, fdNumber) => {
|
|
|
7225
7232
|
var normalizeStdioSync = (stdioArray, buffer, verboseInfo) => stdioArray.map((stdioOption, fdNumber) => !buffer[fdNumber] && fdNumber !== 0 && !isFullVerbose(verboseInfo, fdNumber) && isOutputPipeOnly(stdioOption) ? "ignore" : stdioOption);
|
|
7226
7233
|
var isOutputPipeOnly = (stdioOption) => stdioOption === "pipe" || Array.isArray(stdioOption) && stdioOption.every((item) => item === "pipe");
|
|
7227
7234
|
|
|
7228
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7235
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/native.js
|
|
7229
7236
|
init_cjs_shims();
|
|
7230
7237
|
|
|
7231
7238
|
|
|
@@ -7295,7 +7302,7 @@ var getStandardStream = (fdNumber, value, optionName) => {
|
|
|
7295
7302
|
return standardStream;
|
|
7296
7303
|
};
|
|
7297
7304
|
|
|
7298
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7305
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/input-option.js
|
|
7299
7306
|
init_cjs_shims();
|
|
7300
7307
|
var handleInputOptions = ({ input, inputFile }, fdNumber) => fdNumber === 0 ? [
|
|
7301
7308
|
...handleInputOption(input),
|
|
@@ -7332,7 +7339,7 @@ var getInputFileType = (inputFile) => {
|
|
|
7332
7339
|
throw new Error("The `inputFile` option must be a file path string or a file URL.");
|
|
7333
7340
|
};
|
|
7334
7341
|
|
|
7335
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7342
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/duplicate.js
|
|
7336
7343
|
init_cjs_shims();
|
|
7337
7344
|
var filterDuplicates = (stdioItems) => stdioItems.filter((stdioItemOne, indexOne) => stdioItems.every((stdioItemTwo, indexTwo) => stdioItemOne.value !== stdioItemTwo.value || indexOne >= indexTwo || stdioItemOne.type === "generator" || stdioItemOne.type === "asyncGenerator"));
|
|
7338
7345
|
var getDuplicateStream = ({ stdioItem: { type, value, optionName }, direction, fileDescriptors, isSync }) => {
|
|
@@ -7408,7 +7415,7 @@ var throwOnDuplicateStream = (stdioItem, optionName, type) => {
|
|
|
7408
7415
|
}
|
|
7409
7416
|
};
|
|
7410
7417
|
|
|
7411
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7418
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/handle.js
|
|
7412
7419
|
var handleStdio = (addProperties3, options, verboseInfo, isSync) => {
|
|
7413
7420
|
const stdio = normalizeStdioOption(options, verboseInfo, isSync);
|
|
7414
7421
|
const initialFileDescriptors = stdio.map((stdioOption, fdNumber) => getFileDescriptor({
|
|
@@ -7568,7 +7575,7 @@ var forwardStdio = (stdioItems) => {
|
|
|
7568
7575
|
return type === "native" ? value : "pipe";
|
|
7569
7576
|
};
|
|
7570
7577
|
|
|
7571
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7578
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/handle-sync.js
|
|
7572
7579
|
var handleStdioSync = (options, verboseInfo) => handleStdio(addPropertiesSync, options, verboseInfo, true);
|
|
7573
7580
|
var forbiddenIfSync = ({ type, optionName }) => {
|
|
7574
7581
|
throwInvalidSyncValue(optionName, TYPE_TO_MESSAGE[type]);
|
|
@@ -7614,19 +7621,19 @@ var addPropertiesSync = {
|
|
|
7614
7621
|
}
|
|
7615
7622
|
};
|
|
7616
7623
|
|
|
7617
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7624
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/strip-newline.js
|
|
7618
7625
|
init_cjs_shims();
|
|
7619
7626
|
var stripNewline = (value, { stripFinalNewline: stripFinalNewline2 }, fdNumber) => getStripFinalNewline(stripFinalNewline2, fdNumber) && value !== void 0 && !Array.isArray(value) ? stripFinalNewline(value) : value;
|
|
7620
7627
|
var getStripFinalNewline = (stripFinalNewline2, fdNumber) => fdNumber === "all" ? stripFinalNewline2[1] || stripFinalNewline2[2] : stripFinalNewline2[fdNumber];
|
|
7621
7628
|
|
|
7622
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7629
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/input-sync.js
|
|
7623
7630
|
init_cjs_shims();
|
|
7624
7631
|
|
|
7625
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7632
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/generator.js
|
|
7626
7633
|
init_cjs_shims();
|
|
7627
7634
|
var _stream2 = require('stream');
|
|
7628
7635
|
|
|
7629
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7636
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/split.js
|
|
7630
7637
|
init_cjs_shims();
|
|
7631
7638
|
var getSplitLinesGenerator = (binary, preserveNewlines, skipped, state) => binary || skipped ? void 0 : initializeSplitLines(preserveNewlines, state);
|
|
7632
7639
|
var splitLinesSync = (chunk, preserveNewlines, objectMode) => objectMode ? chunk.flatMap((item) => splitLinesItemSync(item, preserveNewlines)) : splitLinesItemSync(chunk, preserveNewlines);
|
|
@@ -7707,7 +7714,7 @@ var linesUint8ArrayInfo = {
|
|
|
7707
7714
|
concatBytes: concatUint8Array
|
|
7708
7715
|
};
|
|
7709
7716
|
|
|
7710
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7717
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/validate.js
|
|
7711
7718
|
init_cjs_shims();
|
|
7712
7719
|
var _buffer = require('buffer');
|
|
7713
7720
|
var getValidateTransformInput = (writableObjectMode, optionName) => writableObjectMode ? void 0 : validateStringTransformInput.bind(void 0, optionName);
|
|
@@ -7737,7 +7744,7 @@ Instead, \`yield\` should either be called with a value, or not be called at all
|
|
|
7737
7744
|
}
|
|
7738
7745
|
};
|
|
7739
7746
|
|
|
7740
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7747
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/encoding-transform.js
|
|
7741
7748
|
init_cjs_shims();
|
|
7742
7749
|
|
|
7743
7750
|
|
|
@@ -7773,7 +7780,7 @@ var encodingStringFinal = function* (stringDecoder) {
|
|
|
7773
7780
|
}
|
|
7774
7781
|
};
|
|
7775
7782
|
|
|
7776
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7783
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/run-async.js
|
|
7777
7784
|
init_cjs_shims();
|
|
7778
7785
|
|
|
7779
7786
|
var pushChunks = _util.callbackify.call(void 0, async (getChunks, state, getChunksArguments, transformStream) => {
|
|
@@ -7822,7 +7829,7 @@ var identityGenerator = function* (chunk) {
|
|
|
7822
7829
|
yield chunk;
|
|
7823
7830
|
};
|
|
7824
7831
|
|
|
7825
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7832
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/run-sync.js
|
|
7826
7833
|
init_cjs_shims();
|
|
7827
7834
|
var pushChunksSync = (getChunksSync, getChunksArguments, transformStream, done) => {
|
|
7828
7835
|
try {
|
|
@@ -7865,7 +7872,7 @@ var identityGenerator2 = function* (chunk) {
|
|
|
7865
7872
|
yield chunk;
|
|
7866
7873
|
};
|
|
7867
7874
|
|
|
7868
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7875
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/generator.js
|
|
7869
7876
|
var generatorToStream = ({
|
|
7870
7877
|
value,
|
|
7871
7878
|
value: { transform, final, writableObjectMode, readableObjectMode },
|
|
@@ -7919,7 +7926,7 @@ var addInternalGenerators = ({ transform, final, binary, writableObjectMode, rea
|
|
|
7919
7926
|
].filter(Boolean);
|
|
7920
7927
|
};
|
|
7921
7928
|
|
|
7922
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7929
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/input-sync.js
|
|
7923
7930
|
var addInputOptionsSync = (fileDescriptors, options) => {
|
|
7924
7931
|
for (const fdNumber of getInputFdNumbers(fileDescriptors)) {
|
|
7925
7932
|
addInputOptionSync(fileDescriptors, fdNumber, options);
|
|
@@ -7952,11 +7959,11 @@ var validateSerializable = (newContents) => {
|
|
|
7952
7959
|
}
|
|
7953
7960
|
};
|
|
7954
7961
|
|
|
7955
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7962
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/output-sync.js
|
|
7956
7963
|
init_cjs_shims();
|
|
7957
7964
|
|
|
7958
7965
|
|
|
7959
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7966
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/output.js
|
|
7960
7967
|
init_cjs_shims();
|
|
7961
7968
|
var shouldLogOutput = ({ stdioItems, encoding, verboseInfo, fdNumber }) => fdNumber !== "all" && isFullVerbose(verboseInfo, fdNumber) && !BINARY_ENCODINGS.has(encoding) && fdUsesVerbose(fdNumber) && (stdioItems.some(({ type, value }) => type === "native" && PIPED_STDIO_VALUES.has(value)) || stdioItems.every(({ type }) => TRANSFORM_TYPES.has(type)));
|
|
7962
7969
|
var fdUsesVerbose = (fdNumber) => fdNumber === 1 || fdNumber === 2;
|
|
@@ -7984,7 +7991,7 @@ var logLine = (line, fdNumber, verboseInfo) => {
|
|
|
7984
7991
|
});
|
|
7985
7992
|
};
|
|
7986
7993
|
|
|
7987
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
7994
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/output-sync.js
|
|
7988
7995
|
var transformOutputSync = ({ fileDescriptors, syncResult: { output }, options, isMaxBuffer, verboseInfo }) => {
|
|
7989
7996
|
if (output === null) {
|
|
7990
7997
|
return { output: Array.from({ length: 3 }) };
|
|
@@ -8076,18 +8083,18 @@ var logOutputSync = ({ serializedResult, fdNumber, state, verboseInfo, encoding,
|
|
|
8076
8083
|
}
|
|
8077
8084
|
};
|
|
8078
8085
|
var writeToFiles = (serializedResult, stdioItems, outputFiles) => {
|
|
8079
|
-
for (const { path:
|
|
8080
|
-
const pathString = typeof
|
|
8086
|
+
for (const { path: path6 } of stdioItems.filter(({ type }) => FILE_TYPES.has(type))) {
|
|
8087
|
+
const pathString = typeof path6 === "string" ? path6 : path6.toString();
|
|
8081
8088
|
if (outputFiles.has(pathString)) {
|
|
8082
|
-
_fs.appendFileSync.call(void 0,
|
|
8089
|
+
_fs.appendFileSync.call(void 0, path6, serializedResult);
|
|
8083
8090
|
} else {
|
|
8084
8091
|
outputFiles.add(pathString);
|
|
8085
|
-
_fs.writeFileSync.call(void 0,
|
|
8092
|
+
_fs.writeFileSync.call(void 0, path6, serializedResult);
|
|
8086
8093
|
}
|
|
8087
8094
|
}
|
|
8088
8095
|
};
|
|
8089
8096
|
|
|
8090
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8097
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/all-sync.js
|
|
8091
8098
|
init_cjs_shims();
|
|
8092
8099
|
var getAllSync = ([, stdout, stderr], options) => {
|
|
8093
8100
|
if (!options.all) {
|
|
@@ -8111,10 +8118,10 @@ var getAllSync = ([, stdout, stderr], options) => {
|
|
|
8111
8118
|
return `${stdout}${stderr}`;
|
|
8112
8119
|
};
|
|
8113
8120
|
|
|
8114
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8121
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/exit-sync.js
|
|
8115
8122
|
init_cjs_shims();
|
|
8116
8123
|
|
|
8117
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8124
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/exit-async.js
|
|
8118
8125
|
init_cjs_shims();
|
|
8119
8126
|
|
|
8120
8127
|
var waitForExit = async (subprocess, context) => {
|
|
@@ -8135,7 +8142,7 @@ var waitForExitOrError = async (subprocess) => {
|
|
|
8135
8142
|
var waitForSubprocessExit = async (subprocess) => {
|
|
8136
8143
|
try {
|
|
8137
8144
|
return await _events.once.call(void 0, subprocess, "exit");
|
|
8138
|
-
} catch (
|
|
8145
|
+
} catch (e4) {
|
|
8139
8146
|
return waitForSubprocessExit(subprocess);
|
|
8140
8147
|
}
|
|
8141
8148
|
};
|
|
@@ -8149,7 +8156,7 @@ var waitForSuccessfulExit = async (exitPromise) => {
|
|
|
8149
8156
|
var isSubprocessErrorExit = (exitCode, signal) => exitCode === void 0 && signal === void 0;
|
|
8150
8157
|
var isFailedExit = (exitCode, signal) => exitCode !== 0 || signal !== null;
|
|
8151
8158
|
|
|
8152
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8159
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/exit-sync.js
|
|
8153
8160
|
var getExitResultSync = ({ error, status: exitCode, signal, output }, { maxBuffer }) => {
|
|
8154
8161
|
const resultError = getResultError(error, exitCode, signal);
|
|
8155
8162
|
const timedOut = _optionalChain([resultError, 'optionalAccess', _30 => _30.code]) === "ETIMEDOUT";
|
|
@@ -8169,7 +8176,7 @@ var getResultError = (error, exitCode, signal) => {
|
|
|
8169
8176
|
return isFailedExit(exitCode, signal) ? new DiscardedError() : void 0;
|
|
8170
8177
|
};
|
|
8171
8178
|
|
|
8172
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8179
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/main-sync.js
|
|
8173
8180
|
var execaCoreSync = (rawFile, rawArguments, rawOptions) => {
|
|
8174
8181
|
const { file, commandArguments, command, escapedCommand, startTime, verboseInfo, options, fileDescriptors } = handleSyncArguments(rawFile, rawArguments, rawOptions);
|
|
8175
8182
|
const result = spawnSubprocessSync({
|
|
@@ -8301,16 +8308,16 @@ var getSyncResult = ({ error, exitCode, signal, timedOut, isMaxBuffer, stdio, al
|
|
|
8301
8308
|
isSync: true
|
|
8302
8309
|
});
|
|
8303
8310
|
|
|
8304
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8311
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/main-async.js
|
|
8305
8312
|
init_cjs_shims();
|
|
8306
8313
|
|
|
8307
8314
|
|
|
8308
8315
|
|
|
8309
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8316
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/methods.js
|
|
8310
8317
|
init_cjs_shims();
|
|
8311
8318
|
|
|
8312
8319
|
|
|
8313
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8320
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/get-one.js
|
|
8314
8321
|
init_cjs_shims();
|
|
8315
8322
|
|
|
8316
8323
|
var getOneMessage = ({ anyProcess, channel, isSubprocess, ipc }, { reference = true, filter } = {}) => {
|
|
@@ -8366,7 +8373,7 @@ var throwOnStrictError = async (ipcEmitter, isSubprocess, { signal }) => {
|
|
|
8366
8373
|
throw getStrictResponseError(error, isSubprocess);
|
|
8367
8374
|
};
|
|
8368
8375
|
|
|
8369
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8376
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/get-each.js
|
|
8370
8377
|
init_cjs_shims();
|
|
8371
8378
|
|
|
8372
8379
|
var getEachMessage = ({ anyProcess, channel, isSubprocess, ipc }, { reference = true } = {}) => loopOnMessages({
|
|
@@ -8410,7 +8417,7 @@ var stopOnDisconnect = async (anyProcess, ipcEmitter, controller) => {
|
|
|
8410
8417
|
try {
|
|
8411
8418
|
await _events.once.call(void 0, ipcEmitter, "disconnect", { signal: controller.signal });
|
|
8412
8419
|
controller.abort();
|
|
8413
|
-
} catch (
|
|
8420
|
+
} catch (e5) {
|
|
8414
8421
|
}
|
|
8415
8422
|
};
|
|
8416
8423
|
var abortOnStrictError = async ({ ipcEmitter, isSubprocess, controller, state }) => {
|
|
@@ -8418,7 +8425,7 @@ var abortOnStrictError = async ({ ipcEmitter, isSubprocess, controller, state })
|
|
|
8418
8425
|
const [error] = await _events.once.call(void 0, ipcEmitter, "strict:error", { signal: controller.signal });
|
|
8419
8426
|
state.error = getStrictResponseError(error, isSubprocess);
|
|
8420
8427
|
controller.abort();
|
|
8421
|
-
} catch (
|
|
8428
|
+
} catch (e6) {
|
|
8422
8429
|
}
|
|
8423
8430
|
};
|
|
8424
8431
|
var iterateOnMessages = async function* ({ anyProcess, channel, ipcEmitter, isSubprocess, shouldAwait, controller, state, reference }) {
|
|
@@ -8427,7 +8434,7 @@ var iterateOnMessages = async function* ({ anyProcess, channel, ipcEmitter, isSu
|
|
|
8427
8434
|
throwIfStrictError(state);
|
|
8428
8435
|
yield message;
|
|
8429
8436
|
}
|
|
8430
|
-
} catch (
|
|
8437
|
+
} catch (e7) {
|
|
8431
8438
|
throwIfStrictError(state);
|
|
8432
8439
|
} finally {
|
|
8433
8440
|
controller.abort();
|
|
@@ -8446,7 +8453,7 @@ var throwIfStrictError = ({ error }) => {
|
|
|
8446
8453
|
}
|
|
8447
8454
|
};
|
|
8448
8455
|
|
|
8449
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8456
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/methods.js
|
|
8450
8457
|
var addIpcMethods = (subprocess, { ipc }) => {
|
|
8451
8458
|
Object.assign(subprocess, getIpcMethods(subprocess, false, ipc));
|
|
8452
8459
|
};
|
|
@@ -8485,7 +8492,7 @@ var getIpcMethods = (anyProcess, isSubprocess, ipc) => ({
|
|
|
8485
8492
|
})
|
|
8486
8493
|
});
|
|
8487
8494
|
|
|
8488
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8495
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/early-error.js
|
|
8489
8496
|
init_cjs_shims();
|
|
8490
8497
|
|
|
8491
8498
|
|
|
@@ -8540,7 +8547,7 @@ var duplex = () => new (0, _stream2.Duplex)({ read() {
|
|
|
8540
8547
|
} });
|
|
8541
8548
|
var handleDummyPromise = async (error, verboseInfo, options) => handleResult(error, verboseInfo, options);
|
|
8542
8549
|
|
|
8543
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8550
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/stdio/handle-async.js
|
|
8544
8551
|
init_cjs_shims();
|
|
8545
8552
|
|
|
8546
8553
|
|
|
@@ -8586,7 +8593,7 @@ var addPropertiesAsync = {
|
|
|
8586
8593
|
}
|
|
8587
8594
|
};
|
|
8588
8595
|
|
|
8589
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8596
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/output-async.js
|
|
8590
8597
|
init_cjs_shims();
|
|
8591
8598
|
|
|
8592
8599
|
// ../../node_modules/.pnpm/@sindresorhus+merge-streams@4.0.0/node_modules/@sindresorhus/merge-streams/index.js
|
|
@@ -8817,7 +8824,7 @@ var updateMaxListeners = (passThroughStream, increment2) => {
|
|
|
8817
8824
|
var PASSTHROUGH_LISTENERS_COUNT = 2;
|
|
8818
8825
|
var PASSTHROUGH_LISTENERS_PER_STREAM = 1;
|
|
8819
8826
|
|
|
8820
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8827
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/pipeline.js
|
|
8821
8828
|
init_cjs_shims();
|
|
8822
8829
|
|
|
8823
8830
|
var pipeStreams = (source, destination) => {
|
|
@@ -8831,7 +8838,7 @@ var onSourceFinish = async (source, destination) => {
|
|
|
8831
8838
|
}
|
|
8832
8839
|
try {
|
|
8833
8840
|
await _promises3.finished.call(void 0, source, { cleanup: true, readable: true, writable: false });
|
|
8834
|
-
} catch (
|
|
8841
|
+
} catch (e8) {
|
|
8835
8842
|
}
|
|
8836
8843
|
endDestinationStream(destination);
|
|
8837
8844
|
};
|
|
@@ -8846,7 +8853,7 @@ var onDestinationFinish = async (source, destination) => {
|
|
|
8846
8853
|
}
|
|
8847
8854
|
try {
|
|
8848
8855
|
await _promises3.finished.call(void 0, destination, { cleanup: true, readable: false, writable: true });
|
|
8849
|
-
} catch (
|
|
8856
|
+
} catch (e9) {
|
|
8850
8857
|
}
|
|
8851
8858
|
abortSourceStream(source);
|
|
8852
8859
|
};
|
|
@@ -8856,7 +8863,7 @@ var abortSourceStream = (source) => {
|
|
|
8856
8863
|
}
|
|
8857
8864
|
};
|
|
8858
8865
|
|
|
8859
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8866
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/output-async.js
|
|
8860
8867
|
var pipeOutputAsync = (subprocess, fileDescriptors, controller) => {
|
|
8861
8868
|
const pipeGroups = /* @__PURE__ */ new Map();
|
|
8862
8869
|
for (const [fdNumber, { stdioItems, direction }] of Object.entries(fileDescriptors)) {
|
|
@@ -8908,7 +8915,7 @@ var setStandardStreamMaxListeners = (stream, { signal }) => {
|
|
|
8908
8915
|
};
|
|
8909
8916
|
var MAX_LISTENERS_INCREMENT = 2;
|
|
8910
8917
|
|
|
8911
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
8918
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cleanup.js
|
|
8912
8919
|
init_cjs_shims();
|
|
8913
8920
|
|
|
8914
8921
|
|
|
@@ -9177,7 +9184,7 @@ var {
|
|
|
9177
9184
|
unload
|
|
9178
9185
|
} = signalExitWrap(processOk(process15) ? new SignalExit(process15) : new SignalExitFallback());
|
|
9179
9186
|
|
|
9180
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9187
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cleanup.js
|
|
9181
9188
|
var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
|
|
9182
9189
|
if (!cleanup || detached) {
|
|
9183
9190
|
return;
|
|
@@ -9190,10 +9197,10 @@ var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
|
|
|
9190
9197
|
});
|
|
9191
9198
|
};
|
|
9192
9199
|
|
|
9193
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9200
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/setup.js
|
|
9194
9201
|
init_cjs_shims();
|
|
9195
9202
|
|
|
9196
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9203
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/pipe-arguments.js
|
|
9197
9204
|
init_cjs_shims();
|
|
9198
9205
|
var normalizePipeArguments = ({ source, sourcePromise, boundOptions, createNested }, ...pipeArguments) => {
|
|
9199
9206
|
const startTime = getStartTime();
|
|
@@ -9267,7 +9274,7 @@ var getSourceStream = (source, from) => {
|
|
|
9267
9274
|
}
|
|
9268
9275
|
};
|
|
9269
9276
|
|
|
9270
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9277
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/throw.js
|
|
9271
9278
|
init_cjs_shims();
|
|
9272
9279
|
var handlePipeArgumentsError = ({
|
|
9273
9280
|
sourceStream,
|
|
@@ -9317,7 +9324,7 @@ var createNonCommandError = ({ error, fileDescriptors, sourceOptions, startTime
|
|
|
9317
9324
|
});
|
|
9318
9325
|
var PIPE_COMMAND_MESSAGE = "source.pipe(destination)";
|
|
9319
9326
|
|
|
9320
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9327
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/sequence.js
|
|
9321
9328
|
init_cjs_shims();
|
|
9322
9329
|
var waitForBothSubprocesses = async (subprocessPromises) => {
|
|
9323
9330
|
const [
|
|
@@ -9336,7 +9343,7 @@ var waitForBothSubprocesses = async (subprocessPromises) => {
|
|
|
9336
9343
|
return destinationResult;
|
|
9337
9344
|
};
|
|
9338
9345
|
|
|
9339
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9346
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/streaming.js
|
|
9340
9347
|
init_cjs_shims();
|
|
9341
9348
|
|
|
9342
9349
|
var pipeSubprocessStream = (sourceStream, destinationStream, maxListenersController) => {
|
|
@@ -9360,7 +9367,7 @@ var pipeMoreSubprocessStream = (sourceStream, destinationStream) => {
|
|
|
9360
9367
|
var cleanupMergedStreamsMap = async (destinationStream) => {
|
|
9361
9368
|
try {
|
|
9362
9369
|
await _promises3.finished.call(void 0, destinationStream, { cleanup: true, readable: false, writable: true });
|
|
9363
|
-
} catch (
|
|
9370
|
+
} catch (e10) {
|
|
9364
9371
|
}
|
|
9365
9372
|
MERGED_STREAMS.delete(destinationStream);
|
|
9366
9373
|
};
|
|
@@ -9368,7 +9375,7 @@ var MERGED_STREAMS = /* @__PURE__ */ new WeakMap();
|
|
|
9368
9375
|
var SOURCE_LISTENERS_PER_PIPE = 2;
|
|
9369
9376
|
var DESTINATION_LISTENERS_PER_PIPE = 1;
|
|
9370
9377
|
|
|
9371
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9378
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/abort.js
|
|
9372
9379
|
init_cjs_shims();
|
|
9373
9380
|
|
|
9374
9381
|
var unpipeOnAbort = (unpipeSignal, unpipeContext) => unpipeSignal === void 0 ? [] : [unpipeOnSignalAbort(unpipeSignal, unpipeContext)];
|
|
@@ -9384,7 +9391,7 @@ var unpipeOnSignalAbort = async (unpipeSignal, { sourceStream, mergedStream, fil
|
|
|
9384
9391
|
});
|
|
9385
9392
|
};
|
|
9386
9393
|
|
|
9387
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9394
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/pipe/setup.js
|
|
9388
9395
|
var pipeToSubprocess = (sourceInfo, ...pipeArguments) => {
|
|
9389
9396
|
if (isPlainObject(pipeArguments[0])) {
|
|
9390
9397
|
return pipeToSubprocess.bind(void 0, {
|
|
@@ -9443,17 +9450,17 @@ var handlePipePromise = async ({
|
|
|
9443
9450
|
};
|
|
9444
9451
|
var getSubprocessPromises = (sourcePromise, destination) => Promise.allSettled([sourcePromise, destination]);
|
|
9445
9452
|
|
|
9446
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9453
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/all-async.js
|
|
9447
9454
|
init_cjs_shims();
|
|
9448
9455
|
|
|
9449
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9456
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/stdio.js
|
|
9450
9457
|
init_cjs_shims();
|
|
9451
9458
|
|
|
9452
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9459
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/contents.js
|
|
9453
9460
|
init_cjs_shims();
|
|
9454
9461
|
|
|
9455
9462
|
|
|
9456
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9463
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/iterate.js
|
|
9457
9464
|
init_cjs_shims();
|
|
9458
9465
|
|
|
9459
9466
|
|
|
@@ -9473,7 +9480,7 @@ var iterateOnSubprocessStream = ({ subprocessStdout, subprocess, binary, shouldE
|
|
|
9473
9480
|
var stopReadingOnExit = async (subprocess, controller) => {
|
|
9474
9481
|
try {
|
|
9475
9482
|
await subprocess;
|
|
9476
|
-
} catch (
|
|
9483
|
+
} catch (e11) {
|
|
9477
9484
|
} finally {
|
|
9478
9485
|
controller.abort();
|
|
9479
9486
|
}
|
|
@@ -9495,7 +9502,7 @@ var iterateForResult = ({ stream, onStreamEnd, lines, encoding, stripFinalNewlin
|
|
|
9495
9502
|
var stopReadingOnStreamEnd = async (onStreamEnd, controller, stream) => {
|
|
9496
9503
|
try {
|
|
9497
9504
|
await onStreamEnd;
|
|
9498
|
-
} catch (
|
|
9505
|
+
} catch (e12) {
|
|
9499
9506
|
stream.destroy();
|
|
9500
9507
|
} finally {
|
|
9501
9508
|
controller.abort();
|
|
@@ -9547,7 +9554,7 @@ var getGenerators = ({ binary, shouldEncode, encoding, shouldSplit, preserveNewl
|
|
|
9547
9554
|
getSplitLinesGenerator(binary, preserveNewlines, !shouldSplit, {})
|
|
9548
9555
|
].filter(Boolean);
|
|
9549
9556
|
|
|
9550
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9557
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/contents.js
|
|
9551
9558
|
var getStreamOutput = async ({ stream, onStreamEnd, fdNumber, encoding, buffer, maxBuffer, lines, allMixed, stripFinalNewline: stripFinalNewline2, verboseInfo, streamInfo }) => {
|
|
9552
9559
|
const logPromise = logOutputAsync({
|
|
9553
9560
|
stream,
|
|
@@ -9638,7 +9645,7 @@ var getBufferedData = async (streamPromise) => {
|
|
|
9638
9645
|
};
|
|
9639
9646
|
var handleBufferedData = ({ bufferedData }) => isArrayBuffer(bufferedData) ? new Uint8Array(bufferedData) : bufferedData;
|
|
9640
9647
|
|
|
9641
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9648
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/wait-stream.js
|
|
9642
9649
|
init_cjs_shims();
|
|
9643
9650
|
|
|
9644
9651
|
var waitForStream = async (stream, fdNumber, streamInfo, { isSameDirection, stopOnExit = false } = {}) => {
|
|
@@ -9692,7 +9699,7 @@ var isInputFileDescriptor = ({ fileDescriptors }, fdNumber) => fdNumber !== "all
|
|
|
9692
9699
|
var isStreamAbort = (error) => _optionalChain([error, 'optionalAccess', _36 => _36.code]) === "ERR_STREAM_PREMATURE_CLOSE";
|
|
9693
9700
|
var isStreamEpipe = (error) => _optionalChain([error, 'optionalAccess', _37 => _37.code]) === "EPIPE";
|
|
9694
9701
|
|
|
9695
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9702
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/stdio.js
|
|
9696
9703
|
var waitForStdioStreams = ({ subprocess, encoding, buffer, maxBuffer, lines, stripFinalNewline: stripFinalNewline2, verboseInfo, streamInfo }) => subprocess.stdio.map((stream, fdNumber) => waitForSubprocessStream({
|
|
9697
9704
|
stream,
|
|
9698
9705
|
fdNumber,
|
|
@@ -9733,7 +9740,7 @@ var waitForSubprocessStream = async ({ stream, fdNumber, encoding, buffer, maxBu
|
|
|
9733
9740
|
return output;
|
|
9734
9741
|
};
|
|
9735
9742
|
|
|
9736
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9743
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/all-async.js
|
|
9737
9744
|
var makeAllStream = ({ stdout, stderr }, { all }) => all && (stdout || stderr) ? mergeStreams([stdout, stderr].filter(Boolean)) : void 0;
|
|
9738
9745
|
var waitForAllStream = ({ subprocess, encoding, buffer, maxBuffer, lines, stripFinalNewline: stripFinalNewline2, verboseInfo, streamInfo }) => waitForSubprocessStream({
|
|
9739
9746
|
...getAllStream(subprocess, buffer),
|
|
@@ -9761,14 +9768,14 @@ var getAllStream = ({ stdout, stderr, all }, [, bufferStdout, bufferStderr]) =>
|
|
|
9761
9768
|
};
|
|
9762
9769
|
var getAllMixed = ({ all, stdout, stderr }) => all && stdout && stderr && stdout.readableObjectMode !== stderr.readableObjectMode;
|
|
9763
9770
|
|
|
9764
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9771
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/wait-subprocess.js
|
|
9765
9772
|
init_cjs_shims();
|
|
9766
9773
|
|
|
9767
9774
|
|
|
9768
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9775
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/buffer-messages.js
|
|
9769
9776
|
init_cjs_shims();
|
|
9770
9777
|
|
|
9771
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9778
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/verbose/ipc.js
|
|
9772
9779
|
init_cjs_shims();
|
|
9773
9780
|
var shouldLogIpc = (verboseInfo) => isFullVerbose(verboseInfo, "ipc");
|
|
9774
9781
|
var logIpcOutput = (message, verboseInfo) => {
|
|
@@ -9781,7 +9788,7 @@ var logIpcOutput = (message, verboseInfo) => {
|
|
|
9781
9788
|
});
|
|
9782
9789
|
};
|
|
9783
9790
|
|
|
9784
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9791
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/ipc/buffer-messages.js
|
|
9785
9792
|
var waitForIpcOutput = async ({
|
|
9786
9793
|
subprocess,
|
|
9787
9794
|
buffer: bufferArray,
|
|
@@ -9819,7 +9826,7 @@ var getBufferedIpcOutput = async (ipcOutputPromise, ipcOutput) => {
|
|
|
9819
9826
|
return ipcOutput;
|
|
9820
9827
|
};
|
|
9821
9828
|
|
|
9822
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9829
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/wait-subprocess.js
|
|
9823
9830
|
var waitForSubprocessResult = async ({
|
|
9824
9831
|
subprocess,
|
|
9825
9832
|
options: {
|
|
@@ -9935,10 +9942,10 @@ var throwOnSubprocessError = async (subprocess, { signal }) => {
|
|
|
9935
9942
|
throw error;
|
|
9936
9943
|
};
|
|
9937
9944
|
|
|
9938
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9945
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/add.js
|
|
9939
9946
|
init_cjs_shims();
|
|
9940
9947
|
|
|
9941
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9948
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/concurrent.js
|
|
9942
9949
|
init_cjs_shims();
|
|
9943
9950
|
var initializeConcurrentStreams = () => ({
|
|
9944
9951
|
readableDestroy: /* @__PURE__ */ new WeakMap(),
|
|
@@ -9953,11 +9960,11 @@ var addConcurrentStream = (concurrentStreams, stream, waitName) => {
|
|
|
9953
9960
|
const promises = weakMap.get(stream);
|
|
9954
9961
|
const promise = createDeferred();
|
|
9955
9962
|
promises.push(promise);
|
|
9956
|
-
const
|
|
9957
|
-
return { resolve:
|
|
9963
|
+
const resolve2 = promise.resolve.bind(promise);
|
|
9964
|
+
return { resolve: resolve2, promises };
|
|
9958
9965
|
};
|
|
9959
|
-
var waitForConcurrentStreams = async ({ resolve:
|
|
9960
|
-
|
|
9966
|
+
var waitForConcurrentStreams = async ({ resolve: resolve2, promises }, subprocess) => {
|
|
9967
|
+
resolve2();
|
|
9961
9968
|
const [isSubprocessExit] = await Promise.race([
|
|
9962
9969
|
Promise.allSettled([true, subprocess]),
|
|
9963
9970
|
Promise.all([false, ...promises])
|
|
@@ -9965,12 +9972,12 @@ var waitForConcurrentStreams = async ({ resolve: resolve4, promises }, subproces
|
|
|
9965
9972
|
return !isSubprocessExit;
|
|
9966
9973
|
};
|
|
9967
9974
|
|
|
9968
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9975
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/readable.js
|
|
9969
9976
|
init_cjs_shims();
|
|
9970
9977
|
|
|
9971
9978
|
|
|
9972
9979
|
|
|
9973
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
9980
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/shared.js
|
|
9974
9981
|
init_cjs_shims();
|
|
9975
9982
|
|
|
9976
9983
|
var safeWaitForSubprocessStdin = async (subprocessStdin) => {
|
|
@@ -9979,7 +9986,7 @@ var safeWaitForSubprocessStdin = async (subprocessStdin) => {
|
|
|
9979
9986
|
}
|
|
9980
9987
|
try {
|
|
9981
9988
|
await waitForSubprocessStdin(subprocessStdin);
|
|
9982
|
-
} catch (
|
|
9989
|
+
} catch (e13) {
|
|
9983
9990
|
}
|
|
9984
9991
|
};
|
|
9985
9992
|
var safeWaitForSubprocessStdout = async (subprocessStdout) => {
|
|
@@ -9988,7 +9995,7 @@ var safeWaitForSubprocessStdout = async (subprocessStdout) => {
|
|
|
9988
9995
|
}
|
|
9989
9996
|
try {
|
|
9990
9997
|
await waitForSubprocessStdout(subprocessStdout);
|
|
9991
|
-
} catch (
|
|
9998
|
+
} catch (e14) {
|
|
9992
9999
|
}
|
|
9993
10000
|
};
|
|
9994
10001
|
var waitForSubprocessStdin = async (subprocessStdin) => {
|
|
@@ -10011,7 +10018,7 @@ var destroyOtherStream = (stream, isOpen, error) => {
|
|
|
10011
10018
|
}
|
|
10012
10019
|
};
|
|
10013
10020
|
|
|
10014
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10021
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/readable.js
|
|
10015
10022
|
var createReadable = ({ subprocess, concurrentStreams, encoding }, { from, binary: binaryOption = true, preserveNewlines = true } = {}) => {
|
|
10016
10023
|
const binary = binaryOption || BINARY_ENCODINGS.has(encoding);
|
|
10017
10024
|
const { subprocessStdout, waitReadableDestroy } = getSubprocessStdout(subprocess, from, concurrentStreams);
|
|
@@ -10069,7 +10076,7 @@ var onRead = async (readable2, onStdoutData, onStdoutDataDone) => {
|
|
|
10069
10076
|
} else {
|
|
10070
10077
|
readable2.push(value);
|
|
10071
10078
|
}
|
|
10072
|
-
} catch (
|
|
10079
|
+
} catch (e15) {
|
|
10073
10080
|
}
|
|
10074
10081
|
};
|
|
10075
10082
|
var onStdoutFinished = async ({ subprocessStdout, onStdoutDataDone, readable: readable2, subprocess, subprocessStdin }) => {
|
|
@@ -10096,7 +10103,7 @@ var destroyOtherReadable = (stream, error) => {
|
|
|
10096
10103
|
destroyOtherStream(stream, stream.readable, error);
|
|
10097
10104
|
};
|
|
10098
10105
|
|
|
10099
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10106
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/writable.js
|
|
10100
10107
|
init_cjs_shims();
|
|
10101
10108
|
|
|
10102
10109
|
|
|
@@ -10163,7 +10170,7 @@ var destroyOtherWritable = (stream, error) => {
|
|
|
10163
10170
|
destroyOtherStream(stream, stream.writable, error);
|
|
10164
10171
|
};
|
|
10165
10172
|
|
|
10166
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10173
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/duplex.js
|
|
10167
10174
|
init_cjs_shims();
|
|
10168
10175
|
|
|
10169
10176
|
|
|
@@ -10218,7 +10225,7 @@ var onDuplexDestroy = async ({ subprocessStdout, subprocessStdin, subprocess, wa
|
|
|
10218
10225
|
]);
|
|
10219
10226
|
};
|
|
10220
10227
|
|
|
10221
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10228
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/iterable.js
|
|
10222
10229
|
init_cjs_shims();
|
|
10223
10230
|
var createIterable = (subprocess, encoding, {
|
|
10224
10231
|
from,
|
|
@@ -10248,7 +10255,7 @@ var iterateOnStdoutData = async function* (onStdoutData, subprocessStdout, subpr
|
|
|
10248
10255
|
}
|
|
10249
10256
|
};
|
|
10250
10257
|
|
|
10251
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10258
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/convert/add.js
|
|
10252
10259
|
var addConvertedStreams = (subprocess, { encoding }) => {
|
|
10253
10260
|
const concurrentStreams = initializeConcurrentStreams();
|
|
10254
10261
|
subprocess.readable = createReadable.bind(void 0, { subprocess, concurrentStreams, encoding });
|
|
@@ -10258,7 +10265,7 @@ var addConvertedStreams = (subprocess, { encoding }) => {
|
|
|
10258
10265
|
subprocess[Symbol.asyncIterator] = createIterable.bind(void 0, subprocess, encoding, {});
|
|
10259
10266
|
};
|
|
10260
10267
|
|
|
10261
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10268
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/promise.js
|
|
10262
10269
|
init_cjs_shims();
|
|
10263
10270
|
var mergePromise = (subprocess, promise) => {
|
|
10264
10271
|
for (const [property, descriptor] of descriptors) {
|
|
@@ -10273,7 +10280,7 @@ var descriptors = ["then", "catch", "finally"].map((property) => [
|
|
|
10273
10280
|
Reflect.getOwnPropertyDescriptor(nativePromisePrototype, property)
|
|
10274
10281
|
]);
|
|
10275
10282
|
|
|
10276
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10283
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/main-async.js
|
|
10277
10284
|
var execaCoreAsync = (rawFile, rawArguments, rawOptions, createNested) => {
|
|
10278
10285
|
const { file, commandArguments, command, escapedCommand, startTime, verboseInfo, options, fileDescriptors } = handleAsyncArguments(rawFile, rawArguments, rawOptions);
|
|
10279
10286
|
const { subprocess, promise } = spawnSubprocessAsync({
|
|
@@ -10428,7 +10435,7 @@ var getAsyncResult = ({ errorInfo, exitCode, signal, stdio, all, ipcOutput, cont
|
|
|
10428
10435
|
startTime
|
|
10429
10436
|
});
|
|
10430
10437
|
|
|
10431
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10438
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/bind.js
|
|
10432
10439
|
init_cjs_shims();
|
|
10433
10440
|
var mergeOptions = (boundOptions, options) => {
|
|
10434
10441
|
const newOptions = Object.fromEntries(
|
|
@@ -10447,7 +10454,7 @@ var mergeOption = (optionName, boundOptionValue, optionValue) => {
|
|
|
10447
10454
|
};
|
|
10448
10455
|
var DEEP_OPTIONS = /* @__PURE__ */ new Set(["env", ...FD_SPECIFIC_OPTIONS]);
|
|
10449
10456
|
|
|
10450
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10457
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/create.js
|
|
10451
10458
|
var createExeca = (mapArguments, boundOptions, deepOptions, setBoundExeca) => {
|
|
10452
10459
|
const createNested = (mapArguments2, boundOptions2, setBoundExeca2) => createExeca(mapArguments2, boundOptions2, deepOptions, setBoundExeca2);
|
|
10453
10460
|
const boundExeca = (...execaArguments) => callBoundExeca({
|
|
@@ -10493,7 +10500,7 @@ var parseArguments = ({ mapArguments, firstArgument, nextArguments, deepOptions,
|
|
|
10493
10500
|
};
|
|
10494
10501
|
};
|
|
10495
10502
|
|
|
10496
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10503
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/command.js
|
|
10497
10504
|
init_cjs_shims();
|
|
10498
10505
|
var mapCommandAsync = ({ file, commandArguments }) => parseCommand(file, commandArguments);
|
|
10499
10506
|
var mapCommandSync = ({ file, commandArguments }) => ({ ...parseCommand(file, commandArguments), isSync: true });
|
|
@@ -10525,7 +10532,7 @@ var parseCommandString = (command) => {
|
|
|
10525
10532
|
};
|
|
10526
10533
|
var SPACES_REGEXP = / +/g;
|
|
10527
10534
|
|
|
10528
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10535
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/script.js
|
|
10529
10536
|
init_cjs_shims();
|
|
10530
10537
|
var setScriptSync = (boundExeca, createNested, boundOptions) => {
|
|
10531
10538
|
boundExeca.sync = createNested(mapScriptSync, boundOptions);
|
|
@@ -10537,7 +10544,7 @@ var getScriptOptions = (options) => ({ options: { ...getScriptStdinOption(option
|
|
|
10537
10544
|
var getScriptStdinOption = ({ input, inputFile, stdio }) => input === void 0 && inputFile === void 0 && stdio === void 0 ? { stdin: "inherit" } : {};
|
|
10538
10545
|
var deepScriptOptions = { preferLocal: true };
|
|
10539
10546
|
|
|
10540
|
-
// ../../node_modules/.pnpm/execa@9.3.
|
|
10547
|
+
// ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/index.js
|
|
10541
10548
|
var execa = createExeca(() => ({}));
|
|
10542
10549
|
var execaSync = createExeca(() => ({ isSync: true }));
|
|
10543
10550
|
var execaCommand = createExeca(mapCommandAsync);
|
|
@@ -10706,13 +10713,13 @@ async function writeLog(data) {
|
|
|
10706
10713
|
if (data.trim() === "") {
|
|
10707
10714
|
return void 0;
|
|
10708
10715
|
}
|
|
10709
|
-
const
|
|
10716
|
+
const path6 = _path.resolve.call(void 0, process.cwd(), "kubb-log.log");
|
|
10710
10717
|
let previousLogs = "";
|
|
10711
10718
|
try {
|
|
10712
|
-
previousLogs = await _fs3.read.call(void 0, _path.resolve.call(void 0,
|
|
10719
|
+
previousLogs = await _fs3.read.call(void 0, _path.resolve.call(void 0, path6));
|
|
10713
10720
|
} catch (_err) {
|
|
10714
10721
|
}
|
|
10715
|
-
return _fs3.write.call(void 0,
|
|
10722
|
+
return _fs3.write.call(void 0, path6, [previousLogs, data.trim()].filter(Boolean).join("\n\n\n"), { sanity: false });
|
|
10716
10723
|
}
|
|
10717
10724
|
|
|
10718
10725
|
// src/generate.ts
|
|
@@ -10801,4 +10808,4 @@ async function generate({ input, config, args }) {
|
|
|
10801
10808
|
|
|
10802
10809
|
|
|
10803
10810
|
exports.init_cjs_shims = init_cjs_shims; exports.p = p2; exports.spinner = spinner; exports.execa = execa; exports.generate = generate;
|
|
10804
|
-
//# sourceMappingURL=chunk-
|
|
10811
|
+
//# sourceMappingURL=chunk-NKSXZ2SM.cjs.map
|