routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+83
@@ -0,0 +1,83 @@
|
||||
isexe:2.0.0 -- The ISC License
|
||||
|
||||
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
which:2.0.2 -- The ISC License
|
||||
|
||||
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
path-key:3.1.1 -- MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
cross-spawn:7.0.6 -- The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
shebang-regex:3.0.0 -- MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
shebang-command:2.0.0 -- MIT License
|
||||
|
||||
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
+82
@@ -0,0 +1,82 @@
|
||||
import { ChildProcess, SpawnOptions, SpawnSyncOptions } from "node:child_process";
|
||||
import { Readable } from "node:stream";
|
||||
|
||||
//#region src/non-zero-exit-error.d.ts
|
||||
declare class NonZeroExitError extends Error {
|
||||
readonly result: CommonOutputApi;
|
||||
readonly output?: Output | undefined;
|
||||
get exitCode(): number | undefined;
|
||||
constructor(result: CommonOutputApi, output?: Output | undefined);
|
||||
}
|
||||
//#endregion
|
||||
//#region src/main.d.ts
|
||||
interface Output {
|
||||
stderr: string;
|
||||
stdout: string;
|
||||
exitCode: number | undefined;
|
||||
}
|
||||
interface PipeOptions extends Options {}
|
||||
type KillSignal = Parameters<ChildProcess['kill']>[0];
|
||||
interface CommonOutputApi {
|
||||
get pid(): number | undefined;
|
||||
get killed(): boolean;
|
||||
get exitCode(): number | undefined;
|
||||
}
|
||||
interface OutputApi extends AsyncIterable<string>, CommonOutputApi {
|
||||
process: ChildProcess | undefined;
|
||||
get aborted(): boolean;
|
||||
pipe(command: string, args?: string[], options?: Partial<PipeOptions>): Result;
|
||||
kill(signal?: KillSignal): boolean;
|
||||
}
|
||||
interface OutputApiSync extends Iterable<string>, CommonOutputApi {}
|
||||
type Result = PromiseLike<Output> & OutputApi;
|
||||
type SyncResult = Output & OutputApiSync;
|
||||
interface CommonOptions {
|
||||
timeout: number;
|
||||
throwOnError: boolean;
|
||||
}
|
||||
interface Options extends CommonOptions {
|
||||
signal: AbortSignal;
|
||||
nodeOptions: SpawnOptions;
|
||||
persist: boolean;
|
||||
stdin: Result | ExecProcess | string;
|
||||
}
|
||||
interface SyncOptions extends CommonOptions {
|
||||
nodeOptions: SpawnSyncOptions;
|
||||
}
|
||||
interface TinyExec {
|
||||
(command: string, args?: string[], options?: Partial<Options>): Result;
|
||||
}
|
||||
declare class ExecProcess implements Result {
|
||||
protected _process?: ChildProcess;
|
||||
protected _aborted: boolean;
|
||||
protected _options: Partial<Options>;
|
||||
protected _command: string;
|
||||
protected _args: string[];
|
||||
protected _resolveClose?: () => void;
|
||||
protected _processClosed: Promise<void>;
|
||||
protected _thrownError?: Error;
|
||||
get process(): ChildProcess | undefined;
|
||||
get pid(): number | undefined;
|
||||
get exitCode(): number | undefined;
|
||||
constructor(command: string, args?: string[], options?: Partial<Options>);
|
||||
kill(signal?: KillSignal): boolean;
|
||||
get aborted(): boolean;
|
||||
get killed(): boolean;
|
||||
pipe(command: string, args?: string[], options?: Partial<PipeOptions>): Result;
|
||||
[Symbol.asyncIterator](): AsyncIterator<string>;
|
||||
protected _waitForOutput(): Promise<Output>;
|
||||
then<TResult1 = Output, TResult2 = never>(onfulfilled?: ((value: Output) => TResult1 | PromiseLike<TResult1>) | null, onrejected?: ((reason: unknown) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
||||
protected _streamOut?: Readable;
|
||||
protected _streamErr?: Readable;
|
||||
spawn(): void;
|
||||
protected _resetState(): void;
|
||||
protected _onError: (err: Error) => void;
|
||||
protected _onClose: () => void;
|
||||
}
|
||||
declare function xSync(command: string, args?: string[], options?: Partial<SyncOptions>): SyncResult;
|
||||
declare const x: TinyExec;
|
||||
declare const exec: TinyExec;
|
||||
declare const execSync: typeof xSync;
|
||||
//#endregion
|
||||
export { CommonOptions, CommonOutputApi, ExecProcess, KillSignal, NonZeroExitError, Options, Output, OutputApi, OutputApiSync, PipeOptions, Result, SyncOptions, SyncResult, TinyExec, exec, execSync, x, xSync };
|
||||
+690
@@ -0,0 +1,690 @@
|
||||
import { createRequire as e } from "node:module";
|
||||
import { spawn as t, spawnSync as n } from "node:child_process";
|
||||
import { delimiter as r, dirname as i, normalize as a, resolve as o } from "node:path";
|
||||
import { cwd as s } from "node:process";
|
||||
import { pipeline as c } from "node:stream/promises";
|
||||
import { PassThrough as l } from "node:stream";
|
||||
import u from "node:readline";
|
||||
//#region \0rolldown/runtime.js
|
||||
var d = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports);
|
||||
var f = /* @__PURE__ */ e(import.meta.url);
|
||||
//#endregion
|
||||
//#region src/env.ts
|
||||
const p = /^path$/i;
|
||||
const m = {
|
||||
key: "PATH",
|
||||
value: ""
|
||||
};
|
||||
function h(e) {
|
||||
for (const t in e) {
|
||||
if (!Object.prototype.hasOwnProperty.call(e, t) || !p.test(t)) continue;
|
||||
const n = e[t];
|
||||
if (!n) return m;
|
||||
return {
|
||||
key: t,
|
||||
value: n
|
||||
};
|
||||
}
|
||||
return m;
|
||||
}
|
||||
function g(e, t) {
|
||||
const n = t.value.split(r);
|
||||
const a = [];
|
||||
let s = e;
|
||||
let c;
|
||||
do {
|
||||
a.push(o(s, "node_modules", ".bin"));
|
||||
c = s;
|
||||
s = i(s);
|
||||
} while (s !== c);
|
||||
a.push(i(process.execPath));
|
||||
const l = a.concat(n).join(r);
|
||||
return {
|
||||
key: t.key,
|
||||
value: l
|
||||
};
|
||||
}
|
||||
function _(e, t) {
|
||||
const n = {
|
||||
...process.env,
|
||||
...t
|
||||
};
|
||||
const r = g(e, h(n));
|
||||
n[r.key] = r.value;
|
||||
return n;
|
||||
}
|
||||
//#endregion
|
||||
//#region src/stream.ts
|
||||
const v = (e) => {
|
||||
let t = e.length;
|
||||
const n = new l();
|
||||
const r = () => {
|
||||
if (--t === 0) n.end();
|
||||
};
|
||||
for (const t of e) c(t, n, { end: false }).then(r).catch(r);
|
||||
return n;
|
||||
};
|
||||
//#endregion
|
||||
//#region node_modules/isexe/windows.js
|
||||
var y = /* @__PURE__ */ d(((e, t) => {
|
||||
t.exports = a;
|
||||
a.sync = o;
|
||||
var n = f("fs");
|
||||
function r(e, t) {
|
||||
var n = t.pathExt !== void 0 ? t.pathExt : process.env.PATHEXT;
|
||||
if (!n) return true;
|
||||
n = n.split(";");
|
||||
if (n.indexOf("") !== -1) return true;
|
||||
for (var r = 0; r < n.length; r++) {
|
||||
var i = n[r].toLowerCase();
|
||||
if (i && e.substr(-i.length).toLowerCase() === i) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function i(e, t, n) {
|
||||
if (!e.isSymbolicLink() && !e.isFile()) return false;
|
||||
return r(t, n);
|
||||
}
|
||||
function a(e, t, r) {
|
||||
n.stat(e, function(n, a) {
|
||||
r(n, n ? false : i(a, e, t));
|
||||
});
|
||||
}
|
||||
function o(e, t) {
|
||||
return i(n.statSync(e), e, t);
|
||||
}
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/isexe/mode.js
|
||||
var b = /* @__PURE__ */ d(((e, t) => {
|
||||
t.exports = r;
|
||||
r.sync = i;
|
||||
var n = f("fs");
|
||||
function r(e, t, r) {
|
||||
n.stat(e, function(e, n) {
|
||||
r(e, e ? false : a(n, t));
|
||||
});
|
||||
}
|
||||
function i(e, t) {
|
||||
return a(n.statSync(e), t);
|
||||
}
|
||||
function a(e, t) {
|
||||
return e.isFile() && o(e, t);
|
||||
}
|
||||
function o(e, t) {
|
||||
var n = e.mode;
|
||||
var r = e.uid;
|
||||
var i = e.gid;
|
||||
var a = t.uid !== void 0 ? t.uid : process.getuid && process.getuid();
|
||||
var o = t.gid !== void 0 ? t.gid : process.getgid && process.getgid();
|
||||
var s = parseInt("100", 8);
|
||||
var c = parseInt("010", 8);
|
||||
var l = parseInt("001", 8);
|
||||
var u = s | c;
|
||||
return n & l || n & c && i === o || n & s && r === a || n & u && a === 0;
|
||||
}
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/isexe/index.js
|
||||
var x = /* @__PURE__ */ d(((e, t) => {
|
||||
f("fs");
|
||||
var n;
|
||||
if (process.platform === "win32" || global.TESTING_WINDOWS) n = y();
|
||||
else n = b();
|
||||
t.exports = r;
|
||||
r.sync = i;
|
||||
function r(e, t, i) {
|
||||
if (typeof t === "function") {
|
||||
i = t;
|
||||
t = {};
|
||||
}
|
||||
if (!i) {
|
||||
if (typeof Promise !== "function") throw new TypeError("callback not provided");
|
||||
return new Promise(function(n, i) {
|
||||
r(e, t || {}, function(e, t) {
|
||||
if (e) i(e);
|
||||
else n(t);
|
||||
});
|
||||
});
|
||||
}
|
||||
n(e, t || {}, function(e, n) {
|
||||
if (e) {
|
||||
if (e.code === "EACCES" || t && t.ignoreErrors) {
|
||||
e = null;
|
||||
n = false;
|
||||
}
|
||||
}
|
||||
i(e, n);
|
||||
});
|
||||
}
|
||||
function i(e, t) {
|
||||
try {
|
||||
return n.sync(e, t || {});
|
||||
} catch (e) {
|
||||
if (t && t.ignoreErrors || e.code === "EACCES") return false;
|
||||
else throw e;
|
||||
}
|
||||
}
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/which/which.js
|
||||
var S = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
||||
const r = f("path");
|
||||
const i = n ? ";" : ":";
|
||||
const a = x();
|
||||
const o = (e) => Object.assign(/* @__PURE__ */ new Error(`not found: ${e}`), { code: "ENOENT" });
|
||||
const s = (e, t) => {
|
||||
const r = t.colon || i;
|
||||
const a = e.match(/\//) || n && e.match(/\\/) ? [""] : [...n ? [process.cwd()] : [], ...(t.path || process.env.PATH || "").split(r)];
|
||||
const o = n ? t.pathExt || process.env.PATHEXT || ".EXE;.CMD;.BAT;.COM" : "";
|
||||
const s = n ? o.split(r) : [""];
|
||||
if (n) {
|
||||
if (e.indexOf(".") !== -1 && s[0] !== "") s.unshift("");
|
||||
}
|
||||
return {
|
||||
pathEnv: a,
|
||||
pathExt: s,
|
||||
pathExtExe: o
|
||||
};
|
||||
};
|
||||
const c = (e, t, n) => {
|
||||
if (typeof t === "function") {
|
||||
n = t;
|
||||
t = {};
|
||||
}
|
||||
if (!t) t = {};
|
||||
const { pathEnv: i, pathExt: c, pathExtExe: l } = s(e, t);
|
||||
const u = [];
|
||||
const d = (n) => new Promise((a, s) => {
|
||||
if (n === i.length) return t.all && u.length ? a(u) : s(o(e));
|
||||
const c = i[n];
|
||||
const l = /^".*"$/.test(c) ? c.slice(1, -1) : c;
|
||||
const d = r.join(l, e);
|
||||
a(f(!l && /^\.[\\\/]/.test(e) ? e.slice(0, 2) + d : d, n, 0));
|
||||
});
|
||||
const f = (e, n, r) => new Promise((i, o) => {
|
||||
if (r === c.length) return i(d(n + 1));
|
||||
const s = c[r];
|
||||
a(e + s, { pathExt: l }, (a, o) => {
|
||||
if (!a && o) if (t.all) u.push(e + s);
|
||||
else return i(e + s);
|
||||
return i(f(e, n, r + 1));
|
||||
});
|
||||
});
|
||||
return n ? d(0).then((e) => n(null, e), n) : d(0);
|
||||
};
|
||||
const l = (e, t) => {
|
||||
t = t || {};
|
||||
const { pathEnv: n, pathExt: i, pathExtExe: c } = s(e, t);
|
||||
const l = [];
|
||||
for (let o = 0; o < n.length; o++) {
|
||||
const s = n[o];
|
||||
const u = /^".*"$/.test(s) ? s.slice(1, -1) : s;
|
||||
const d = r.join(u, e);
|
||||
const f = !u && /^\.[\\\/]/.test(e) ? e.slice(0, 2) + d : d;
|
||||
for (let e = 0; e < i.length; e++) {
|
||||
const n = f + i[e];
|
||||
try {
|
||||
if (a.sync(n, { pathExt: c })) if (t.all) l.push(n);
|
||||
else return n;
|
||||
} catch (e) {}
|
||||
}
|
||||
}
|
||||
if (t.all && l.length) return l;
|
||||
if (t.nothrow) return null;
|
||||
throw o(e);
|
||||
};
|
||||
t.exports = c;
|
||||
c.sync = l;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/path-key/index.js
|
||||
var C = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = (e = {}) => {
|
||||
const t = e.env || process.env;
|
||||
if ((e.platform || process.platform) !== "win32") return "PATH";
|
||||
return Object.keys(t).reverse().find((e) => e.toUpperCase() === "PATH") || "Path";
|
||||
};
|
||||
t.exports = n;
|
||||
t.exports.default = n;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/lib/util/resolveCommand.js
|
||||
var w = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = f("path");
|
||||
const r = S();
|
||||
const i = C();
|
||||
function a(e, t) {
|
||||
const a = e.options.env || process.env;
|
||||
const o = process.cwd();
|
||||
const s = e.options.cwd != null;
|
||||
const c = s && process.chdir !== void 0 && !process.chdir.disabled;
|
||||
if (c) try {
|
||||
process.chdir(e.options.cwd);
|
||||
} catch (e) {}
|
||||
let l;
|
||||
try {
|
||||
l = r.sync(e.command, {
|
||||
path: a[i({ env: a })],
|
||||
pathExt: t ? n.delimiter : void 0
|
||||
});
|
||||
} catch (e) {} finally {
|
||||
if (c) process.chdir(o);
|
||||
}
|
||||
if (l) l = n.resolve(s ? e.options.cwd : "", l);
|
||||
return l;
|
||||
}
|
||||
function o(e) {
|
||||
return a(e) || a(e, true);
|
||||
}
|
||||
t.exports = o;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/lib/util/escape.js
|
||||
var T = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = /([()\][%!^"`<>&|;, *?])/g;
|
||||
function r(e) {
|
||||
e = e.replace(n, "^$1");
|
||||
return e;
|
||||
}
|
||||
function i(e, t) {
|
||||
e = `${e}`;
|
||||
e = e.replace(/(?=(\\+?)?)\1"/g, "$1$1\\\"");
|
||||
e = e.replace(/(?=(\\+?)?)\1$/, "$1$1");
|
||||
e = `"${e}"`;
|
||||
e = e.replace(n, "^$1");
|
||||
if (t) e = e.replace(n, "^$1");
|
||||
return e;
|
||||
}
|
||||
t.exports.command = r;
|
||||
t.exports.argument = i;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/shebang-regex/index.js
|
||||
var E = /* @__PURE__ */ d(((e, t) => {
|
||||
t.exports = /^#!(.*)/;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/shebang-command/index.js
|
||||
var D = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = E();
|
||||
t.exports = (e = "") => {
|
||||
const t = e.match(n);
|
||||
if (!t) return null;
|
||||
const [r, i] = t[0].replace(/#! ?/, "").split(" ");
|
||||
const a = r.split("/").pop();
|
||||
if (a === "env") return i;
|
||||
return i ? `${a} ${i}` : a;
|
||||
};
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/lib/util/readShebang.js
|
||||
var O = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = f("fs");
|
||||
const r = D();
|
||||
function i(e) {
|
||||
const t = 150;
|
||||
const i = Buffer.alloc(t);
|
||||
let a;
|
||||
try {
|
||||
a = n.openSync(e, "r");
|
||||
n.readSync(a, i, 0, t, 0);
|
||||
n.closeSync(a);
|
||||
} catch (e) {}
|
||||
return r(i.toString());
|
||||
}
|
||||
t.exports = i;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/lib/parse.js
|
||||
var k = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = f("path");
|
||||
const r = w();
|
||||
const i = T();
|
||||
const a = O();
|
||||
const o = process.platform === "win32";
|
||||
const s = /\.(?:com|exe)$/i;
|
||||
const c = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;
|
||||
function l(e) {
|
||||
e.file = r(e);
|
||||
const t = e.file && a(e.file);
|
||||
if (t) {
|
||||
e.args.unshift(e.file);
|
||||
e.command = t;
|
||||
return r(e);
|
||||
}
|
||||
return e.file;
|
||||
}
|
||||
function u(e) {
|
||||
if (!o) return e;
|
||||
const t = l(e);
|
||||
const r = !s.test(t);
|
||||
if (e.options.forceShell || r) {
|
||||
const r = c.test(t);
|
||||
e.command = n.normalize(e.command);
|
||||
e.command = i.command(e.command);
|
||||
e.args = e.args.map((e) => i.argument(e, r));
|
||||
e.args = [
|
||||
"/d",
|
||||
"/s",
|
||||
"/c",
|
||||
`"${[e.command].concat(e.args).join(" ")}"`
|
||||
];
|
||||
e.command = process.env.comspec || "cmd.exe";
|
||||
e.options.windowsVerbatimArguments = true;
|
||||
}
|
||||
return e;
|
||||
}
|
||||
function d(e, t, n) {
|
||||
if (t && !Array.isArray(t)) {
|
||||
n = t;
|
||||
t = null;
|
||||
}
|
||||
t = t ? t.slice(0) : [];
|
||||
n = Object.assign({}, n);
|
||||
const r = {
|
||||
command: e,
|
||||
args: t,
|
||||
options: n,
|
||||
file: void 0,
|
||||
original: {
|
||||
command: e,
|
||||
args: t
|
||||
}
|
||||
};
|
||||
return n.shell ? r : u(r);
|
||||
}
|
||||
t.exports = d;
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/lib/enoent.js
|
||||
var A = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = process.platform === "win32";
|
||||
function r(e, t) {
|
||||
return Object.assign(/* @__PURE__ */ new Error(`${t} ${e.command} ENOENT`), {
|
||||
code: "ENOENT",
|
||||
errno: "ENOENT",
|
||||
syscall: `${t} ${e.command}`,
|
||||
path: e.command,
|
||||
spawnargs: e.args
|
||||
});
|
||||
}
|
||||
function i(e, t) {
|
||||
if (!n) return;
|
||||
const r = e.emit;
|
||||
e.emit = function(n, i) {
|
||||
if (n === "exit") {
|
||||
const n = a(i, t);
|
||||
if (n) return r.call(e, "error", n);
|
||||
}
|
||||
return r.apply(e, arguments);
|
||||
};
|
||||
}
|
||||
function a(e, t) {
|
||||
if (n && e === 1 && !t.file) return r(t.original, "spawn");
|
||||
return null;
|
||||
}
|
||||
function o(e, t) {
|
||||
if (n && e === 1 && !t.file) return r(t.original, "spawnSync");
|
||||
return null;
|
||||
}
|
||||
t.exports = {
|
||||
hookChildProcess: i,
|
||||
verifyENOENT: a,
|
||||
verifyENOENTSync: o,
|
||||
notFoundError: r
|
||||
};
|
||||
}));
|
||||
//#endregion
|
||||
//#region node_modules/cross-spawn/index.js
|
||||
var j = /* @__PURE__ */ d(((e, t) => {
|
||||
const n = f("child_process");
|
||||
const r = k();
|
||||
const i = A();
|
||||
function a(e, t, a) {
|
||||
const o = r(e, t, a);
|
||||
const s = n.spawn(o.command, o.args, o.options);
|
||||
i.hookChildProcess(s, o);
|
||||
return s;
|
||||
}
|
||||
function o(e, t, a) {
|
||||
const o = r(e, t, a);
|
||||
const s = n.spawnSync(o.command, o.args, o.options);
|
||||
s.error = s.error || i.verifyENOENTSync(s.status, o);
|
||||
return s;
|
||||
}
|
||||
t.exports = a;
|
||||
t.exports.spawn = a;
|
||||
t.exports.sync = o;
|
||||
t.exports._parse = r;
|
||||
t.exports._enoent = i;
|
||||
}));
|
||||
//#endregion
|
||||
//#region src/non-zero-exit-error.ts
|
||||
var M = j();
|
||||
var N = class extends Error {
|
||||
get exitCode() {
|
||||
if (this.result.exitCode !== null) return this.result.exitCode;
|
||||
}
|
||||
constructor(e, t) {
|
||||
super(`Process exited with non-zero status (${e.exitCode})`);
|
||||
this.result = e;
|
||||
this.output = t;
|
||||
}
|
||||
};
|
||||
//#endregion
|
||||
//#region src/main.ts
|
||||
const P = /\r?\n/;
|
||||
const F = {
|
||||
timeout: void 0,
|
||||
persist: false
|
||||
};
|
||||
const I = { timeout: void 0 };
|
||||
const L = { windowsHide: true };
|
||||
function R(e, t) {
|
||||
return {
|
||||
command: a(e),
|
||||
args: t ?? []
|
||||
};
|
||||
}
|
||||
function z(e) {
|
||||
const t = new AbortController();
|
||||
for (const n of e) {
|
||||
if (n.aborted) {
|
||||
t.abort();
|
||||
return n;
|
||||
}
|
||||
const e = () => {
|
||||
t.abort(n.reason);
|
||||
};
|
||||
n.addEventListener("abort", e, { signal: t.signal });
|
||||
}
|
||||
return t.signal;
|
||||
}
|
||||
async function B(e) {
|
||||
let t = "";
|
||||
try {
|
||||
for await (const n of e) t += n.toString();
|
||||
} catch {}
|
||||
return t;
|
||||
}
|
||||
var V = class {
|
||||
_process;
|
||||
_aborted = false;
|
||||
_options;
|
||||
_command;
|
||||
_args;
|
||||
_resolveClose;
|
||||
_processClosed;
|
||||
_thrownError;
|
||||
get process() {
|
||||
return this._process;
|
||||
}
|
||||
get pid() {
|
||||
return this._process?.pid;
|
||||
}
|
||||
get exitCode() {
|
||||
if (this._process && this._process.exitCode !== null) return this._process.exitCode;
|
||||
}
|
||||
constructor(e, t, n) {
|
||||
this._options = {
|
||||
...F,
|
||||
...n
|
||||
};
|
||||
this._command = e;
|
||||
this._args = t ?? [];
|
||||
this._processClosed = new Promise((e) => {
|
||||
this._resolveClose = e;
|
||||
});
|
||||
}
|
||||
kill(e) {
|
||||
return this._process?.kill(e) === true;
|
||||
}
|
||||
get aborted() {
|
||||
return this._aborted;
|
||||
}
|
||||
get killed() {
|
||||
return this._process?.killed === true;
|
||||
}
|
||||
pipe(e, t, n) {
|
||||
return W(e, t, {
|
||||
...n,
|
||||
stdin: this
|
||||
});
|
||||
}
|
||||
async *[Symbol.asyncIterator]() {
|
||||
const e = this._process;
|
||||
if (!e) return;
|
||||
const t = [];
|
||||
if (this._streamErr) t.push(this._streamErr);
|
||||
if (this._streamOut) t.push(this._streamOut);
|
||||
const n = v(t);
|
||||
const r = u.createInterface({ input: n });
|
||||
for await (const e of r) yield e.toString();
|
||||
await this._processClosed;
|
||||
e.removeAllListeners();
|
||||
if (this._thrownError) throw this._thrownError;
|
||||
if (this._options?.throwOnError && this.exitCode !== 0 && this.exitCode !== void 0) throw new N(this);
|
||||
}
|
||||
async _waitForOutput() {
|
||||
const e = this._process;
|
||||
if (!e) throw new Error("No process was started");
|
||||
const [t, n] = await Promise.all([this._streamOut ? B(this._streamOut) : "", this._streamErr ? B(this._streamErr) : ""]);
|
||||
await this._processClosed;
|
||||
const { stdin: r } = this._options;
|
||||
if (r && typeof r !== "string") await r;
|
||||
e.removeAllListeners();
|
||||
if (this._thrownError) throw this._thrownError;
|
||||
const i = {
|
||||
stderr: n,
|
||||
stdout: t,
|
||||
exitCode: this.exitCode
|
||||
};
|
||||
if (this._options.throwOnError && this.exitCode !== 0 && this.exitCode !== void 0) throw new N(this, i);
|
||||
return i;
|
||||
}
|
||||
then(e, t) {
|
||||
return this._waitForOutput().then(e, t);
|
||||
}
|
||||
_streamOut;
|
||||
_streamErr;
|
||||
spawn() {
|
||||
const e = s();
|
||||
const n = this._options;
|
||||
const r = {
|
||||
...L,
|
||||
...n.nodeOptions
|
||||
};
|
||||
const i = [];
|
||||
this._resetState();
|
||||
if (n.timeout !== void 0) i.push(AbortSignal.timeout(n.timeout));
|
||||
if (n.signal !== void 0) i.push(n.signal);
|
||||
if (n.persist === true) r.detached = true;
|
||||
if (i.length > 0) r.signal = z(i);
|
||||
r.env = _(e, r.env);
|
||||
const { command: a, args: o } = R(this._command, this._args);
|
||||
const c = (0, M._parse)(a, o, r);
|
||||
const l = t(c.command, c.args, c.options);
|
||||
if (l.stderr) this._streamErr = l.stderr;
|
||||
if (l.stdout) this._streamOut = l.stdout;
|
||||
this._process = l;
|
||||
l.once("error", this._onError);
|
||||
l.once("close", this._onClose);
|
||||
if (l.stdin) {
|
||||
const { stdin: e } = n;
|
||||
if (typeof e === "string") l.stdin.end(e);
|
||||
else e?.process?.stdout?.pipe(l.stdin);
|
||||
}
|
||||
}
|
||||
_resetState() {
|
||||
this._aborted = false;
|
||||
this._processClosed = new Promise((e) => {
|
||||
this._resolveClose = e;
|
||||
});
|
||||
this._thrownError = void 0;
|
||||
}
|
||||
_onError = (e) => {
|
||||
if (e.name === "AbortError" && (!(e.cause instanceof Error) || e.cause.name !== "TimeoutError")) {
|
||||
this._aborted = true;
|
||||
return;
|
||||
}
|
||||
this._thrownError = e;
|
||||
};
|
||||
_onClose = () => {
|
||||
if (this._resolveClose) this._resolveClose();
|
||||
};
|
||||
};
|
||||
function H(e, t, r) {
|
||||
const i = {
|
||||
...I,
|
||||
...r
|
||||
};
|
||||
const a = s();
|
||||
const o = {
|
||||
windowsHide: true,
|
||||
...i.nodeOptions
|
||||
};
|
||||
if (i.timeout !== void 0) o.timeout = i.timeout;
|
||||
o.env = _(a, o.env);
|
||||
const { command: c, args: l } = R(e, t);
|
||||
const u = (0, M._parse)(c, l, o);
|
||||
const d = n(u.command, u.args, u.options);
|
||||
if (d.error) throw d.error;
|
||||
const f = d.stdout?.toString() ?? "";
|
||||
const p = d.stderr?.toString() ?? "";
|
||||
const m = d.status ?? void 0;
|
||||
const h = d.signal != null;
|
||||
const g = {
|
||||
stdout: f,
|
||||
stderr: p,
|
||||
get exitCode() {
|
||||
return m;
|
||||
},
|
||||
get pid() {
|
||||
return d.pid;
|
||||
},
|
||||
get killed() {
|
||||
return h;
|
||||
},
|
||||
*[Symbol.iterator]() {
|
||||
for (const e of [f, p]) {
|
||||
if (!e) continue;
|
||||
const t = e.split(P);
|
||||
if (t[t.length - 1] === "") t.pop();
|
||||
yield* t;
|
||||
}
|
||||
}
|
||||
};
|
||||
if (i.throwOnError && m !== 0 && m !== void 0) throw new N(g, g);
|
||||
return g;
|
||||
}
|
||||
const U = (e, t, n) => {
|
||||
const r = new V(e, t, n);
|
||||
r.spawn();
|
||||
return r;
|
||||
};
|
||||
const W = U;
|
||||
const G = H;
|
||||
//#endregion
|
||||
export { V as ExecProcess, N as NonZeroExitError, W as exec, G as execSync, U as x, H as xSync };
|
||||
Reference in New Issue
Block a user