@settlemint/sdk-cli 2.6.2-pr906fa3e7 → 2.6.2-pr92ba533f
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/cli.js +632 -593
- package/dist/cli.js.map +4 -4
- package/package.json +8 -8
package/dist/cli.js
CHANGED
@@ -233429,12 +233429,12 @@ function split2(lst, le4 = false) {
|
|
233429
233429
|
let Ah = new Uint32Array(len);
|
233430
233430
|
let Al = new Uint32Array(len);
|
233431
233431
|
for (let i7 = 0;i7 < len; i7++) {
|
233432
|
-
const { h:
|
233433
|
-
[Ah[i7], Al[i7]] = [
|
233432
|
+
const { h: h7, l: l4 } = fromBig(lst[i7], le4);
|
233433
|
+
[Ah[i7], Al[i7]] = [h7, l4];
|
233434
233434
|
}
|
233435
233435
|
return [Ah, Al];
|
233436
233436
|
}
|
233437
|
-
var U32_MASK64, _32n, rotlSH = (
|
233437
|
+
var U32_MASK64, _32n, rotlSH = (h7, l4, s7) => h7 << s7 | l4 >>> 32 - s7, rotlSL = (h7, l4, s7) => l4 << s7 | h7 >>> 32 - s7, rotlBH = (h7, l4, s7) => l4 << s7 - 32 | h7 >>> 64 - s7, rotlBL = (h7, l4, s7) => h7 << s7 - 32 | l4 >>> 64 - s7;
|
233438
233438
|
var init__u64 = __esm(() => {
|
233439
233439
|
U32_MASK64 = /* @__PURE__ */ BigInt(2 ** 32 - 1);
|
233440
233440
|
_32n = /* @__PURE__ */ BigInt(32);
|
@@ -233461,11 +233461,11 @@ function abytes(b4, ...lengths) {
|
|
233461
233461
|
if (lengths.length > 0 && !lengths.includes(b4.length))
|
233462
233462
|
throw new Error("Uint8Array expected of length " + lengths + ", got length=" + b4.length);
|
233463
233463
|
}
|
233464
|
-
function ahash(
|
233465
|
-
if (typeof
|
233464
|
+
function ahash(h7) {
|
233465
|
+
if (typeof h7 !== "function" || typeof h7.create !== "function")
|
233466
233466
|
throw new Error("Hash should be wrapped by utils.createHasher");
|
233467
|
-
anumber(
|
233468
|
-
anumber(
|
233467
|
+
anumber(h7.outputLen);
|
233468
|
+
anumber(h7.blockLen);
|
233469
233469
|
}
|
233470
233470
|
function aexists(instance, checkFinished = true) {
|
233471
233471
|
if (instance.destroyed)
|
@@ -233598,7 +233598,7 @@ function keccakP(s7, rounds = 24) {
|
|
233598
233598
|
}
|
233599
233599
|
clean(B4);
|
233600
233600
|
}
|
233601
|
-
var _0n, _1n, _2n, _7n, _256n, _0x71n, SHA3_PI, SHA3_ROTL, _SHA3_IOTA, IOTAS, SHA3_IOTA_H, SHA3_IOTA_L, rotlH = (
|
233601
|
+
var _0n, _1n, _2n, _7n, _256n, _0x71n, SHA3_PI, SHA3_ROTL, _SHA3_IOTA, IOTAS, SHA3_IOTA_H, SHA3_IOTA_L, rotlH = (h7, l4, s7) => s7 > 32 ? rotlBH(h7, l4, s7) : rotlSH(h7, l4, s7), rotlL = (h7, l4, s7) => s7 > 32 ? rotlBL(h7, l4, s7) : rotlSL(h7, l4, s7), Keccak, gen = (suffix, blockLen, outputLen) => createHasher(() => new Keccak(blockLen, suffix, outputLen)), keccak_256;
|
233602
233602
|
var init_sha3 = __esm(() => {
|
233603
233603
|
init__u64();
|
233604
233604
|
init_utils2();
|
@@ -235901,9 +235901,9 @@ function setBigUint64(view, byteOffset, value5, isLE2) {
|
|
235901
235901
|
const _u32_max = BigInt(4294967295);
|
235902
235902
|
const wh = Number(value5 >> _32n2 & _u32_max);
|
235903
235903
|
const wl = Number(value5 & _u32_max);
|
235904
|
-
const
|
235904
|
+
const h7 = isLE2 ? 4 : 0;
|
235905
235905
|
const l4 = isLE2 ? 0 : 4;
|
235906
|
-
view.setUint32(byteOffset +
|
235906
|
+
view.setUint32(byteOffset + h7, wh, isLE2);
|
235907
235907
|
view.setUint32(byteOffset + l4, wl, isLE2);
|
235908
235908
|
}
|
235909
235909
|
function Chi(a8, b4, c3) {
|
@@ -236372,14 +236372,14 @@ function createHmacDrbg(hashLen, qByteLen, hmacFn) {
|
|
236372
236372
|
k5.fill(0);
|
236373
236373
|
i7 = 0;
|
236374
236374
|
};
|
236375
|
-
const
|
236375
|
+
const h7 = (...b4) => hmacFn(k5, v6, ...b4);
|
236376
236376
|
const reseed = (seed = u8n(0)) => {
|
236377
|
-
k5 =
|
236378
|
-
v6 =
|
236377
|
+
k5 = h7(u8fr([0]), seed);
|
236378
|
+
v6 = h7();
|
236379
236379
|
if (seed.length === 0)
|
236380
236380
|
return;
|
236381
|
-
k5 =
|
236382
|
-
v6 =
|
236381
|
+
k5 = h7(u8fr([1]), seed);
|
236382
|
+
v6 = h7();
|
236383
236383
|
};
|
236384
236384
|
const gen2 = () => {
|
236385
236385
|
if (i7++ >= 1000)
|
@@ -236387,7 +236387,7 @@ function createHmacDrbg(hashLen, qByteLen, hmacFn) {
|
|
236387
236387
|
let len = 0;
|
236388
236388
|
const out = [];
|
236389
236389
|
while (len < qByteLen) {
|
236390
|
-
v6 =
|
236390
|
+
v6 = h7();
|
236391
236391
|
const sl = v6.slice();
|
236392
236392
|
out.push(sl);
|
236393
236393
|
len += v6.length;
|
@@ -237232,16 +237232,16 @@ function weierstrassPoints(opts) {
|
|
237232
237232
|
multiplyUnsafe(sc) {
|
237233
237233
|
const { endo: endo2, n: N6 } = CURVE;
|
237234
237234
|
aInRange("scalar", sc, _0n5, N6);
|
237235
|
-
const
|
237235
|
+
const I7 = Point.ZERO;
|
237236
237236
|
if (sc === _0n5)
|
237237
|
-
return
|
237237
|
+
return I7;
|
237238
237238
|
if (this.is0() || sc === _1n5)
|
237239
237239
|
return this;
|
237240
237240
|
if (!endo2 || wnaf.hasPrecomputes(this))
|
237241
237241
|
return wnaf.wNAFCachedUnsafe(this, sc, Point.normalizeZ);
|
237242
237242
|
let { k1neg, k1, k2neg, k2: k22 } = endo2.splitScalar(sc);
|
237243
|
-
let k1p =
|
237244
|
-
let k2p =
|
237243
|
+
let k1p = I7;
|
237244
|
+
let k2p = I7;
|
237245
237245
|
let d6 = this;
|
237246
237246
|
while (k1 > _0n5 || k22 > _0n5) {
|
237247
237247
|
if (k1 & _1n5)
|
@@ -237429,7 +237429,7 @@ function weierstrass(curveDef) {
|
|
237429
237429
|
}
|
237430
237430
|
recoverPublicKey(msgHash) {
|
237431
237431
|
const { r: r7, s: s7, recovery: rec } = this;
|
237432
|
-
const
|
237432
|
+
const h7 = bits2int_modN(ensureBytes("msgHash", msgHash));
|
237433
237433
|
if (rec == null || ![0, 1, 2, 3].includes(rec))
|
237434
237434
|
throw new Error("recovery id invalid");
|
237435
237435
|
const radj = rec === 2 || rec === 3 ? r7 + CURVE.n : r7;
|
@@ -237438,7 +237438,7 @@ function weierstrass(curveDef) {
|
|
237438
237438
|
const prefix = (rec & 1) === 0 ? "02" : "03";
|
237439
237439
|
const R7 = Point.fromHex(prefix + numToSizedHex(radj, Fp.BYTES));
|
237440
237440
|
const ir2 = invN(radj);
|
237441
|
-
const u1 = modN(-
|
237441
|
+
const u1 = modN(-h7 * ir2);
|
237442
237442
|
const u22 = modN(s7 * ir2);
|
237443
237443
|
const Q4 = Point.BASE.multiplyAndAddUnsafe(R7, u1, u22);
|
237444
237444
|
if (!Q4)
|
@@ -237620,9 +237620,9 @@ function weierstrass(curveDef) {
|
|
237620
237620
|
if (prehash)
|
237621
237621
|
msgHash = CURVE.hash(msgHash);
|
237622
237622
|
const { r: r7, s: s7 } = _sig;
|
237623
|
-
const
|
237623
|
+
const h7 = bits2int_modN(msgHash);
|
237624
237624
|
const is = invN(s7);
|
237625
|
-
const u1 = modN(
|
237625
|
+
const u1 = modN(h7 * is);
|
237626
237626
|
const u22 = modN(r7 * is);
|
237627
237627
|
const R7 = Point.BASE.multiplyAndAddUnsafe(P5, u1, u22)?.toAffine();
|
237628
237628
|
if (!R7)
|
@@ -247440,14 +247440,14 @@ var {
|
|
247440
247440
|
Help
|
247441
247441
|
} = import__.default;
|
247442
247442
|
|
247443
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247443
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/key.js
|
247444
247444
|
var isUpKey = (key) => key.name === "up";
|
247445
247445
|
var isDownKey = (key) => key.name === "down";
|
247446
247446
|
var isBackspaceKey = (key) => key.name === "backspace";
|
247447
247447
|
var isTabKey = (key) => key.name === "tab";
|
247448
247448
|
var isNumberKey = (key) => "1234567890".includes(key.name);
|
247449
247449
|
var isEnterKey = (key) => key.name === "enter" || key.name === "return";
|
247450
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247450
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
247451
247451
|
class AbortPromptError extends Error {
|
247452
247452
|
name = "AbortPromptError";
|
247453
247453
|
message = "Prompt was aborted";
|
@@ -247473,10 +247473,10 @@ class HookError extends Error {
|
|
247473
247473
|
class ValidationError extends Error {
|
247474
247474
|
name = "ValidationError";
|
247475
247475
|
}
|
247476
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247476
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
247477
247477
|
import { AsyncResource as AsyncResource2 } from "node:async_hooks";
|
247478
247478
|
|
247479
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247479
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
247480
247480
|
import { AsyncLocalStorage, AsyncResource } from "node:async_hooks";
|
247481
247481
|
var hookStorage = new AsyncLocalStorage;
|
247482
247482
|
function createStore(rl) {
|
@@ -247581,7 +247581,7 @@ var effectScheduler = {
|
|
247581
247581
|
}
|
247582
247582
|
};
|
247583
247583
|
|
247584
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247584
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
247585
247585
|
function useState(defaultValue) {
|
247586
247586
|
return withPointer((pointer) => {
|
247587
247587
|
const setState = AsyncResource2.bind(function setState(newValue) {
|
@@ -247599,7 +247599,7 @@ function useState(defaultValue) {
|
|
247599
247599
|
});
|
247600
247600
|
}
|
247601
247601
|
|
247602
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247602
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
247603
247603
|
function useEffect(cb, depArray) {
|
247604
247604
|
withPointer((pointer) => {
|
247605
247605
|
const oldDeps = pointer.get();
|
@@ -247611,7 +247611,7 @@ function useEffect(cb, depArray) {
|
|
247611
247611
|
});
|
247612
247612
|
}
|
247613
247613
|
|
247614
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247614
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
247615
247615
|
var import_yoctocolors_cjs = __toESM(require_yoctocolors_cjs(), 1);
|
247616
247616
|
|
247617
247617
|
// ../../node_modules/.bun/@inquirer+figures@1.0.13/node_modules/@inquirer/figures/dist/esm/index.js
|
@@ -247900,7 +247900,7 @@ var figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
247900
247900
|
var esm_default = figures;
|
247901
247901
|
var replacements = Object.entries(specialMainSymbols);
|
247902
247902
|
|
247903
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247903
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
247904
247904
|
var defaultTheme = {
|
247905
247905
|
prefix: {
|
247906
247906
|
idle: import_yoctocolors_cjs.default.blue("?"),
|
@@ -247921,7 +247921,7 @@ var defaultTheme = {
|
|
247921
247921
|
}
|
247922
247922
|
};
|
247923
247923
|
|
247924
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247924
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
247925
247925
|
function isPlainObject(value) {
|
247926
247926
|
if (typeof value !== "object" || value === null)
|
247927
247927
|
return false;
|
@@ -247949,7 +247949,7 @@ function makeTheme(...themes) {
|
|
247949
247949
|
return deepMerge(...themesToMerge);
|
247950
247950
|
}
|
247951
247951
|
|
247952
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247952
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
247953
247953
|
function usePrefix({ status = "idle", theme }) {
|
247954
247954
|
const [showLoader, setShowLoader] = useState(false);
|
247955
247955
|
const [tick, setTick] = useState(0);
|
@@ -247979,7 +247979,7 @@ function usePrefix({ status = "idle", theme }) {
|
|
247979
247979
|
const iconName = status === "loading" ? "idle" : status;
|
247980
247980
|
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
247981
247981
|
}
|
247982
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247982
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
247983
247983
|
function useMemo(fn, dependencies) {
|
247984
247984
|
return withPointer((pointer) => {
|
247985
247985
|
const prev = pointer.get();
|
@@ -247991,11 +247991,11 @@ function useMemo(fn, dependencies) {
|
|
247991
247991
|
return prev.value;
|
247992
247992
|
});
|
247993
247993
|
}
|
247994
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247994
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
247995
247995
|
function useRef(val) {
|
247996
247996
|
return useState({ current: val })[0];
|
247997
247997
|
}
|
247998
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
247998
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
247999
247999
|
function useKeypress(userHandler) {
|
248000
248000
|
const signal = useRef(userHandler);
|
248001
248001
|
signal.current = userHandler;
|
@@ -248013,7 +248013,7 @@ function useKeypress(userHandler) {
|
|
248013
248013
|
};
|
248014
248014
|
}, []);
|
248015
248015
|
}
|
248016
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248016
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
248017
248017
|
var import_cli_width = __toESM(require_cli_width(), 1);
|
248018
248018
|
var import_wrap_ansi = __toESM(require_wrap_ansi(), 1);
|
248019
248019
|
function breakLines(content, width) {
|
@@ -248026,7 +248026,7 @@ function readlineWidth() {
|
|
248026
248026
|
return import_cli_width.default({ defaultWidth: 80, output: readline().output });
|
248027
248027
|
}
|
248028
248028
|
|
248029
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248029
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
248030
248030
|
function usePointerPosition({ active, renderedItems, pageSize, loop }) {
|
248031
248031
|
const state = useRef({
|
248032
248032
|
lastPointer: active,
|
@@ -248092,7 +248092,7 @@ function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
|
248092
248092
|
return pageBuffer.filter((line) => typeof line === "string").join(`
|
248093
248093
|
`);
|
248094
248094
|
}
|
248095
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248095
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
248096
248096
|
var import_mute_stream = __toESM(require_lib(), 1);
|
248097
248097
|
import * as readline2 from "node:readline";
|
248098
248098
|
import { AsyncResource as AsyncResource3 } from "node:async_hooks";
|
@@ -248305,7 +248305,7 @@ var {
|
|
248305
248305
|
unload
|
248306
248306
|
} = signalExitWrap(processOk(process3) ? new SignalExit(process3) : new SignalExitFallback);
|
248307
248307
|
|
248308
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248308
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
248309
248309
|
import { stripVTControlCharacters } from "node:util";
|
248310
248310
|
|
248311
248311
|
// ../../node_modules/.bun/@inquirer+ansi@1.0.0/node_modules/@inquirer/ansi/dist/esm/index.js
|
@@ -248324,7 +248324,7 @@ var cursorTo = (x, y) => {
|
|
248324
248324
|
var eraseLine = ESC + "2K";
|
248325
248325
|
var eraseLines = (lines) => lines > 0 ? (eraseLine + cursorUp(1)).repeat(lines - 1) + eraseLine + cursorLeft : "";
|
248326
248326
|
|
248327
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248327
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
248328
248328
|
var height = (content) => content.split(`
|
248329
248329
|
`).length;
|
248330
248330
|
var lastLine = (content) => content.split(`
|
@@ -248389,7 +248389,7 @@ class ScreenManager {
|
|
248389
248389
|
}
|
248390
248390
|
}
|
248391
248391
|
|
248392
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248392
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
248393
248393
|
class PromisePolyfill extends Promise {
|
248394
248394
|
static withResolver() {
|
248395
248395
|
let resolve;
|
@@ -248402,7 +248402,7 @@ class PromisePolyfill extends Promise {
|
|
248402
248402
|
}
|
248403
248403
|
}
|
248404
248404
|
|
248405
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248405
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
248406
248406
|
function getCallSites() {
|
248407
248407
|
const _prepareStackTrace = Error.prepareStackTrace;
|
248408
248408
|
let result = [];
|
@@ -248488,7 +248488,7 @@ function createPrompt(view) {
|
|
248488
248488
|
};
|
248489
248489
|
return prompt;
|
248490
248490
|
}
|
248491
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.2+
|
248491
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+5561211e8fe04dc6/node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
248492
248492
|
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
248493
248493
|
class Separator {
|
248494
248494
|
separator = import_yoctocolors_cjs2.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
@@ -267701,7 +267701,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
267701
267701
|
var package_default = {
|
267702
267702
|
name: "@settlemint/sdk-cli",
|
267703
267703
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
267704
|
-
version: "2.6.2-
|
267704
|
+
version: "2.6.2-pr92ba533f",
|
267705
267705
|
type: "module",
|
267706
267706
|
private: false,
|
267707
267707
|
license: "FSL-1.1-MIT",
|
@@ -267755,14 +267755,14 @@ var package_default = {
|
|
267755
267755
|
"@inquirer/input": "4.2.4",
|
267756
267756
|
"@inquirer/password": "4.0.20",
|
267757
267757
|
"@inquirer/select": "4.3.4",
|
267758
|
-
"@settlemint/sdk-hasura": "2.6.2-
|
267759
|
-
"@settlemint/sdk-js": "2.6.2-
|
267760
|
-
"@settlemint/sdk-utils": "2.6.2-
|
267761
|
-
"@settlemint/sdk-viem": "2.6.2-
|
267762
|
-
"@types/node": "24.7.
|
267758
|
+
"@settlemint/sdk-hasura": "2.6.2-pr92ba533f",
|
267759
|
+
"@settlemint/sdk-js": "2.6.2-pr92ba533f",
|
267760
|
+
"@settlemint/sdk-utils": "2.6.2-pr92ba533f",
|
267761
|
+
"@settlemint/sdk-viem": "2.6.2-pr92ba533f",
|
267762
|
+
"@types/node": "24.7.1",
|
267763
267763
|
"@types/semver": "7.7.1",
|
267764
267764
|
"@types/which": "3.0.4",
|
267765
|
-
"get-tsconfig": "4.
|
267765
|
+
"get-tsconfig": "4.12.0",
|
267766
267766
|
giget: "2.0.0",
|
267767
267767
|
"is-in-ci": "2.0.0",
|
267768
267768
|
semver: "7.7.3",
|
@@ -267775,7 +267775,7 @@ var package_default = {
|
|
267775
267775
|
},
|
267776
267776
|
peerDependencies: {
|
267777
267777
|
hardhat: "<= 4",
|
267778
|
-
"@settlemint/sdk-js": "2.6.2-
|
267778
|
+
"@settlemint/sdk-js": "2.6.2-pr92ba533f"
|
267779
267779
|
},
|
267780
267780
|
peerDependenciesMeta: {
|
267781
267781
|
hardhat: {
|
@@ -272525,10 +272525,10 @@ ${schema}`;
|
|
272525
272525
|
// src/commands/codegen/codegen-tsconfig.ts
|
272526
272526
|
import { writeFile as writeFile6 } from "node:fs/promises";
|
272527
272527
|
|
272528
|
-
// ../../node_modules/.bun/get-tsconfig@4.
|
272528
|
+
// ../../node_modules/.bun/get-tsconfig@4.12.0/node_modules/get-tsconfig/dist/index.mjs
|
272529
272529
|
import m6 from "node:path";
|
272530
|
-
import
|
272531
|
-
import
|
272530
|
+
import le3 from "node:fs";
|
272531
|
+
import Fe2 from "node:module";
|
272532
272532
|
|
272533
272533
|
// ../../node_modules/.bun/resolve-pkg-maps@1.0.0/node_modules/resolve-pkg-maps/dist/index.mjs
|
272534
272534
|
var A4 = (r7) => r7 !== null && typeof r7 == "object";
|
@@ -272601,26 +272601,28 @@ var v5 = (r7, t9, e11) => {
|
|
272601
272601
|
return n7;
|
272602
272602
|
};
|
272603
272603
|
|
272604
|
-
// ../../node_modules/.bun/get-tsconfig@4.
|
272605
|
-
import
|
272606
|
-
|
272607
|
-
|
272604
|
+
// ../../node_modules/.bun/get-tsconfig@4.12.0/node_modules/get-tsconfig/dist/index.mjs
|
272605
|
+
import he3 from "fs";
|
272606
|
+
import Ee3 from "os";
|
272607
|
+
import Be2 from "path";
|
272608
|
+
var je2 = Object.defineProperty;
|
272609
|
+
var o7 = (e11, t9) => je2(e11, "name", { value: t9, configurable: true });
|
272608
272610
|
function E5(e11) {
|
272609
272611
|
return e11.startsWith("\\\\?\\") ? e11 : e11.replace(/\\/g, "/");
|
272610
272612
|
}
|
272611
272613
|
o7(E5, "slash");
|
272612
|
-
var
|
272613
|
-
const t9 =
|
272614
|
+
var z3 = o7((e11) => {
|
272615
|
+
const t9 = le3[e11];
|
272614
272616
|
return (s7, ...n7) => {
|
272615
272617
|
const l4 = `${e11}:${n7.join(":")}`;
|
272616
272618
|
let i7 = s7 == null ? undefined : s7.get(l4);
|
272617
|
-
return i7 === undefined && (i7 = Reflect.apply(t9,
|
272619
|
+
return i7 === undefined && (i7 = Reflect.apply(t9, le3, n7), s7 == null || s7.set(l4, i7)), i7;
|
272618
272620
|
};
|
272619
272621
|
}, "cacheFs");
|
272620
|
-
var B3 =
|
272621
|
-
var
|
272622
|
-
var P4 =
|
272623
|
-
var
|
272622
|
+
var B3 = z3("existsSync");
|
272623
|
+
var Le2 = z3("readFileSync");
|
272624
|
+
var P4 = z3("statSync");
|
272625
|
+
var ie3 = o7((e11, t9, s7) => {
|
272624
272626
|
for (;; ) {
|
272625
272627
|
const n7 = m6.posix.join(e11, t9);
|
272626
272628
|
if (B3(s7, n7))
|
@@ -272631,73 +272633,73 @@ var se3 = o7((e11, t9, s7) => {
|
|
272631
272633
|
e11 = l4;
|
272632
272634
|
}
|
272633
272635
|
}, "findUp");
|
272634
|
-
var
|
272635
|
-
var
|
272636
|
+
var G3 = /^\.{1,2}(\/.*)?$/;
|
272637
|
+
var Q3 = o7((e11) => {
|
272636
272638
|
const t9 = E5(e11);
|
272637
|
-
return
|
272639
|
+
return G3.test(t9) ? t9 : `./${t9}`;
|
272638
272640
|
}, "normalizeRelativePath");
|
272639
|
-
function
|
272641
|
+
function $e2(e11, t9 = false) {
|
272640
272642
|
const s7 = e11.length;
|
272641
|
-
let n7 = 0, l4 = "", i7 = 0,
|
272642
|
-
function _5(c3,
|
272643
|
-
let
|
272644
|
-
for (;
|
272645
|
-
let
|
272646
|
-
if (
|
272647
|
-
|
272648
|
-
else if (
|
272649
|
-
|
272650
|
-
else if (
|
272651
|
-
|
272643
|
+
let n7 = 0, l4 = "", i7 = 0, r7 = 16, f5 = 0, u6 = 0, g5 = 0, w5 = 0, b4 = 0;
|
272644
|
+
function _5(c3, y4) {
|
272645
|
+
let D3 = 0, T4 = 0;
|
272646
|
+
for (;D3 < c3; ) {
|
272647
|
+
let p5 = e11.charCodeAt(n7);
|
272648
|
+
if (p5 >= 48 && p5 <= 57)
|
272649
|
+
T4 = T4 * 16 + p5 - 48;
|
272650
|
+
else if (p5 >= 65 && p5 <= 70)
|
272651
|
+
T4 = T4 * 16 + p5 - 65 + 10;
|
272652
|
+
else if (p5 >= 97 && p5 <= 102)
|
272653
|
+
T4 = T4 * 16 + p5 - 97 + 10;
|
272652
272654
|
else
|
272653
272655
|
break;
|
272654
|
-
n7++,
|
272656
|
+
n7++, D3++;
|
272655
272657
|
}
|
272656
|
-
return
|
272658
|
+
return D3 < c3 && (T4 = -1), T4;
|
272657
272659
|
}
|
272658
272660
|
o7(_5, "scanHexDigits");
|
272659
272661
|
function d6(c3) {
|
272660
|
-
n7 = c3, l4 = "", i7 = 0,
|
272662
|
+
n7 = c3, l4 = "", i7 = 0, r7 = 16, b4 = 0;
|
272661
272663
|
}
|
272662
272664
|
o7(d6, "setPosition");
|
272663
|
-
function
|
272665
|
+
function j3() {
|
272664
272666
|
let c3 = n7;
|
272665
272667
|
if (e11.charCodeAt(n7) === 48)
|
272666
272668
|
n7++;
|
272667
272669
|
else
|
272668
|
-
for (n7++;n7 < e11.length &&
|
272670
|
+
for (n7++;n7 < e11.length && I6(e11.charCodeAt(n7)); )
|
272669
272671
|
n7++;
|
272670
272672
|
if (n7 < e11.length && e11.charCodeAt(n7) === 46)
|
272671
|
-
if (n7++, n7 < e11.length &&
|
272672
|
-
for (n7++;n7 < e11.length &&
|
272673
|
+
if (n7++, n7 < e11.length && I6(e11.charCodeAt(n7)))
|
272674
|
+
for (n7++;n7 < e11.length && I6(e11.charCodeAt(n7)); )
|
272673
272675
|
n7++;
|
272674
272676
|
else
|
272675
272677
|
return b4 = 3, e11.substring(c3, n7);
|
272676
|
-
let
|
272678
|
+
let y4 = n7;
|
272677
272679
|
if (n7 < e11.length && (e11.charCodeAt(n7) === 69 || e11.charCodeAt(n7) === 101))
|
272678
|
-
if (n7++, (n7 < e11.length && e11.charCodeAt(n7) === 43 || e11.charCodeAt(n7) === 45) && n7++, n7 < e11.length &&
|
272679
|
-
for (n7++;n7 < e11.length &&
|
272680
|
+
if (n7++, (n7 < e11.length && e11.charCodeAt(n7) === 43 || e11.charCodeAt(n7) === 45) && n7++, n7 < e11.length && I6(e11.charCodeAt(n7))) {
|
272681
|
+
for (n7++;n7 < e11.length && I6(e11.charCodeAt(n7)); )
|
272680
272682
|
n7++;
|
272681
|
-
|
272683
|
+
y4 = n7;
|
272682
272684
|
} else
|
272683
272685
|
b4 = 3;
|
272684
|
-
return e11.substring(c3,
|
272686
|
+
return e11.substring(c3, y4);
|
272685
272687
|
}
|
272686
|
-
o7(
|
272687
|
-
function
|
272688
|
-
let c3 = "",
|
272688
|
+
o7(j3, "scanNumber");
|
272689
|
+
function v6() {
|
272690
|
+
let c3 = "", y4 = n7;
|
272689
272691
|
for (;; ) {
|
272690
272692
|
if (n7 >= s7) {
|
272691
|
-
c3 += e11.substring(
|
272693
|
+
c3 += e11.substring(y4, n7), b4 = 2;
|
272692
272694
|
break;
|
272693
272695
|
}
|
272694
|
-
const
|
272695
|
-
if (
|
272696
|
-
c3 += e11.substring(
|
272696
|
+
const D3 = e11.charCodeAt(n7);
|
272697
|
+
if (D3 === 34) {
|
272698
|
+
c3 += e11.substring(y4, n7), n7++;
|
272697
272699
|
break;
|
272698
272700
|
}
|
272699
|
-
if (
|
272700
|
-
if (c3 += e11.substring(
|
272701
|
+
if (D3 === 92) {
|
272702
|
+
if (c3 += e11.substring(y4, n7), n7++, n7 >= s7) {
|
272701
272703
|
b4 = 2;
|
272702
272704
|
break;
|
272703
272705
|
}
|
@@ -272728,18 +272730,18 @@ function je2(e11, t9 = false) {
|
|
272728
272730
|
c3 += "\t";
|
272729
272731
|
break;
|
272730
272732
|
case 117:
|
272731
|
-
const
|
272732
|
-
|
272733
|
+
const p5 = _5(4);
|
272734
|
+
p5 >= 0 ? c3 += String.fromCharCode(p5) : b4 = 4;
|
272733
272735
|
break;
|
272734
272736
|
default:
|
272735
272737
|
b4 = 5;
|
272736
272738
|
}
|
272737
|
-
|
272739
|
+
y4 = n7;
|
272738
272740
|
continue;
|
272739
272741
|
}
|
272740
|
-
if (
|
272741
|
-
if (x5(
|
272742
|
-
c3 += e11.substring(
|
272742
|
+
if (D3 >= 0 && D3 <= 31)
|
272743
|
+
if (x5(D3)) {
|
272744
|
+
c3 += e11.substring(y4, n7), b4 = 2;
|
272743
272745
|
break;
|
272744
272746
|
} else
|
272745
272747
|
b4 = 6;
|
@@ -272747,60 +272749,60 @@ function je2(e11, t9 = false) {
|
|
272747
272749
|
}
|
272748
272750
|
return c3;
|
272749
272751
|
}
|
272750
|
-
o7(
|
272751
|
-
function
|
272752
|
-
if (l4 = "", b4 = 0, i7 = n7,
|
272753
|
-
return i7 = s7,
|
272752
|
+
o7(v6, "scanString");
|
272753
|
+
function A5() {
|
272754
|
+
if (l4 = "", b4 = 0, i7 = n7, u6 = f5, w5 = g5, n7 >= s7)
|
272755
|
+
return i7 = s7, r7 = 17;
|
272754
272756
|
let c3 = e11.charCodeAt(n7);
|
272755
|
-
if (
|
272757
|
+
if (H3(c3)) {
|
272756
272758
|
do
|
272757
272759
|
n7++, l4 += String.fromCharCode(c3), c3 = e11.charCodeAt(n7);
|
272758
|
-
while (
|
272759
|
-
return
|
272760
|
+
while (H3(c3));
|
272761
|
+
return r7 = 15;
|
272760
272762
|
}
|
272761
272763
|
if (x5(c3))
|
272762
272764
|
return n7++, l4 += String.fromCharCode(c3), c3 === 13 && e11.charCodeAt(n7) === 10 && (n7++, l4 += `
|
272763
|
-
`), f5++, g5 = n7,
|
272765
|
+
`), f5++, g5 = n7, r7 = 14;
|
272764
272766
|
switch (c3) {
|
272765
272767
|
case 123:
|
272766
|
-
return n7++,
|
272768
|
+
return n7++, r7 = 1;
|
272767
272769
|
case 125:
|
272768
|
-
return n7++,
|
272770
|
+
return n7++, r7 = 2;
|
272769
272771
|
case 91:
|
272770
|
-
return n7++,
|
272772
|
+
return n7++, r7 = 3;
|
272771
272773
|
case 93:
|
272772
|
-
return n7++,
|
272774
|
+
return n7++, r7 = 4;
|
272773
272775
|
case 58:
|
272774
|
-
return n7++,
|
272776
|
+
return n7++, r7 = 6;
|
272775
272777
|
case 44:
|
272776
|
-
return n7++,
|
272778
|
+
return n7++, r7 = 5;
|
272777
272779
|
case 34:
|
272778
|
-
return n7++, l4 =
|
272780
|
+
return n7++, l4 = v6(), r7 = 10;
|
272779
272781
|
case 47:
|
272780
|
-
const
|
272782
|
+
const y4 = n7 - 1;
|
272781
272783
|
if (e11.charCodeAt(n7 + 1) === 47) {
|
272782
272784
|
for (n7 += 2;n7 < s7 && !x5(e11.charCodeAt(n7)); )
|
272783
272785
|
n7++;
|
272784
|
-
return l4 = e11.substring(
|
272786
|
+
return l4 = e11.substring(y4, n7), r7 = 12;
|
272785
272787
|
}
|
272786
272788
|
if (e11.charCodeAt(n7 + 1) === 42) {
|
272787
272789
|
n7 += 2;
|
272788
|
-
const
|
272789
|
-
let
|
272790
|
-
for (;n7 <
|
272791
|
-
const
|
272792
|
-
if (
|
272793
|
-
n7 += 2,
|
272790
|
+
const D3 = s7 - 1;
|
272791
|
+
let T4 = false;
|
272792
|
+
for (;n7 < D3; ) {
|
272793
|
+
const p5 = e11.charCodeAt(n7);
|
272794
|
+
if (p5 === 42 && e11.charCodeAt(n7 + 1) === 47) {
|
272795
|
+
n7 += 2, T4 = true;
|
272794
272796
|
break;
|
272795
272797
|
}
|
272796
|
-
n7++, x5(
|
272798
|
+
n7++, x5(p5) && (p5 === 13 && e11.charCodeAt(n7) === 10 && n7++, f5++, g5 = n7);
|
272797
272799
|
}
|
272798
|
-
return
|
272800
|
+
return T4 || (n7++, b4 = 1), l4 = e11.substring(y4, n7), r7 = 13;
|
272799
272801
|
}
|
272800
|
-
return l4 += String.fromCharCode(c3), n7++,
|
272802
|
+
return l4 += String.fromCharCode(c3), n7++, r7 = 16;
|
272801
272803
|
case 45:
|
272802
|
-
if (l4 += String.fromCharCode(c3), n7++, n7 === s7 || !
|
272803
|
-
return
|
272804
|
+
if (l4 += String.fromCharCode(c3), n7++, n7 === s7 || !I6(e11.charCodeAt(n7)))
|
272805
|
+
return r7 = 16;
|
272804
272806
|
case 48:
|
272805
272807
|
case 49:
|
272806
272808
|
case 50:
|
@@ -272811,27 +272813,27 @@ function je2(e11, t9 = false) {
|
|
272811
272813
|
case 55:
|
272812
272814
|
case 56:
|
272813
272815
|
case 57:
|
272814
|
-
return l4 +=
|
272816
|
+
return l4 += j3(), r7 = 11;
|
272815
272817
|
default:
|
272816
|
-
for (;n7 < s7 &&
|
272818
|
+
for (;n7 < s7 && h7(c3); )
|
272817
272819
|
n7++, c3 = e11.charCodeAt(n7);
|
272818
272820
|
if (i7 !== n7) {
|
272819
272821
|
switch (l4 = e11.substring(i7, n7), l4) {
|
272820
272822
|
case "true":
|
272821
|
-
return
|
272823
|
+
return r7 = 8;
|
272822
272824
|
case "false":
|
272823
|
-
return
|
272825
|
+
return r7 = 9;
|
272824
272826
|
case "null":
|
272825
|
-
return
|
272827
|
+
return r7 = 7;
|
272826
272828
|
}
|
272827
|
-
return
|
272829
|
+
return r7 = 16;
|
272828
272830
|
}
|
272829
|
-
return l4 += String.fromCharCode(c3), n7++,
|
272831
|
+
return l4 += String.fromCharCode(c3), n7++, r7 = 16;
|
272830
272832
|
}
|
272831
272833
|
}
|
272832
|
-
o7(
|
272833
|
-
function
|
272834
|
-
if (
|
272834
|
+
o7(A5, "scanNext");
|
272835
|
+
function h7(c3) {
|
272836
|
+
if (H3(c3) || x5(c3))
|
272835
272837
|
return false;
|
272836
272838
|
switch (c3) {
|
272837
272839
|
case 125:
|
@@ -272846,88 +272848,97 @@ function je2(e11, t9 = false) {
|
|
272846
272848
|
}
|
272847
272849
|
return true;
|
272848
272850
|
}
|
272849
|
-
o7(
|
272851
|
+
o7(h7, "isUnknownContentCharacter");
|
272850
272852
|
function L5() {
|
272851
272853
|
let c3;
|
272852
272854
|
do
|
272853
|
-
c3 =
|
272855
|
+
c3 = A5();
|
272854
272856
|
while (c3 >= 12 && c3 <= 15);
|
272855
272857
|
return c3;
|
272856
272858
|
}
|
272857
|
-
return o7(L5, "scanNextNonTrivia"), { setPosition: d6, getPosition: o7(() => n7, "getPosition"), scan: t9 ? L5 :
|
272859
|
+
return o7(L5, "scanNextNonTrivia"), { setPosition: d6, getPosition: o7(() => n7, "getPosition"), scan: t9 ? L5 : A5, getToken: o7(() => r7, "getToken"), getTokenValue: o7(() => l4, "getTokenValue"), getTokenOffset: o7(() => i7, "getTokenOffset"), getTokenLength: o7(() => n7 - i7, "getTokenLength"), getTokenStartLine: o7(() => u6, "getTokenStartLine"), getTokenStartCharacter: o7(() => i7 - w5, "getTokenStartCharacter"), getTokenError: o7(() => b4, "getTokenError") };
|
272858
272860
|
}
|
272859
|
-
o7(
|
272860
|
-
function
|
272861
|
+
o7($e2, "createScanner");
|
272862
|
+
function H3(e11) {
|
272861
272863
|
return e11 === 32 || e11 === 9;
|
272862
272864
|
}
|
272863
|
-
o7(
|
272865
|
+
o7(H3, "isWhiteSpace");
|
272864
272866
|
function x5(e11) {
|
272865
272867
|
return e11 === 10 || e11 === 13;
|
272866
272868
|
}
|
272867
272869
|
o7(x5, "isLineBreak");
|
272868
|
-
function
|
272870
|
+
function I6(e11) {
|
272869
272871
|
return e11 >= 48 && e11 <= 57;
|
272870
272872
|
}
|
272871
|
-
o7(
|
272872
|
-
var
|
272873
|
+
o7(I6, "isDigit");
|
272874
|
+
var oe3;
|
272873
272875
|
(function(e11) {
|
272874
272876
|
e11[e11.lineFeed = 10] = "lineFeed", e11[e11.carriageReturn = 13] = "carriageReturn", e11[e11.space = 32] = "space", e11[e11._0 = 48] = "_0", e11[e11._1 = 49] = "_1", e11[e11._2 = 50] = "_2", e11[e11._3 = 51] = "_3", e11[e11._4 = 52] = "_4", e11[e11._5 = 53] = "_5", e11[e11._6 = 54] = "_6", e11[e11._7 = 55] = "_7", e11[e11._8 = 56] = "_8", e11[e11._9 = 57] = "_9", e11[e11.a = 97] = "a", e11[e11.b = 98] = "b", e11[e11.c = 99] = "c", e11[e11.d = 100] = "d", e11[e11.e = 101] = "e", e11[e11.f = 102] = "f", e11[e11.g = 103] = "g", e11[e11.h = 104] = "h", e11[e11.i = 105] = "i", e11[e11.j = 106] = "j", e11[e11.k = 107] = "k", e11[e11.l = 108] = "l", e11[e11.m = 109] = "m", e11[e11.n = 110] = "n", e11[e11.o = 111] = "o", e11[e11.p = 112] = "p", e11[e11.q = 113] = "q", e11[e11.r = 114] = "r", e11[e11.s = 115] = "s", e11[e11.t = 116] = "t", e11[e11.u = 117] = "u", e11[e11.v = 118] = "v", e11[e11.w = 119] = "w", e11[e11.x = 120] = "x", e11[e11.y = 121] = "y", e11[e11.z = 122] = "z", e11[e11.A = 65] = "A", e11[e11.B = 66] = "B", e11[e11.C = 67] = "C", e11[e11.D = 68] = "D", e11[e11.E = 69] = "E", e11[e11.F = 70] = "F", e11[e11.G = 71] = "G", e11[e11.H = 72] = "H", e11[e11.I = 73] = "I", e11[e11.J = 74] = "J", e11[e11.K = 75] = "K", e11[e11.L = 76] = "L", e11[e11.M = 77] = "M", e11[e11.N = 78] = "N", e11[e11.O = 79] = "O", e11[e11.P = 80] = "P", e11[e11.Q = 81] = "Q", e11[e11.R = 82] = "R", e11[e11.S = 83] = "S", e11[e11.T = 84] = "T", e11[e11.U = 85] = "U", e11[e11.V = 86] = "V", e11[e11.W = 87] = "W", e11[e11.X = 88] = "X", e11[e11.Y = 89] = "Y", e11[e11.Z = 90] = "Z", e11[e11.asterisk = 42] = "asterisk", e11[e11.backslash = 92] = "backslash", e11[e11.closeBrace = 125] = "closeBrace", e11[e11.closeBracket = 93] = "closeBracket", e11[e11.colon = 58] = "colon", e11[e11.comma = 44] = "comma", e11[e11.dot = 46] = "dot", e11[e11.doubleQuote = 34] = "doubleQuote", e11[e11.minus = 45] = "minus", e11[e11.openBrace = 123] = "openBrace", e11[e11.openBracket = 91] = "openBracket", e11[e11.plus = 43] = "plus", e11[e11.slash = 47] = "slash", e11[e11.formFeed = 12] = "formFeed", e11[e11.tab = 9] = "tab";
|
272875
|
-
})(
|
272876
|
-
var
|
272877
|
-
new Array(
|
272878
|
-
` + " ".repeat(t9)), new Array(
|
272879
|
-
` + " ".repeat(t9)), new Array(
|
272880
|
-
` + "\t".repeat(t9)), new Array(
|
272877
|
+
})(oe3 || (oe3 = {})), new Array(20).fill(0).map((e11, t9) => " ".repeat(t9));
|
272878
|
+
var U5 = 200;
|
272879
|
+
new Array(U5).fill(0).map((e11, t9) => `
|
272880
|
+
` + " ".repeat(t9)), new Array(U5).fill(0).map((e11, t9) => "\r" + " ".repeat(t9)), new Array(U5).fill(0).map((e11, t9) => `\r
|
272881
|
+
` + " ".repeat(t9)), new Array(U5).fill(0).map((e11, t9) => `
|
272882
|
+
` + "\t".repeat(t9)), new Array(U5).fill(0).map((e11, t9) => "\r" + "\t".repeat(t9)), new Array(U5).fill(0).map((e11, t9) => `\r
|
272881
272883
|
` + "\t".repeat(t9));
|
272882
272884
|
var R6;
|
272883
272885
|
(function(e11) {
|
272884
272886
|
e11.DEFAULT = { allowTrailingComma: false };
|
272885
272887
|
})(R6 || (R6 = {}));
|
272886
|
-
function
|
272888
|
+
function Ie2(e11, t9 = [], s7 = R6.DEFAULT) {
|
272887
272889
|
let n7 = null, l4 = [];
|
272888
272890
|
const i7 = [];
|
272889
|
-
function u6
|
272890
|
-
Array.isArray(l4) ? l4.push(
|
272891
|
-
}
|
272892
|
-
return o7(
|
272893
|
-
const
|
272894
|
-
u6
|
272895
|
-
}, "onObjectBegin"), onObjectProperty: o7((
|
272896
|
-
n7 =
|
272891
|
+
function r7(u6) {
|
272892
|
+
Array.isArray(l4) ? l4.push(u6) : n7 !== null && (l4[n7] = u6);
|
272893
|
+
}
|
272894
|
+
return o7(r7, "onValue"), Ue2(e11, { onObjectBegin: o7(() => {
|
272895
|
+
const u6 = {};
|
272896
|
+
r7(u6), i7.push(l4), l4 = u6, n7 = null;
|
272897
|
+
}, "onObjectBegin"), onObjectProperty: o7((u6) => {
|
272898
|
+
n7 = u6;
|
272897
272899
|
}, "onObjectProperty"), onObjectEnd: o7(() => {
|
272898
272900
|
l4 = i7.pop();
|
272899
272901
|
}, "onObjectEnd"), onArrayBegin: o7(() => {
|
272900
|
-
const
|
272901
|
-
u6
|
272902
|
+
const u6 = [];
|
272903
|
+
r7(u6), i7.push(l4), l4 = u6, n7 = null;
|
272902
272904
|
}, "onArrayBegin"), onArrayEnd: o7(() => {
|
272903
272905
|
l4 = i7.pop();
|
272904
|
-
}, "onArrayEnd"), onLiteralValue:
|
272905
|
-
t9.push({ error:
|
272906
|
+
}, "onArrayEnd"), onLiteralValue: r7, onError: o7((u6, g5, w5) => {
|
272907
|
+
t9.push({ error: u6, offset: g5, length: w5 });
|
272906
272908
|
}, "onError") }, s7), l4[0];
|
272907
272909
|
}
|
272908
|
-
o7(
|
272909
|
-
function
|
272910
|
-
const n7 =
|
272911
|
-
|
272912
|
-
|
272913
|
-
|
272914
|
-
o7(i7, "toNoArgVisit");
|
272915
|
-
function u6(v6) {
|
272916
|
-
return v6 ? () => v6(n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter(), () => l4.slice()) : () => true;
|
272910
|
+
o7(Ie2, "parse$1");
|
272911
|
+
function Ue2(e11, t9, s7 = R6.DEFAULT) {
|
272912
|
+
const n7 = $e2(e11, false), l4 = [];
|
272913
|
+
let i7 = 0;
|
272914
|
+
function r7(k5) {
|
272915
|
+
return k5 ? () => i7 === 0 && k5(n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter()) : () => true;
|
272917
272916
|
}
|
272918
|
-
o7(
|
272919
|
-
function f5(
|
272920
|
-
return
|
272917
|
+
o7(r7, "toNoArgVisit");
|
272918
|
+
function f5(k5) {
|
272919
|
+
return k5 ? (F3) => i7 === 0 && k5(F3, n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter()) : () => true;
|
272921
272920
|
}
|
272922
272921
|
o7(f5, "toOneArgVisit");
|
272923
|
-
function
|
272924
|
-
return
|
272925
|
-
}
|
272926
|
-
o7(
|
272927
|
-
|
272928
|
-
|
272922
|
+
function u6(k5) {
|
272923
|
+
return k5 ? (F3) => i7 === 0 && k5(F3, n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter(), () => l4.slice()) : () => true;
|
272924
|
+
}
|
272925
|
+
o7(u6, "toOneArgVisitWithPath");
|
272926
|
+
function g5(k5) {
|
272927
|
+
return k5 ? () => {
|
272928
|
+
i7 > 0 ? i7++ : k5(n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter(), () => l4.slice()) === false && (i7 = 1);
|
272929
|
+
} : () => true;
|
272930
|
+
}
|
272931
|
+
o7(g5, "toBeginVisit");
|
272932
|
+
function w5(k5) {
|
272933
|
+
return k5 ? () => {
|
272934
|
+
i7 > 0 && i7--, i7 === 0 && k5(n7.getTokenOffset(), n7.getTokenLength(), n7.getTokenStartLine(), n7.getTokenStartCharacter());
|
272935
|
+
} : () => true;
|
272936
|
+
}
|
272937
|
+
o7(w5, "toEndVisit");
|
272938
|
+
const b4 = g5(t9.onObjectBegin), _5 = u6(t9.onObjectProperty), d6 = w5(t9.onObjectEnd), j3 = g5(t9.onArrayBegin), v6 = w5(t9.onArrayEnd), A5 = u6(t9.onLiteralValue), h7 = f5(t9.onSeparator), L5 = r7(t9.onComment), c3 = f5(t9.onError), y4 = s7 && s7.disallowComments, D3 = s7 && s7.allowTrailingComma;
|
272939
|
+
function T4() {
|
272929
272940
|
for (;; ) {
|
272930
|
-
const
|
272941
|
+
const k5 = n7.scan();
|
272931
272942
|
switch (n7.getTokenError()) {
|
272932
272943
|
case 4:
|
272933
272944
|
p5(14);
|
@@ -272939,7 +272950,7 @@ function Fe2(e11, t9, s7 = R6.DEFAULT) {
|
|
272939
272950
|
p5(13);
|
272940
272951
|
break;
|
272941
272952
|
case 1:
|
272942
|
-
|
272953
|
+
y4 || p5(11);
|
272943
272954
|
break;
|
272944
272955
|
case 2:
|
272945
272956
|
p5(12);
|
@@ -272948,10 +272959,10 @@ function Fe2(e11, t9, s7 = R6.DEFAULT) {
|
|
272948
272959
|
p5(16);
|
272949
272960
|
break;
|
272950
272961
|
}
|
272951
|
-
switch (
|
272962
|
+
switch (k5) {
|
272952
272963
|
case 12:
|
272953
272964
|
case 13:
|
272954
|
-
|
272965
|
+
y4 ? p5(10) : L5();
|
272955
272966
|
break;
|
272956
272967
|
case 16:
|
272957
272968
|
p5(1);
|
@@ -272960,36 +272971,36 @@ function Fe2(e11, t9, s7 = R6.DEFAULT) {
|
|
272960
272971
|
case 14:
|
272961
272972
|
break;
|
272962
272973
|
default:
|
272963
|
-
return
|
272974
|
+
return k5;
|
272964
272975
|
}
|
272965
272976
|
}
|
272966
272977
|
}
|
272967
|
-
o7(
|
272968
|
-
function p5(
|
272969
|
-
if (
|
272970
|
-
let
|
272971
|
-
for (;
|
272972
|
-
if (
|
272973
|
-
|
272978
|
+
o7(T4, "scanNext");
|
272979
|
+
function p5(k5, F3 = [], se3 = []) {
|
272980
|
+
if (c3(k5), F3.length + se3.length > 0) {
|
272981
|
+
let N6 = n7.getToken();
|
272982
|
+
for (;N6 !== 17; ) {
|
272983
|
+
if (F3.indexOf(N6) !== -1) {
|
272984
|
+
T4();
|
272974
272985
|
break;
|
272975
|
-
} else if (
|
272986
|
+
} else if (se3.indexOf(N6) !== -1)
|
272976
272987
|
break;
|
272977
|
-
|
272988
|
+
N6 = T4();
|
272978
272989
|
}
|
272979
272990
|
}
|
272980
272991
|
}
|
272981
272992
|
o7(p5, "handleError");
|
272982
|
-
function
|
272983
|
-
const
|
272984
|
-
return
|
272993
|
+
function a8(k5) {
|
272994
|
+
const F3 = n7.getTokenValue();
|
272995
|
+
return k5 ? A5(F3) : (_5(F3), l4.push(F3)), T4(), true;
|
272985
272996
|
}
|
272986
|
-
o7(
|
272987
|
-
function
|
272997
|
+
o7(a8, "parseString");
|
272998
|
+
function S4() {
|
272988
272999
|
switch (n7.getToken()) {
|
272989
273000
|
case 11:
|
272990
|
-
const
|
272991
|
-
let
|
272992
|
-
isNaN(
|
273001
|
+
const k5 = n7.getTokenValue();
|
273002
|
+
let F3 = Number(k5);
|
273003
|
+
isNaN(F3) && (p5(2), F3 = 0), A5(F3);
|
272993
273004
|
break;
|
272994
273005
|
case 7:
|
272995
273006
|
A5(null);
|
@@ -273003,100 +273014,100 @@ function Fe2(e11, t9, s7 = R6.DEFAULT) {
|
|
273003
273014
|
default:
|
273004
273015
|
return false;
|
273005
273016
|
}
|
273006
|
-
return
|
273017
|
+
return T4(), true;
|
273007
273018
|
}
|
273008
|
-
o7(
|
273009
|
-
function
|
273010
|
-
return n7.getToken() !== 10 ? (p5(3, [], [2, 5]), false) : (
|
273019
|
+
o7(S4, "parseLiteral");
|
273020
|
+
function Ae2() {
|
273021
|
+
return n7.getToken() !== 10 ? (p5(3, [], [2, 5]), false) : (a8(false), n7.getToken() === 6 ? (h7(":"), T4(), O5() || p5(4, [], [2, 5])) : p5(5, [], [2, 5]), l4.pop(), true);
|
273011
273022
|
}
|
273012
|
-
o7(
|
273013
|
-
function
|
273014
|
-
|
273015
|
-
let
|
273023
|
+
o7(Ae2, "parseProperty");
|
273024
|
+
function ye2() {
|
273025
|
+
b4(), T4();
|
273026
|
+
let k5 = false;
|
273016
273027
|
for (;n7.getToken() !== 2 && n7.getToken() !== 17; ) {
|
273017
273028
|
if (n7.getToken() === 5) {
|
273018
|
-
if (
|
273029
|
+
if (k5 || p5(4, [], []), h7(","), T4(), n7.getToken() === 2 && D3)
|
273019
273030
|
break;
|
273020
273031
|
} else
|
273021
|
-
|
273022
|
-
|
273032
|
+
k5 && p5(6, [], []);
|
273033
|
+
Ae2() || p5(4, [], [2, 5]), k5 = true;
|
273023
273034
|
}
|
273024
|
-
return
|
273035
|
+
return d6(), n7.getToken() !== 2 ? p5(7, [2], []) : T4(), true;
|
273025
273036
|
}
|
273026
|
-
o7(
|
273027
|
-
function
|
273028
|
-
|
273029
|
-
let
|
273037
|
+
o7(ye2, "parseObject");
|
273038
|
+
function _e2() {
|
273039
|
+
j3(), T4();
|
273040
|
+
let k5 = true, F3 = false;
|
273030
273041
|
for (;n7.getToken() !== 4 && n7.getToken() !== 17; ) {
|
273031
273042
|
if (n7.getToken() === 5) {
|
273032
|
-
if (
|
273043
|
+
if (F3 || p5(4, [], []), h7(","), T4(), n7.getToken() === 4 && D3)
|
273033
273044
|
break;
|
273034
273045
|
} else
|
273035
|
-
|
273036
|
-
|
273046
|
+
F3 && p5(6, [], []);
|
273047
|
+
k5 ? (l4.push(0), k5 = false) : l4[l4.length - 1]++, O5() || p5(4, [], [4, 5]), F3 = true;
|
273037
273048
|
}
|
273038
|
-
return
|
273049
|
+
return v6(), k5 || l4.pop(), n7.getToken() !== 4 ? p5(8, [4], []) : T4(), true;
|
273039
273050
|
}
|
273040
|
-
o7(
|
273041
|
-
function
|
273051
|
+
o7(_e2, "parseArray");
|
273052
|
+
function O5() {
|
273042
273053
|
switch (n7.getToken()) {
|
273043
273054
|
case 3:
|
273044
|
-
return
|
273055
|
+
return _e2();
|
273045
273056
|
case 1:
|
273046
|
-
return
|
273057
|
+
return ye2();
|
273047
273058
|
case 10:
|
273048
|
-
return
|
273059
|
+
return a8(true);
|
273049
273060
|
default:
|
273050
|
-
return
|
273061
|
+
return S4();
|
273051
273062
|
}
|
273052
273063
|
}
|
273053
|
-
return o7(
|
273064
|
+
return o7(O5, "parseValue"), T4(), n7.getToken() === 17 ? s7.allowEmptyContent ? true : (p5(4, [], []), false) : O5() ? (n7.getToken() !== 17 && p5(9, [], []), true) : (p5(4, [], []), false);
|
273054
273065
|
}
|
273055
|
-
o7(
|
273056
|
-
var
|
273066
|
+
o7(Ue2, "visit");
|
273067
|
+
var re3;
|
273057
273068
|
(function(e11) {
|
273058
273069
|
e11[e11.None = 0] = "None", e11[e11.UnexpectedEndOfComment = 1] = "UnexpectedEndOfComment", e11[e11.UnexpectedEndOfString = 2] = "UnexpectedEndOfString", e11[e11.UnexpectedEndOfNumber = 3] = "UnexpectedEndOfNumber", e11[e11.InvalidUnicode = 4] = "InvalidUnicode", e11[e11.InvalidEscapeCharacter = 5] = "InvalidEscapeCharacter", e11[e11.InvalidCharacter = 6] = "InvalidCharacter";
|
273059
|
-
})(
|
273060
|
-
var
|
273070
|
+
})(re3 || (re3 = {}));
|
273071
|
+
var ue3;
|
273061
273072
|
(function(e11) {
|
273062
273073
|
e11[e11.OpenBraceToken = 1] = "OpenBraceToken", e11[e11.CloseBraceToken = 2] = "CloseBraceToken", e11[e11.OpenBracketToken = 3] = "OpenBracketToken", e11[e11.CloseBracketToken = 4] = "CloseBracketToken", e11[e11.CommaToken = 5] = "CommaToken", e11[e11.ColonToken = 6] = "ColonToken", e11[e11.NullKeyword = 7] = "NullKeyword", e11[e11.TrueKeyword = 8] = "TrueKeyword", e11[e11.FalseKeyword = 9] = "FalseKeyword", e11[e11.StringLiteral = 10] = "StringLiteral", e11[e11.NumericLiteral = 11] = "NumericLiteral", e11[e11.LineCommentTrivia = 12] = "LineCommentTrivia", e11[e11.BlockCommentTrivia = 13] = "BlockCommentTrivia", e11[e11.LineBreakTrivia = 14] = "LineBreakTrivia", e11[e11.Trivia = 15] = "Trivia", e11[e11.Unknown = 16] = "Unknown", e11[e11.EOF = 17] = "EOF";
|
273063
|
-
})(
|
273064
|
-
var
|
273065
|
-
var
|
273074
|
+
})(ue3 || (ue3 = {}));
|
273075
|
+
var xe3 = Ie2;
|
273076
|
+
var fe4;
|
273066
273077
|
(function(e11) {
|
273067
273078
|
e11[e11.InvalidSymbol = 1] = "InvalidSymbol", e11[e11.InvalidNumberFormat = 2] = "InvalidNumberFormat", e11[e11.PropertyNameExpected = 3] = "PropertyNameExpected", e11[e11.ValueExpected = 4] = "ValueExpected", e11[e11.ColonExpected = 5] = "ColonExpected", e11[e11.CommaExpected = 6] = "CommaExpected", e11[e11.CloseBraceExpected = 7] = "CloseBraceExpected", e11[e11.CloseBracketExpected = 8] = "CloseBracketExpected", e11[e11.EndOfFileExpected = 9] = "EndOfFileExpected", e11[e11.InvalidCommentToken = 10] = "InvalidCommentToken", e11[e11.UnexpectedEndOfComment = 11] = "UnexpectedEndOfComment", e11[e11.UnexpectedEndOfString = 12] = "UnexpectedEndOfString", e11[e11.UnexpectedEndOfNumber = 13] = "UnexpectedEndOfNumber", e11[e11.InvalidUnicode = 14] = "InvalidUnicode", e11[e11.InvalidEscapeCharacter = 15] = "InvalidEscapeCharacter", e11[e11.InvalidCharacter = 16] = "InvalidCharacter";
|
273068
|
-
})(
|
273069
|
-
var
|
273070
|
-
var
|
273079
|
+
})(fe4 || (fe4 = {}));
|
273080
|
+
var ce3 = o7((e11, t9) => xe3(Le2(t9, e11, "utf8")), "readJsonc");
|
273081
|
+
var X4 = Symbol("implicitBaseUrl");
|
273071
273082
|
var $4 = "${configDir}";
|
273072
|
-
var
|
273073
|
-
const { findPnpApi: e11 } =
|
273083
|
+
var Se2 = o7(() => {
|
273084
|
+
const { findPnpApi: e11 } = Fe2;
|
273074
273085
|
return e11 && e11(process.cwd());
|
273075
273086
|
}, "getPnpApi");
|
273076
|
-
var
|
273087
|
+
var Y3 = o7((e11, t9, s7, n7) => {
|
273077
273088
|
const l4 = `resolveFromPackageJsonPath:${e11}:${t9}:${s7}`;
|
273078
273089
|
if (n7 != null && n7.has(l4))
|
273079
273090
|
return n7.get(l4);
|
273080
|
-
const i7 =
|
273091
|
+
const i7 = ce3(e11, n7);
|
273081
273092
|
if (!i7)
|
273082
273093
|
return;
|
273083
|
-
let
|
273094
|
+
let r7 = t9 || "tsconfig.json";
|
273084
273095
|
if (!s7 && i7.exports)
|
273085
273096
|
try {
|
273086
273097
|
const [f5] = v5(i7.exports, t9, ["require", "types"]);
|
273087
|
-
|
273098
|
+
r7 = f5;
|
273088
273099
|
} catch {
|
273089
273100
|
return false;
|
273090
273101
|
}
|
273091
273102
|
else
|
273092
|
-
!t9 && i7.tsconfig && (
|
273093
|
-
return
|
273103
|
+
!t9 && i7.tsconfig && (r7 = i7.tsconfig);
|
273104
|
+
return r7 = m6.join(e11, "..", r7), n7 == null || n7.set(l4, r7), r7;
|
273094
273105
|
}, "resolveFromPackageJsonPath");
|
273095
|
-
var
|
273096
|
-
var
|
273097
|
-
var
|
273106
|
+
var Z3 = "package.json";
|
273107
|
+
var q5 = "tsconfig.json";
|
273108
|
+
var Ne2 = o7((e11, t9, s7) => {
|
273098
273109
|
let n7 = e11;
|
273099
|
-
if (e11 === ".." && (n7 = m6.join(n7,
|
273110
|
+
if (e11 === ".." && (n7 = m6.join(n7, q5)), e11[0] === "." && (n7 = m6.resolve(t9, n7)), m6.isAbsolute(n7)) {
|
273100
273111
|
if (B3(s7, n7)) {
|
273101
273112
|
if (P4(s7, n7).isFile())
|
273102
273113
|
return n7;
|
@@ -273107,35 +273118,35 @@ var Be2 = o7((e11, t9, s7) => {
|
|
273107
273118
|
}
|
273108
273119
|
return;
|
273109
273120
|
}
|
273110
|
-
const [l4, ...i7] = e11.split("/"),
|
273111
|
-
if (
|
273112
|
-
const { resolveRequest: d6 } =
|
273121
|
+
const [l4, ...i7] = e11.split("/"), r7 = l4[0] === "@" ? `${l4}/${i7.shift()}` : l4, f5 = i7.join("/"), u6 = Se2();
|
273122
|
+
if (u6) {
|
273123
|
+
const { resolveRequest: d6 } = u6;
|
273113
273124
|
try {
|
273114
|
-
if (
|
273115
|
-
const
|
273116
|
-
if (
|
273117
|
-
const
|
273118
|
-
if (
|
273119
|
-
return
|
273125
|
+
if (r7 === e11) {
|
273126
|
+
const j3 = d6(m6.join(r7, Z3), t9);
|
273127
|
+
if (j3) {
|
273128
|
+
const v6 = Y3(j3, f5, false, s7);
|
273129
|
+
if (v6 && B3(s7, v6))
|
273130
|
+
return v6;
|
273120
273131
|
}
|
273121
273132
|
} else {
|
273122
|
-
let
|
273133
|
+
let j3;
|
273123
273134
|
try {
|
273124
|
-
|
273135
|
+
j3 = d6(e11, t9, { extensions: [".json"] });
|
273125
273136
|
} catch {
|
273126
|
-
|
273137
|
+
j3 = d6(m6.join(e11, q5), t9);
|
273127
273138
|
}
|
273128
|
-
if (
|
273129
|
-
return
|
273139
|
+
if (j3)
|
273140
|
+
return j3;
|
273130
273141
|
}
|
273131
273142
|
} catch {}
|
273132
273143
|
}
|
273133
|
-
const g5 =
|
273144
|
+
const g5 = ie3(m6.resolve(t9), m6.join("node_modules", r7), s7);
|
273134
273145
|
if (!g5 || !P4(s7, g5).isDirectory())
|
273135
273146
|
return;
|
273136
|
-
const
|
273137
|
-
if (B3(s7,
|
273138
|
-
const d6 =
|
273147
|
+
const w5 = m6.join(g5, Z3);
|
273148
|
+
if (B3(s7, w5)) {
|
273149
|
+
const d6 = Y3(w5, f5, false, s7);
|
273139
273150
|
if (d6 === false)
|
273140
273151
|
return;
|
273141
273152
|
if (d6 && B3(s7, d6) && P4(s7, d6).isFile())
|
@@ -273149,48 +273160,59 @@ var Be2 = o7((e11, t9, s7) => {
|
|
273149
273160
|
}
|
273150
273161
|
if (B3(s7, b4)) {
|
273151
273162
|
if (P4(s7, b4).isDirectory()) {
|
273152
|
-
const d6 = m6.join(b4,
|
273163
|
+
const d6 = m6.join(b4, Z3);
|
273153
273164
|
if (B3(s7, d6)) {
|
273154
|
-
const
|
273155
|
-
if (
|
273156
|
-
return
|
273165
|
+
const v6 = Y3(d6, "", true, s7);
|
273166
|
+
if (v6 && B3(s7, v6))
|
273167
|
+
return v6;
|
273157
273168
|
}
|
273158
|
-
const
|
273159
|
-
if (B3(s7,
|
273160
|
-
return
|
273169
|
+
const j3 = m6.join(b4, q5);
|
273170
|
+
if (B3(s7, j3))
|
273171
|
+
return j3;
|
273161
273172
|
} else if (_5)
|
273162
273173
|
return b4;
|
273163
273174
|
}
|
273164
273175
|
}, "resolveExtendsPath");
|
273165
|
-
var
|
273166
|
-
var
|
273167
|
-
var
|
273168
|
-
const l4 =
|
273176
|
+
var K3 = o7((e11, t9) => Q3(m6.relative(e11, t9)), "pathRelative");
|
273177
|
+
var ae3 = ["files", "include", "exclude"];
|
273178
|
+
var ge3 = o7((e11, t9, s7) => {
|
273179
|
+
const n7 = m6.join(t9, s7), l4 = m6.relative(e11, n7);
|
273180
|
+
return E5(l4) || "./";
|
273181
|
+
}, "resolveAndRelativize");
|
273182
|
+
var Pe2 = o7((e11, t9, s7) => {
|
273183
|
+
const n7 = m6.relative(e11, t9);
|
273184
|
+
if (!n7)
|
273185
|
+
return s7;
|
273186
|
+
const l4 = s7.startsWith("./") ? s7.slice(2) : s7;
|
273187
|
+
return E5(`${n7}/${l4}`);
|
273188
|
+
}, "prefixPattern");
|
273189
|
+
var Re2 = o7((e11, t9, s7, n7) => {
|
273190
|
+
const l4 = Ne2(e11, t9, n7);
|
273169
273191
|
if (!l4)
|
273170
273192
|
throw new Error(`File '${e11}' not found.`);
|
273171
273193
|
if (s7.has(l4))
|
273172
273194
|
throw new Error(`Circularity detected while resolving configuration: ${l4}`);
|
273173
273195
|
s7.add(l4);
|
273174
|
-
const i7 = m6.dirname(l4),
|
273175
|
-
delete
|
273176
|
-
const { compilerOptions: f5 } =
|
273196
|
+
const i7 = m6.dirname(l4), r7 = pe3(l4, n7, s7);
|
273197
|
+
delete r7.references;
|
273198
|
+
const { compilerOptions: f5 } = r7;
|
273177
273199
|
if (f5) {
|
273178
|
-
const { baseUrl:
|
273179
|
-
|
273180
|
-
|
273181
|
-
g5 &&
|
273200
|
+
const { baseUrl: u6 } = f5;
|
273201
|
+
u6 && !u6.startsWith($4) && (f5.baseUrl = ge3(t9, i7, u6));
|
273202
|
+
const { outDir: g5 } = f5;
|
273203
|
+
g5 && !g5.startsWith($4) && (f5.outDir = ge3(t9, i7, g5));
|
273182
273204
|
}
|
273183
|
-
for (const
|
273184
|
-
const g5 = u6
|
273185
|
-
g5 && (u6
|
273205
|
+
for (const u6 of ae3) {
|
273206
|
+
const g5 = r7[u6];
|
273207
|
+
g5 && (r7[u6] = g5.map((w5) => w5.startsWith($4) ? w5 : Pe2(t9, i7, w5)));
|
273186
273208
|
}
|
273187
|
-
return
|
273209
|
+
return r7;
|
273188
273210
|
}, "resolveExtends");
|
273189
|
-
var
|
273190
|
-
var
|
273211
|
+
var We2 = ["outDir", "declarationDir"];
|
273212
|
+
var pe3 = o7((e11, t9, s7 = new Set) => {
|
273191
273213
|
let n7;
|
273192
273214
|
try {
|
273193
|
-
n7 =
|
273215
|
+
n7 = ce3(e11, t9) || {};
|
273194
273216
|
} catch {
|
273195
273217
|
throw new Error(`Cannot resolve tsconfig at path: ${e11}`);
|
273196
273218
|
}
|
@@ -273199,34 +273221,34 @@ var ce3 = o7((e11, t9, s7 = new Set) => {
|
|
273199
273221
|
const l4 = m6.dirname(e11);
|
273200
273222
|
if (n7.compilerOptions) {
|
273201
273223
|
const { compilerOptions: i7 } = n7;
|
273202
|
-
i7.paths && !i7.baseUrl && (i7[
|
273224
|
+
i7.paths && !i7.baseUrl && (i7[X4] = l4);
|
273203
273225
|
}
|
273204
273226
|
if (n7.extends) {
|
273205
273227
|
const i7 = Array.isArray(n7.extends) ? n7.extends : [n7.extends];
|
273206
273228
|
delete n7.extends;
|
273207
|
-
for (const
|
273208
|
-
const f5 =
|
273209
|
-
f5.watchOptions && (
|
273229
|
+
for (const r7 of i7.reverse()) {
|
273230
|
+
const f5 = Re2(r7, l4, new Set(s7), t9), u6 = { ...f5, ...n7, compilerOptions: { ...f5.compilerOptions, ...n7.compilerOptions } };
|
273231
|
+
f5.watchOptions && (u6.watchOptions = { ...f5.watchOptions, ...n7.watchOptions }), n7 = u6;
|
273210
273232
|
}
|
273211
273233
|
}
|
273212
273234
|
if (n7.compilerOptions) {
|
273213
|
-
const { compilerOptions: i7 } = n7,
|
273214
|
-
for (const f5 of
|
273215
|
-
const
|
273216
|
-
if (
|
273217
|
-
const g5 = m6.resolve(l4,
|
273218
|
-
i7[f5] =
|
273235
|
+
const { compilerOptions: i7 } = n7, r7 = ["baseUrl", "rootDir"];
|
273236
|
+
for (const f5 of r7) {
|
273237
|
+
const u6 = i7[f5];
|
273238
|
+
if (u6 && !u6.startsWith($4)) {
|
273239
|
+
const g5 = m6.resolve(l4, u6), w5 = K3(l4, g5);
|
273240
|
+
i7[f5] = w5;
|
273219
273241
|
}
|
273220
273242
|
}
|
273221
|
-
for (const f5 of
|
273222
|
-
let
|
273223
|
-
|
273243
|
+
for (const f5 of We2) {
|
273244
|
+
let u6 = i7[f5];
|
273245
|
+
u6 && (Array.isArray(n7.exclude) || (n7.exclude = []), n7.exclude.includes(u6) || n7.exclude.push(u6), u6.startsWith($4) || (u6 = Q3(u6)), i7[f5] = u6);
|
273224
273246
|
}
|
273225
273247
|
} else
|
273226
273248
|
n7.compilerOptions = {};
|
273227
|
-
if (n7.include ? (n7.include = n7.include.map(E5), n7.files && delete n7.files) : n7.files && (n7.files = n7.files.map((i7) => i7.startsWith($4) ? i7 :
|
273249
|
+
if (n7.include ? (n7.include = n7.include.map(E5), n7.files && delete n7.files) : n7.files && (n7.files = n7.files.map((i7) => i7.startsWith($4) ? i7 : Q3(i7))), n7.watchOptions) {
|
273228
273250
|
const { watchOptions: i7 } = n7;
|
273229
|
-
i7.excludeDirectories && (i7.excludeDirectories = i7.excludeDirectories.map((
|
273251
|
+
i7.excludeDirectories && (i7.excludeDirectories = i7.excludeDirectories.map((r7) => E5(m6.resolve(l4, r7))));
|
273230
273252
|
}
|
273231
273253
|
return n7;
|
273232
273254
|
}, "_parseTsconfig");
|
@@ -273234,13 +273256,13 @@ var W4 = o7((e11, t9) => {
|
|
273234
273256
|
if (e11.startsWith($4))
|
273235
273257
|
return E5(m6.join(t9, e11.slice($4.length)));
|
273236
273258
|
}, "interpolateConfigDir");
|
273237
|
-
var
|
273238
|
-
var
|
273239
|
-
var t9, s7, n7, l4, i7,
|
273259
|
+
var Ve2 = ["outDir", "declarationDir", "outFile", "rootDir", "baseUrl", "tsBuildInfoFile"];
|
273260
|
+
var Me2 = o7((e11) => {
|
273261
|
+
var t9, s7, n7, l4, i7, r7, f5, u6, g5, w5, b4, _5, d6, j3, v6, A5, h7, L5, c3, y4, D3, T4, p5;
|
273240
273262
|
if (e11.strict) {
|
273241
273263
|
const a8 = ["noImplicitAny", "noImplicitThis", "strictNullChecks", "strictFunctionTypes", "strictBindCallApply", "strictPropertyInitialization", "strictBuiltinIteratorReturn", "alwaysStrict", "useUnknownInCatchVariables"];
|
273242
|
-
for (const
|
273243
|
-
e11[
|
273264
|
+
for (const S4 of a8)
|
273265
|
+
e11[S4] === undefined && (e11[S4] = true);
|
273244
273266
|
}
|
273245
273267
|
if (e11.target) {
|
273246
273268
|
let a8 = e11.target.toLowerCase();
|
@@ -273248,170 +273270,187 @@ var Ue2 = o7((e11) => {
|
|
273248
273270
|
}
|
273249
273271
|
if (e11.module) {
|
273250
273272
|
let a8 = e11.module.toLowerCase();
|
273251
|
-
a8 === "es2015" && (a8 = "es6"), e11.module = a8, (a8 === "es6" || a8 === "es2020" || a8 === "es2022" || a8 === "esnext" || a8 === "none" || a8 === "system" || a8 === "umd" || a8 === "amd") && ((i7 = e11.moduleResolution) != null || (e11.moduleResolution = "classic")), a8 === "system" && ((
|
273273
|
+
a8 === "es2015" && (a8 = "es6"), e11.module = a8, (a8 === "es6" || a8 === "es2020" || a8 === "es2022" || a8 === "esnext" || a8 === "none" || a8 === "system" || a8 === "umd" || a8 === "amd") && ((i7 = e11.moduleResolution) != null || (e11.moduleResolution = "classic")), a8 === "system" && ((r7 = e11.allowSyntheticDefaultImports) != null || (e11.allowSyntheticDefaultImports = true)), (a8 === "node16" || a8 === "nodenext" || a8 === "preserve") && ((f5 = e11.esModuleInterop) != null || (e11.esModuleInterop = true), (u6 = e11.allowSyntheticDefaultImports) != null || (e11.allowSyntheticDefaultImports = true)), (a8 === "node16" || a8 === "nodenext") && ((g5 = e11.moduleDetection) != null || (e11.moduleDetection = "force"), (w5 = e11.useDefineForClassFields) != null || (e11.useDefineForClassFields = true)), a8 === "node16" && ((b4 = e11.target) != null || (e11.target = "es2022"), (_5 = e11.moduleResolution) != null || (e11.moduleResolution = "node16")), a8 === "nodenext" && ((d6 = e11.target) != null || (e11.target = "esnext"), (j3 = e11.moduleResolution) != null || (e11.moduleResolution = "nodenext")), a8 === "preserve" && ((v6 = e11.moduleResolution) != null || (e11.moduleResolution = "bundler"));
|
273252
273274
|
}
|
273253
273275
|
if (e11.moduleResolution) {
|
273254
273276
|
let a8 = e11.moduleResolution.toLowerCase();
|
273255
|
-
a8 === "node" && (a8 = "node10"), e11.moduleResolution = a8, (a8 === "node16" || a8 === "nodenext" || a8 === "bundler") && ((
|
273277
|
+
a8 === "node" && (a8 = "node10"), e11.moduleResolution = a8, (a8 === "node16" || a8 === "nodenext" || a8 === "bundler") && ((A5 = e11.resolvePackageJsonExports) != null || (e11.resolvePackageJsonExports = true), (h7 = e11.resolvePackageJsonImports) != null || (e11.resolvePackageJsonImports = true)), a8 === "bundler" && ((L5 = e11.allowSyntheticDefaultImports) != null || (e11.allowSyntheticDefaultImports = true), (c3 = e11.resolveJsonModule) != null || (e11.resolveJsonModule = true));
|
273256
273278
|
}
|
273257
|
-
e11.esModuleInterop && ((
|
273279
|
+
e11.esModuleInterop && ((y4 = e11.allowSyntheticDefaultImports) != null || (e11.allowSyntheticDefaultImports = true)), e11.verbatimModuleSyntax && ((D3 = e11.isolatedModules) != null || (e11.isolatedModules = true), (T4 = e11.preserveConstEnums) != null || (e11.preserveConstEnums = true)), e11.isolatedModules && ((p5 = e11.preserveConstEnums) != null || (e11.preserveConstEnums = true));
|
273258
273280
|
}, "normalizeCompilerOptions");
|
273259
|
-
var
|
273260
|
-
const s7 = m6.resolve(e11), n7 =
|
273281
|
+
var me3 = o7((e11, t9 = new Map) => {
|
273282
|
+
const s7 = m6.resolve(e11), n7 = pe3(s7, t9), l4 = m6.dirname(s7), { compilerOptions: i7 } = n7;
|
273261
273283
|
if (i7) {
|
273262
|
-
for (const f5 of
|
273263
|
-
const
|
273264
|
-
if (
|
273265
|
-
const g5 = W4(
|
273266
|
-
i7[f5] = g5 ?
|
273284
|
+
for (const f5 of Ve2) {
|
273285
|
+
const u6 = i7[f5];
|
273286
|
+
if (u6) {
|
273287
|
+
const g5 = W4(u6, l4);
|
273288
|
+
i7[f5] = g5 ? K3(l4, g5) : u6;
|
273267
273289
|
}
|
273268
273290
|
}
|
273269
273291
|
for (const f5 of ["rootDirs", "typeRoots"]) {
|
273270
|
-
const
|
273271
|
-
|
273272
|
-
const
|
273273
|
-
return
|
273292
|
+
const u6 = i7[f5];
|
273293
|
+
u6 && (i7[f5] = u6.map((g5) => {
|
273294
|
+
const w5 = W4(g5, l4);
|
273295
|
+
return w5 ? K3(l4, w5) : g5;
|
273274
273296
|
}));
|
273275
273297
|
}
|
273276
|
-
const { paths:
|
273277
|
-
if (
|
273278
|
-
for (const f5 of Object.keys(
|
273279
|
-
|
273298
|
+
const { paths: r7 } = i7;
|
273299
|
+
if (r7)
|
273300
|
+
for (const f5 of Object.keys(r7))
|
273301
|
+
r7[f5] = r7[f5].map((u6) => {
|
273280
273302
|
var g5;
|
273281
|
-
return (g5 = W4(
|
273303
|
+
return (g5 = W4(u6, l4)) != null ? g5 : u6;
|
273282
273304
|
});
|
273283
|
-
|
273305
|
+
Me2(i7);
|
273284
273306
|
}
|
273285
|
-
for (const
|
273286
|
-
const f5 = n7[
|
273287
|
-
f5 && (n7[
|
273307
|
+
for (const r7 of ae3) {
|
273308
|
+
const f5 = n7[r7];
|
273309
|
+
f5 && (n7[r7] = f5.map((u6) => {
|
273288
273310
|
var g5;
|
273289
|
-
return (g5 = W4(
|
273311
|
+
return (g5 = W4(u6, l4)) != null ? g5 : u6;
|
273290
273312
|
}));
|
273291
273313
|
}
|
273292
273314
|
return n7;
|
273293
273315
|
}, "parseTsconfig");
|
273294
|
-
var
|
273295
|
-
const n7 =
|
273316
|
+
var Je2 = o7((e11 = process.cwd(), t9 = "tsconfig.json", s7 = new Map) => {
|
273317
|
+
const n7 = ie3(E5(e11), t9, s7);
|
273296
273318
|
if (!n7)
|
273297
273319
|
return null;
|
273298
|
-
const l4 =
|
273320
|
+
const l4 = me3(n7, s7);
|
273299
273321
|
return { path: n7, config: l4 };
|
273300
273322
|
}, "getTsconfig");
|
273301
|
-
var
|
273302
|
-
var
|
273303
|
-
const s7 = e11.match(
|
273323
|
+
var Oe2 = /\*/g;
|
273324
|
+
var ke2 = o7((e11, t9) => {
|
273325
|
+
const s7 = e11.match(Oe2);
|
273304
273326
|
if (s7 && s7.length > 1)
|
273305
273327
|
throw new Error(t9);
|
273306
273328
|
}, "assertStarCount");
|
273307
|
-
var
|
273329
|
+
var ze2 = o7((e11) => {
|
273308
273330
|
if (e11.includes("*")) {
|
273309
273331
|
const [t9, s7] = e11.split("*");
|
273310
273332
|
return { prefix: t9, suffix: s7 };
|
273311
273333
|
}
|
273312
273334
|
return e11;
|
273313
273335
|
}, "parsePattern");
|
273314
|
-
var
|
273315
|
-
var
|
273316
|
-
if (
|
273336
|
+
var Ge2 = o7(({ prefix: e11, suffix: t9 }, s7) => s7.startsWith(e11) && s7.endsWith(t9), "isPatternMatch");
|
273337
|
+
var Qe2 = o7((e11, t9, s7) => Object.entries(e11).map(([n7, l4]) => (ke2(n7, `Pattern '${n7}' can have at most one '*' character.`), { pattern: ze2(n7), substitutions: l4.map((i7) => {
|
273338
|
+
if (ke2(i7, `Substitution '${i7}' in pattern '${n7}' can have at most one '*' character.`), !t9 && !G3.test(i7))
|
273317
273339
|
throw new Error("Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?");
|
273318
273340
|
return m6.resolve(s7, i7);
|
273319
273341
|
}) })), "parsePaths");
|
273320
|
-
var
|
273342
|
+
var He2 = o7((e11) => {
|
273321
273343
|
const { compilerOptions: t9 } = e11.config;
|
273322
273344
|
if (!t9)
|
273323
273345
|
return null;
|
273324
273346
|
const { baseUrl: s7, paths: n7 } = t9;
|
273325
273347
|
if (!s7 && !n7)
|
273326
273348
|
return null;
|
273327
|
-
const l4 =
|
273349
|
+
const l4 = X4 in t9 && t9[X4], i7 = m6.resolve(m6.dirname(e11.path), s7 || l4 || "."), r7 = n7 ? Qe2(n7, s7, i7) : [];
|
273328
273350
|
return (f5) => {
|
273329
|
-
if (
|
273351
|
+
if (G3.test(f5))
|
273330
273352
|
return [];
|
273331
|
-
const
|
273332
|
-
for (const _5 of
|
273353
|
+
const u6 = [];
|
273354
|
+
for (const _5 of r7) {
|
273333
273355
|
if (_5.pattern === f5)
|
273334
273356
|
return _5.substitutions.map(E5);
|
273335
|
-
typeof _5.pattern != "string" &&
|
273357
|
+
typeof _5.pattern != "string" && u6.push(_5);
|
273336
273358
|
}
|
273337
|
-
let g5,
|
273338
|
-
for (const _5 of
|
273339
|
-
|
273359
|
+
let g5, w5 = -1;
|
273360
|
+
for (const _5 of u6)
|
273361
|
+
Ge2(_5.pattern, f5) && _5.pattern.prefix.length > w5 && (w5 = _5.pattern.prefix.length, g5 = _5);
|
273340
273362
|
if (!g5)
|
273341
273363
|
return s7 ? [E5(m6.join(i7, f5))] : [];
|
273342
273364
|
const b4 = f5.slice(g5.pattern.prefix.length, f5.length - g5.pattern.suffix.length);
|
273343
273365
|
return g5.substitutions.map((_5) => E5(_5.replace("*", b4)));
|
273344
273366
|
};
|
273345
273367
|
}, "createPathsMatcher");
|
273346
|
-
var
|
273368
|
+
var Xe2 = Object.defineProperty;
|
273369
|
+
var V4 = o7((e11, t9) => Xe2(e11, "name", { value: t9, configurable: true }), "s");
|
273370
|
+
var we3 = V4((e11) => {
|
273347
273371
|
let t9 = "";
|
273348
273372
|
for (let s7 = 0;s7 < e11.length; s7 += 1) {
|
273349
273373
|
const n7 = e11[s7], l4 = n7.toUpperCase();
|
273350
273374
|
t9 += n7 === l4 ? n7.toLowerCase() : l4;
|
273351
273375
|
}
|
273352
273376
|
return t9;
|
273353
|
-
}, "
|
273354
|
-
var
|
273355
|
-
var
|
273356
|
-
|
273357
|
-
|
273358
|
-
|
273359
|
-
|
273360
|
-
|
273361
|
-
|
273362
|
-
|
273363
|
-
|
273364
|
-
|
273365
|
-
|
273366
|
-
|
273377
|
+
}, "invertCase");
|
273378
|
+
var C3 = new Map;
|
273379
|
+
var be3 = V4((e11, t9) => {
|
273380
|
+
const s7 = Be2.join(e11, `.is-fs-case-sensitive-test-${process.pid}`);
|
273381
|
+
try {
|
273382
|
+
return t9.writeFileSync(s7, ""), !t9.existsSync(we3(s7));
|
273383
|
+
} finally {
|
273384
|
+
try {
|
273385
|
+
t9.unlinkSync(s7);
|
273386
|
+
} catch {}
|
273387
|
+
}
|
273388
|
+
}, "checkDirectoryCaseWithWrite");
|
273389
|
+
var Ye2 = V4((e11, t9, s7) => {
|
273390
|
+
try {
|
273391
|
+
return be3(e11, s7);
|
273392
|
+
} catch (n7) {
|
273393
|
+
if (t9 === undefined)
|
273394
|
+
return be3(Ee3.tmpdir(), s7);
|
273395
|
+
throw n7;
|
273396
|
+
}
|
273397
|
+
}, "checkDirectoryCaseWithFallback");
|
273398
|
+
var Ze2 = V4((e11, t9 = he3, s7 = true) => {
|
273399
|
+
const n7 = e11 != null ? e11 : process.cwd();
|
273400
|
+
if (s7 && C3.has(n7))
|
273401
|
+
return C3.get(n7);
|
273402
|
+
let l4;
|
273403
|
+
const i7 = we3(n7);
|
273404
|
+
return i7 !== n7 && t9.existsSync(n7) ? l4 = !t9.existsSync(i7) : l4 = Ye2(n7, e11, t9), s7 && C3.set(n7, l4), l4;
|
273405
|
+
}, "isFsCaseSensitive");
|
273367
273406
|
var { join: M4 } = m6.posix;
|
273368
|
-
var
|
273369
|
-
var
|
273370
|
-
const t9 = [...
|
273407
|
+
var ee3 = { ts: [".ts", ".tsx", ".d.ts"], cts: [".cts", ".d.cts"], mts: [".mts", ".d.mts"] };
|
273408
|
+
var qe2 = o7((e11) => {
|
273409
|
+
const t9 = [...ee3.ts], s7 = [...ee3.cts], n7 = [...ee3.mts];
|
273371
273410
|
return e11 != null && e11.allowJs && (t9.push(".js", ".jsx"), s7.push(".cjs"), n7.push(".mjs")), [...t9, ...s7, ...n7];
|
273372
273411
|
}, "getSupportedExtensions");
|
273373
|
-
var
|
273412
|
+
var Ke2 = o7((e11) => {
|
273374
273413
|
const t9 = [];
|
273375
273414
|
if (!e11)
|
273376
273415
|
return t9;
|
273377
273416
|
const { outDir: s7, declarationDir: n7 } = e11;
|
273378
273417
|
return s7 && t9.push(s7), n7 && t9.push(n7), t9;
|
273379
273418
|
}, "getDefaultExcludeSpec");
|
273380
|
-
var
|
273381
|
-
var
|
273382
|
-
var
|
273383
|
-
var
|
273384
|
-
var
|
273385
|
-
var
|
273386
|
-
var
|
273387
|
-
var
|
273388
|
-
var
|
273419
|
+
var de3 = o7((e11) => e11.replaceAll(/[.*+?^${}()|[\]\\]/g, String.raw`\$&`), "escapeForRegexp");
|
273420
|
+
var Ce2 = ["node_modules", "bower_components", "jspm_packages"];
|
273421
|
+
var ne3 = `(?!(${Ce2.join("|")})(/|$))`;
|
273422
|
+
var en = /(?:^|\/)[^.*?]+$/;
|
273423
|
+
var ve3 = "**/*";
|
273424
|
+
var J3 = "[^/]";
|
273425
|
+
var te3 = "[^./]";
|
273426
|
+
var Te2 = process.platform === "win32";
|
273427
|
+
var nn = o7(({ config: e11, path: t9 }, s7 = Ze2()) => {
|
273389
273428
|
if ("extends" in e11)
|
273390
273429
|
throw new Error("tsconfig#extends must be resolved. Use getTsconfig or parseTsconfig to resolve it.");
|
273391
273430
|
if (!m6.isAbsolute(t9))
|
273392
273431
|
throw new Error("The tsconfig path must be absolute");
|
273393
|
-
|
273394
|
-
const n7 = m6.dirname(t9), { files: l4, include: i7, exclude:
|
273395
|
-
const
|
273396
|
-
return new RegExp(`^${
|
273397
|
-
}), d6 = l4 || i7 ? i7 : [
|
273398
|
-
let
|
273399
|
-
|
273400
|
-
const
|
273401
|
-
const
|
273402
|
-
return c3 ? `/${
|
273432
|
+
Te2 && (t9 = E5(t9));
|
273433
|
+
const n7 = m6.dirname(t9), { files: l4, include: i7, exclude: r7, compilerOptions: f5 } = e11, u6 = l4 == null ? undefined : l4.map((v6) => M4(n7, v6)), g5 = qe2(f5), w5 = s7 ? "" : "i", _5 = (r7 || Ke2(f5)).map((v6) => {
|
273434
|
+
const A5 = M4(n7, v6), h7 = de3(A5).replaceAll(String.raw`\*\*/`, "(.+/)?").replaceAll(String.raw`\*`, `${J3}*`).replaceAll(String.raw`\?`, J3);
|
273435
|
+
return new RegExp(`^${h7}($|/)`, w5);
|
273436
|
+
}), d6 = l4 || i7 ? i7 : [ve3], j3 = d6 ? d6.map((v6) => {
|
273437
|
+
let A5 = M4(n7, v6);
|
273438
|
+
en.test(A5) && (A5 = M4(A5, ve3));
|
273439
|
+
const h7 = de3(A5).replaceAll(String.raw`/\*\*`, `(/${ne3}${te3}${J3}*)*?`).replaceAll(/(\/)?\\\*/g, (L5, c3) => {
|
273440
|
+
const y4 = `(${te3}|(\\.(?!min\\.js$))?)*`;
|
273441
|
+
return c3 ? `/${ne3}${te3}${y4}` : y4;
|
273403
273442
|
}).replaceAll(/(\/)?\\\?/g, (L5, c3) => {
|
273404
|
-
const
|
273405
|
-
return c3 ? `/${
|
273443
|
+
const y4 = J3;
|
273444
|
+
return c3 ? `/${ne3}${y4}` : y4;
|
273406
273445
|
});
|
273407
|
-
return new RegExp(`^${
|
273446
|
+
return new RegExp(`^${h7}$`, w5);
|
273408
273447
|
}) : undefined;
|
273409
|
-
return (
|
273410
|
-
if (!m6.isAbsolute(
|
273448
|
+
return (v6) => {
|
273449
|
+
if (!m6.isAbsolute(v6))
|
273411
273450
|
throw new Error("filePath must be absolute");
|
273412
|
-
if (
|
273451
|
+
if (Te2 && (v6 = E5(v6)), u6 != null && u6.includes(v6))
|
273413
273452
|
return e11;
|
273414
|
-
if (!(!g5.some((
|
273453
|
+
if (!(!g5.some((A5) => v6.endsWith(A5)) || _5.some((A5) => A5.test(v6))) && j3 && j3.some((A5) => A5.test(v6)))
|
273415
273454
|
return e11;
|
273416
273455
|
};
|
273417
273456
|
}, "createFilesMatcher");
|
@@ -273457,7 +273496,7 @@ async function testGqlEndpoint({
|
|
273457
273496
|
|
273458
273497
|
// src/commands/codegen/codegen-tsconfig.ts
|
273459
273498
|
async function codegenTsconfig(env2, thegraphSubgraphNames) {
|
273460
|
-
const tsconfig =
|
273499
|
+
const tsconfig = Je2();
|
273461
273500
|
if (!tsconfig?.config) {
|
273462
273501
|
note("No tsconfig found, skipping codegen for hasura, portal, thegraph and blockscout", "warn");
|
273463
273502
|
return {
|
@@ -273593,7 +273632,7 @@ function sanitizeName(value5, length = 35) {
|
|
273593
273632
|
}).slice(0, length).replaceAll(/(^\d*)/g, "").replaceAll(/(-$)/g, "").replaceAll(/(^-)/g, "");
|
273594
273633
|
}
|
273595
273634
|
|
273596
|
-
// ../../node_modules/.bun/@inquirer+input@4.2.4+
|
273635
|
+
// ../../node_modules/.bun/@inquirer+input@4.2.4+5561211e8fe04dc6/node_modules/@inquirer/input/dist/esm/index.js
|
273597
273636
|
var inputTheme = {
|
273598
273637
|
validationFailureMode: "keep"
|
273599
273638
|
};
|
@@ -273683,7 +273722,7 @@ async function subgraphNamePrompt({
|
|
273683
273722
|
return sanitizeName(subgraphName);
|
273684
273723
|
}
|
273685
273724
|
|
273686
|
-
// ../../node_modules/.bun/@inquirer+select@4.3.4+
|
273725
|
+
// ../../node_modules/.bun/@inquirer+select@4.3.4+5561211e8fe04dc6/node_modules/@inquirer/select/dist/esm/index.js
|
273687
273726
|
var import_yoctocolors_cjs3 = __toESM(require_yoctocolors_cjs(), 1);
|
273688
273727
|
var selectTheme = {
|
273689
273728
|
icon: { cursor: esm_default.pointer },
|
@@ -296176,7 +296215,7 @@ var swanProximaTestnet = /* @__PURE__ */ defineChain({
|
|
296176
296215
|
name: "Swan Proxima Testnet",
|
296177
296216
|
nativeCurrency: { name: "Swan Ether", symbol: "sETH", decimals: 18 },
|
296178
296217
|
rpcUrls: {
|
296179
|
-
default: { http: ["https://rpc-proxima.swanchain.io
|
296218
|
+
default: { http: ["https://rpc-proxima.swanchain.io\t"] }
|
296180
296219
|
},
|
296181
296220
|
blockExplorers: {
|
296182
296221
|
default: {
|
@@ -299032,7 +299071,7 @@ function extractInfoFromBody(body) {
|
|
299032
299071
|
}
|
299033
299072
|
}
|
299034
299073
|
|
299035
|
-
// ../../node_modules/.bun/@inquirer+confirm@5.1.18+
|
299074
|
+
// ../../node_modules/.bun/@inquirer+confirm@5.1.18+5561211e8fe04dc6/node_modules/@inquirer/confirm/dist/esm/index.js
|
299036
299075
|
function getBooleanValue(value5, defaultValue) {
|
299037
299076
|
let answer = defaultValue !== false;
|
299038
299077
|
if (/^(y|yes)/i.test(value5))
|
@@ -299078,7 +299117,7 @@ var esm_default4 = createPrompt((config3, done) => {
|
|
299078
299117
|
return `${prefix} ${message}${defaultValue} ${formattedValue}`;
|
299079
299118
|
});
|
299080
299119
|
|
299081
|
-
// ../../node_modules/.bun/@inquirer+password@4.0.20+
|
299120
|
+
// ../../node_modules/.bun/@inquirer+password@4.0.20+5561211e8fe04dc6/node_modules/@inquirer/password/dist/esm/index.js
|
299082
299121
|
var esm_default5 = createPrompt((config3, done) => {
|
299083
299122
|
const { validate: validate8 = () => true } = config3;
|
299084
299123
|
const theme = makeTheme(config3.theme);
|
@@ -301113,7 +301152,7 @@ function w$1() {
|
|
301113
301152
|
var a8 = e11 & 255;
|
301114
301153
|
e11 = Math.floor(e11 / 256), o8 ? r7[s7 - 1] = l4(a8) : a8 === 0 ? r7[s7 - 1] = 0 : (o8 = true, r7[s7 - 1] = c3(a8));
|
301115
301154
|
}
|
301116
|
-
},
|
301155
|
+
}, h7 = (e11) => {
|
301117
301156
|
const r7 = e11[0], o8 = r7 === 128 ? d6(e11.slice(1, e11.length)) : r7 === 255 ? x6(e11) : null;
|
301118
301157
|
if (o8 === null)
|
301119
301158
|
throw Error("invalid base256 encoding");
|
@@ -301133,7 +301172,7 @@ function w$1() {
|
|
301133
301172
|
}
|
301134
301173
|
return o8;
|
301135
301174
|
}, l4 = (e11) => (255 ^ e11) & 255, c3 = (e11) => (255 ^ e11) + 1 & 255;
|
301136
|
-
return f$3 = { encode: v6, parse:
|
301175
|
+
return f$3 = { encode: v6, parse: h7 }, f$3;
|
301137
301176
|
}
|
301138
301177
|
var k5;
|
301139
301178
|
var w5;
|
@@ -301144,13 +301183,13 @@ function E6() {
|
|
301144
301183
|
const u6 = n$3(), x6 = H$2.posix, y4 = w$1(), P6 = Symbol("slurp"), a8 = Symbol("type");
|
301145
301184
|
|
301146
301185
|
class B4 {
|
301147
|
-
constructor(e11, t9, i7,
|
301148
|
-
this.cksumValid = false, this.needPax = false, this.nullBlock = false, this.block = null, this.path = null, this.mode = null, this.uid = null, this.gid = null, this.size = null, this.mtime = null, this.cksum = null, this[a8] = "0", this.linkpath = null, this.uname = null, this.gname = null, this.devmaj = 0, this.devmin = 0, this.atime = null, this.ctime = null, Buffer.isBuffer(e11) ? this.decode(e11, t9 || 0, i7,
|
301186
|
+
constructor(e11, t9, i7, h7) {
|
301187
|
+
this.cksumValid = false, this.needPax = false, this.nullBlock = false, this.block = null, this.path = null, this.mode = null, this.uid = null, this.gid = null, this.size = null, this.mtime = null, this.cksum = null, this[a8] = "0", this.linkpath = null, this.uname = null, this.gname = null, this.devmaj = 0, this.devmin = 0, this.atime = null, this.ctime = null, Buffer.isBuffer(e11) ? this.decode(e11, t9 || 0, i7, h7) : e11 && this.set(e11);
|
301149
301188
|
}
|
301150
|
-
decode(e11, t9, i7,
|
301189
|
+
decode(e11, t9, i7, h7) {
|
301151
301190
|
if (t9 || (t9 = 0), !e11 || !(e11.length >= t9 + 512))
|
301152
301191
|
throw new Error("need 512 bytes for header");
|
301153
|
-
if (this.path = d6(e11, t9, 100), this.mode = r7(e11, t9 + 100, 8), this.uid = r7(e11, t9 + 108, 8), this.gid = r7(e11, t9 + 116, 8), this.size = r7(e11, t9 + 124, 12), this.mtime = o8(e11, t9 + 136, 12), this.cksum = r7(e11, t9 + 148, 12), this[P6](i7), this[P6](
|
301192
|
+
if (this.path = d6(e11, t9, 100), this.mode = r7(e11, t9 + 100, 8), this.uid = r7(e11, t9 + 108, 8), this.gid = r7(e11, t9 + 116, 8), this.size = r7(e11, t9 + 124, 12), this.mtime = o8(e11, t9 + 136, 12), this.cksum = r7(e11, t9 + 148, 12), this[P6](i7), this[P6](h7, true), this[a8] = d6(e11, t9 + 156, 1), this[a8] === "" && (this[a8] = "0"), this[a8] === "0" && this.path.slice(-1) === "/" && (this[a8] = "5"), this[a8] === "5" && (this.size = 0), this.linkpath = d6(e11, t9 + 157, 100), e11.slice(t9 + 257, t9 + 265).toString() === "ustar\x0000")
|
301154
301193
|
if (this.uname = d6(e11, t9 + 265, 32), this.gname = d6(e11, t9 + 297, 32), this.devmaj = r7(e11, t9 + 329, 8), this.devmin = r7(e11, t9 + 337, 8), e11[t9 + 475] !== 0) {
|
301155
301194
|
const n7 = d6(e11, t9 + 345, 155);
|
301156
301195
|
this.path = n7 + "/" + this.path;
|
@@ -301172,8 +301211,8 @@ function E6() {
|
|
301172
301211
|
encode(e11, t9) {
|
301173
301212
|
if (e11 || (e11 = this.block = Buffer.alloc(512), t9 = 0), t9 || (t9 = 0), !(e11.length >= t9 + 512))
|
301174
301213
|
throw new Error("need 512 bytes for header");
|
301175
|
-
const i7 = this.ctime || this.atime ? 130 : 155,
|
301176
|
-
this.needPax =
|
301214
|
+
const i7 = this.ctime || this.atime ? 130 : 155, h7 = L5(this.path || "", i7), l4 = h7[0], n7 = h7[1];
|
301215
|
+
this.needPax = h7[2], this.needPax = m7(e11, t9, 100, l4) || this.needPax, this.needPax = c3(e11, t9 + 100, 8, this.mode) || this.needPax, this.needPax = c3(e11, t9 + 108, 8, this.uid) || this.needPax, this.needPax = c3(e11, t9 + 116, 8, this.gid) || this.needPax, this.needPax = c3(e11, t9 + 124, 12, this.size) || this.needPax, this.needPax = g5(e11, t9 + 136, 12, this.mtime) || this.needPax, e11[t9 + 156] = this[a8].charCodeAt(0), this.needPax = m7(e11, t9 + 157, 100, this.linkpath) || this.needPax, e11.write("ustar\x0000", t9 + 257, 8), this.needPax = m7(e11, t9 + 265, 32, this.uname) || this.needPax, this.needPax = m7(e11, t9 + 297, 32, this.gname) || this.needPax, this.needPax = c3(e11, t9 + 329, 8, this.devmaj) || this.needPax, this.needPax = c3(e11, t9 + 337, 8, this.devmin) || this.needPax, this.needPax = m7(e11, t9 + 345, i7, n7) || this.needPax, e11[t9 + 475] !== 0 ? this.needPax = m7(e11, t9 + 345, 155, n7) || this.needPax : (this.needPax = m7(e11, t9 + 345, 130, n7) || this.needPax, this.needPax = g5(e11, t9 + 476, 12, this.atime) || this.needPax, this.needPax = g5(e11, t9 + 488, 12, this.ctime) || this.needPax);
|
301177
301216
|
let S4 = 8 * 32;
|
301178
301217
|
for (let p5 = t9;p5 < t9 + 148; p5++)
|
301179
301218
|
S4 += e11[p5];
|
@@ -301196,15 +301235,15 @@ function E6() {
|
|
301196
301235
|
}
|
301197
301236
|
}
|
301198
301237
|
const L5 = (s7, e11) => {
|
301199
|
-
let i7 = s7,
|
301238
|
+
let i7 = s7, h7 = "", l4;
|
301200
301239
|
const n7 = x6.parse(s7).root || ".";
|
301201
301240
|
if (Buffer.byteLength(i7) < 100)
|
301202
|
-
l4 = [i7,
|
301241
|
+
l4 = [i7, h7, false];
|
301203
301242
|
else {
|
301204
|
-
|
301243
|
+
h7 = x6.dirname(i7), i7 = x6.basename(i7);
|
301205
301244
|
do
|
301206
|
-
Buffer.byteLength(i7) <= 100 && Buffer.byteLength(
|
301207
|
-
while (
|
301245
|
+
Buffer.byteLength(i7) <= 100 && Buffer.byteLength(h7) <= e11 ? l4 = [i7, h7, false] : Buffer.byteLength(i7) > 100 && Buffer.byteLength(h7) <= e11 ? l4 = [i7.slice(0, 99), h7, true] : (i7 = x6.join(x6.basename(h7), i7), h7 = x6.dirname(h7));
|
301246
|
+
while (h7 !== n7 && !l4);
|
301208
301247
|
l4 || (l4 = [s7.slice(0, 99), "", true]);
|
301209
301248
|
}
|
301210
301249
|
return l4;
|
@@ -301234,7 +301273,7 @@ function c$3() {
|
|
301234
301273
|
i7.push(n7);
|
301235
301274
|
});
|
301236
301275
|
else if (arguments.length > 0)
|
301237
|
-
for (var e11 = 0,
|
301276
|
+
for (var e11 = 0, h7 = arguments.length;e11 < h7; e11++)
|
301238
301277
|
i7.push(arguments[e11]);
|
301239
301278
|
return i7;
|
301240
301279
|
}
|
@@ -301275,12 +301314,12 @@ function c$3() {
|
|
301275
301314
|
}
|
301276
301315
|
}, r7.prototype.forEach = function(t9, i7) {
|
301277
301316
|
i7 = i7 || this;
|
301278
|
-
for (var e11 = this.head,
|
301279
|
-
t9.call(i7, e11.value,
|
301317
|
+
for (var e11 = this.head, h7 = 0;e11 !== null; h7++)
|
301318
|
+
t9.call(i7, e11.value, h7, this), e11 = e11.next;
|
301280
301319
|
}, r7.prototype.forEachReverse = function(t9, i7) {
|
301281
301320
|
i7 = i7 || this;
|
301282
|
-
for (var e11 = this.tail,
|
301283
|
-
t9.call(i7, e11.value,
|
301321
|
+
for (var e11 = this.tail, h7 = this.length - 1;e11 !== null; h7--)
|
301322
|
+
t9.call(i7, e11.value, h7, this), e11 = e11.prev;
|
301284
301323
|
}, r7.prototype.get = function(t9) {
|
301285
301324
|
for (var i7 = 0, e11 = this.head;e11 !== null && i7 < t9; i7++)
|
301286
301325
|
e11 = e11.next;
|
@@ -301293,35 +301332,35 @@ function c$3() {
|
|
301293
301332
|
return e11.value;
|
301294
301333
|
}, r7.prototype.map = function(t9, i7) {
|
301295
301334
|
i7 = i7 || this;
|
301296
|
-
for (var e11 = new r7,
|
301297
|
-
e11.push(t9.call(i7,
|
301335
|
+
for (var e11 = new r7, h7 = this.head;h7 !== null; )
|
301336
|
+
e11.push(t9.call(i7, h7.value, this)), h7 = h7.next;
|
301298
301337
|
return e11;
|
301299
301338
|
}, r7.prototype.mapReverse = function(t9, i7) {
|
301300
301339
|
i7 = i7 || this;
|
301301
|
-
for (var e11 = new r7,
|
301302
|
-
e11.push(t9.call(i7,
|
301340
|
+
for (var e11 = new r7, h7 = this.tail;h7 !== null; )
|
301341
|
+
e11.push(t9.call(i7, h7.value, this)), h7 = h7.prev;
|
301303
301342
|
return e11;
|
301304
301343
|
}, r7.prototype.reduce = function(t9, i7) {
|
301305
|
-
var e11,
|
301344
|
+
var e11, h7 = this.head;
|
301306
301345
|
if (arguments.length > 1)
|
301307
301346
|
e11 = i7;
|
301308
301347
|
else if (this.head)
|
301309
|
-
|
301348
|
+
h7 = this.head.next, e11 = this.head.value;
|
301310
301349
|
else
|
301311
301350
|
throw new TypeError("Reduce of empty list with no initial value");
|
301312
|
-
for (var n7 = 0;
|
301313
|
-
e11 = t9(e11,
|
301351
|
+
for (var n7 = 0;h7 !== null; n7++)
|
301352
|
+
e11 = t9(e11, h7.value, n7), h7 = h7.next;
|
301314
301353
|
return e11;
|
301315
301354
|
}, r7.prototype.reduceReverse = function(t9, i7) {
|
301316
|
-
var e11,
|
301355
|
+
var e11, h7 = this.tail;
|
301317
301356
|
if (arguments.length > 1)
|
301318
301357
|
e11 = i7;
|
301319
301358
|
else if (this.tail)
|
301320
|
-
|
301359
|
+
h7 = this.tail.prev, e11 = this.tail.value;
|
301321
301360
|
else
|
301322
301361
|
throw new TypeError("Reduce of empty list with no initial value");
|
301323
|
-
for (var n7 = this.length - 1;
|
301324
|
-
e11 = t9(e11,
|
301362
|
+
for (var n7 = this.length - 1;h7 !== null; n7--)
|
301363
|
+
e11 = t9(e11, h7.value, n7), h7 = h7.prev;
|
301325
301364
|
return e11;
|
301326
301365
|
}, r7.prototype.toArray = function() {
|
301327
301366
|
for (var t9 = new Array(this.length), i7 = 0, e11 = this.head;e11 !== null; i7++)
|
@@ -301337,9 +301376,9 @@ function c$3() {
|
|
301337
301376
|
if (i7 < t9 || i7 < 0)
|
301338
301377
|
return e11;
|
301339
301378
|
t9 < 0 && (t9 = 0), i7 > this.length && (i7 = this.length);
|
301340
|
-
for (var
|
301379
|
+
for (var h7 = 0, n7 = this.head;n7 !== null && h7 < t9; h7++)
|
301341
301380
|
n7 = n7.next;
|
301342
|
-
for (;n7 !== null &&
|
301381
|
+
for (;n7 !== null && h7 < i7; h7++, n7 = n7.next)
|
301343
301382
|
e11.push(n7.value);
|
301344
301383
|
return e11;
|
301345
301384
|
}, r7.prototype.sliceReverse = function(t9, i7) {
|
@@ -301348,31 +301387,31 @@ function c$3() {
|
|
301348
301387
|
if (i7 < t9 || i7 < 0)
|
301349
301388
|
return e11;
|
301350
301389
|
t9 < 0 && (t9 = 0), i7 > this.length && (i7 = this.length);
|
301351
|
-
for (var
|
301390
|
+
for (var h7 = this.length, n7 = this.tail;n7 !== null && h7 > i7; h7--)
|
301352
301391
|
n7 = n7.prev;
|
301353
|
-
for (;n7 !== null &&
|
301392
|
+
for (;n7 !== null && h7 > t9; h7--, n7 = n7.prev)
|
301354
301393
|
e11.push(n7.value);
|
301355
301394
|
return e11;
|
301356
301395
|
}, r7.prototype.splice = function(t9, i7, ...e11) {
|
301357
301396
|
t9 > this.length && (t9 = this.length - 1), t9 < 0 && (t9 = this.length + t9);
|
301358
|
-
for (var
|
301397
|
+
for (var h7 = 0, n7 = this.head;n7 !== null && h7 < t9; h7++)
|
301359
301398
|
n7 = n7.next;
|
301360
|
-
for (var l4 = [],
|
301399
|
+
for (var l4 = [], h7 = 0;n7 && h7 < i7; h7++)
|
301361
301400
|
l4.push(n7.value), n7 = this.removeNode(n7);
|
301362
301401
|
n7 === null && (n7 = this.tail), n7 !== this.head && n7 !== this.tail && (n7 = n7.prev);
|
301363
|
-
for (var
|
301364
|
-
n7 = v6(this, n7, e11[
|
301402
|
+
for (var h7 = 0;h7 < e11.length; h7++)
|
301403
|
+
n7 = v6(this, n7, e11[h7]);
|
301365
301404
|
return l4;
|
301366
301405
|
}, r7.prototype.reverse = function() {
|
301367
301406
|
for (var t9 = this.head, i7 = this.tail, e11 = t9;e11 !== null; e11 = e11.prev) {
|
301368
|
-
var
|
301369
|
-
e11.prev = e11.next, e11.next =
|
301407
|
+
var h7 = e11.prev;
|
301408
|
+
e11.prev = e11.next, e11.next = h7;
|
301370
301409
|
}
|
301371
301410
|
return this.head = i7, this.tail = t9, this;
|
301372
301411
|
};
|
301373
301412
|
function v6(t9, i7, e11) {
|
301374
|
-
var
|
301375
|
-
return
|
301413
|
+
var h7 = i7 === t9.head ? new s7(e11, null, i7, t9) : new s7(e11, i7, i7.next, t9);
|
301414
|
+
return h7.next === null && (t9.tail = h7), h7.prev === null && (t9.head = h7), t9.length++, h7;
|
301376
301415
|
}
|
301377
301416
|
function f5(t9, i7) {
|
301378
301417
|
t9.tail = new s7(i7, t9.tail, null, t9), t9.head || (t9.head = t9.tail), t9.length++;
|
@@ -301380,10 +301419,10 @@ function c$3() {
|
|
301380
301419
|
function o8(t9, i7) {
|
301381
301420
|
t9.head = new s7(i7, null, t9.head, t9), t9.tail || (t9.tail = t9.head), t9.length++;
|
301382
301421
|
}
|
301383
|
-
function s7(t9, i7, e11,
|
301422
|
+
function s7(t9, i7, e11, h7) {
|
301384
301423
|
if (!(this instanceof s7))
|
301385
|
-
return new s7(t9, i7, e11,
|
301386
|
-
this.list =
|
301424
|
+
return new s7(t9, i7, e11, h7);
|
301425
|
+
this.list = h7, this.value = t9, i7 ? (i7.next = this, this.prev = i7) : this.prev = null, e11 ? (e11.prev = this, this.next = e11) : this.next = null;
|
301387
301426
|
}
|
301388
301427
|
try {
|
301389
301428
|
i$4()(r7);
|
@@ -301396,7 +301435,7 @@ function ft2() {
|
|
301396
301435
|
if (X$1)
|
301397
301436
|
return s$5;
|
301398
301437
|
X$1 = 1;
|
301399
|
-
const H4 = typeof process == "object" && process ? process : { stdout: null, stderr: null }, Z4 = nt2, q6 = ot2, G4 = ht3.StringDecoder, m7 = Symbol("EOF"), d6 = Symbol("maybeEmitEnd"), y4 = Symbol("emittedEnd"), R7 = Symbol("emittingEnd"), g5 = Symbol("emittedError"), B4 = Symbol("closed"), Y4 = Symbol("read"), T4 = Symbol("flush"), $5 = Symbol("flushChunk"), f5 = Symbol("encoding"), c3 = Symbol("decoder"), M5 = Symbol("flowing"), S4 = Symbol("paused"), b4 = Symbol("resume"), i7 = Symbol("buffer"), a8 = Symbol("pipes"), n7 = Symbol("bufferLength"), j3 = Symbol("bufferPush"),
|
301438
|
+
const H4 = typeof process == "object" && process ? process : { stdout: null, stderr: null }, Z4 = nt2, q6 = ot2, G4 = ht3.StringDecoder, m7 = Symbol("EOF"), d6 = Symbol("maybeEmitEnd"), y4 = Symbol("emittedEnd"), R7 = Symbol("emittingEnd"), g5 = Symbol("emittedError"), B4 = Symbol("closed"), Y4 = Symbol("read"), T4 = Symbol("flush"), $5 = Symbol("flushChunk"), f5 = Symbol("encoding"), c3 = Symbol("decoder"), M5 = Symbol("flowing"), S4 = Symbol("paused"), b4 = Symbol("resume"), i7 = Symbol("buffer"), a8 = Symbol("pipes"), n7 = Symbol("bufferLength"), j3 = Symbol("bufferPush"), I7 = Symbol("bufferShift"), o8 = Symbol("objectMode"), r7 = Symbol("destroyed"), P6 = Symbol("error"), x6 = Symbol("emitData"), V6 = Symbol("emitEnd"), N6 = Symbol("emitEnd2"), p5 = Symbol("async"), _5 = Symbol("abort"), O5 = Symbol("aborted"), E7 = Symbol("signal"), w6 = (h7) => Promise.resolve().then(h7), J4 = commonjsGlobal._MP_NO_ITERATOR_SYMBOLS_ !== "1", K4 = J4 && Symbol.asyncIterator || Symbol("asyncIterator not implemented"), W5 = J4 && Symbol.iterator || Symbol("iterator not implemented"), k6 = (h7) => h7 === "end" || h7 === "finish" || h7 === "prefinish", tt2 = (h7) => h7 instanceof ArrayBuffer || typeof h7 == "object" && h7.constructor && h7.constructor.name === "ArrayBuffer" && h7.byteLength >= 0, et3 = (h7) => !Buffer.isBuffer(h7) && ArrayBuffer.isView(h7);
|
301400
301439
|
|
301401
301440
|
class z4 {
|
301402
301441
|
constructor(t9, e11, s7) {
|
@@ -301422,7 +301461,7 @@ function ft2() {
|
|
301422
301461
|
|
301423
301462
|
class F3 extends q6 {
|
301424
301463
|
constructor(t9) {
|
301425
|
-
super(), this[M5] = false, this[S4] = false, this[a8] = [], this[i7] = [], this[o8] = t9 && t9.objectMode || false, this[o8] ? this[f5] = null : this[f5] = t9 && t9.encoding || null, this[f5] === "buffer" && (this[f5] = null), this[p5] = t9 && !!t9.async || false, this[c3] = this[f5] ? new G4(this[f5]) : null, this[m7] = false, this[y4] = false, this[R7] = false, this[B4] = false, this[g5] = null, this.writable = true, this.readable = true, this[n7] = 0, this[r7] = false, t9 && t9.debugExposeBuffer === true && Object.defineProperty(this, "buffer", { get: () => this[i7] }), t9 && t9.debugExposePipes === true && Object.defineProperty(this, "pipes", { get: () => this[a8] }), this[E7] = t9 && t9.signal, this[
|
301464
|
+
super(), this[M5] = false, this[S4] = false, this[a8] = [], this[i7] = [], this[o8] = t9 && t9.objectMode || false, this[o8] ? this[f5] = null : this[f5] = t9 && t9.encoding || null, this[f5] === "buffer" && (this[f5] = null), this[p5] = t9 && !!t9.async || false, this[c3] = this[f5] ? new G4(this[f5]) : null, this[m7] = false, this[y4] = false, this[R7] = false, this[B4] = false, this[g5] = null, this.writable = true, this.readable = true, this[n7] = 0, this[r7] = false, t9 && t9.debugExposeBuffer === true && Object.defineProperty(this, "buffer", { get: () => this[i7] }), t9 && t9.debugExposePipes === true && Object.defineProperty(this, "pipes", { get: () => this[a8] }), this[E7] = t9 && t9.signal, this[O5] = false, this[E7] && (this[E7].addEventListener("abort", () => this[_5]()), this[E7].aborted && this[_5]());
|
301426
301465
|
}
|
301427
301466
|
get bufferLength() {
|
301428
301467
|
return this[n7];
|
@@ -301453,14 +301492,14 @@ function ft2() {
|
|
301453
301492
|
this[p5] = this[p5] || !!t9;
|
301454
301493
|
}
|
301455
301494
|
[_5]() {
|
301456
|
-
this[
|
301495
|
+
this[O5] = true, this.emit("abort", this[E7].reason), this.destroy(this[E7].reason);
|
301457
301496
|
}
|
301458
301497
|
get aborted() {
|
301459
|
-
return this[
|
301498
|
+
return this[O5];
|
301460
301499
|
}
|
301461
301500
|
set aborted(t9) {}
|
301462
301501
|
write(t9, e11, s7) {
|
301463
|
-
if (this[
|
301502
|
+
if (this[O5])
|
301464
301503
|
return false;
|
301465
301504
|
if (this[m7])
|
301466
301505
|
throw new Error("write after end");
|
@@ -301480,7 +301519,7 @@ function ft2() {
|
|
301480
301519
|
return this[d6](), e11;
|
301481
301520
|
}
|
301482
301521
|
[Y4](t9, e11) {
|
301483
|
-
return t9 === e11.length || t9 === null ? this[
|
301522
|
+
return t9 === e11.length || t9 === null ? this[I7]() : (this[i7][0] = e11.slice(t9), e11 = e11.slice(0, t9), this[n7] -= t9), this.emit("data", e11), !this[i7].length && !this[m7] && this.emit("drain"), e11;
|
301484
301523
|
}
|
301485
301524
|
end(t9, e11, s7) {
|
301486
301525
|
return typeof t9 == "function" && (s7 = t9, t9 = null), typeof e11 == "function" && (s7 = e11, e11 = "utf8"), t9 && this.write(t9, e11), s7 && this.once("end", s7), this[m7] = true, this.writable = false, (this.flowing || !this[S4]) && this[d6](), this;
|
@@ -301506,13 +301545,13 @@ function ft2() {
|
|
301506
301545
|
[j3](t9) {
|
301507
301546
|
this[o8] ? this[n7] += 1 : this[n7] += t9.length, this[i7].push(t9);
|
301508
301547
|
}
|
301509
|
-
[
|
301548
|
+
[I7]() {
|
301510
301549
|
return this[o8] ? this[n7] -= 1 : this[n7] -= this[i7][0].length, this[i7].shift();
|
301511
301550
|
}
|
301512
301551
|
[T4](t9) {
|
301513
301552
|
do
|
301514
301553
|
;
|
301515
|
-
while (this[$5](this[
|
301554
|
+
while (this[$5](this[I7]()) && this[i7].length);
|
301516
301555
|
!t9 && !this[i7].length && !this[m7] && this.emit("drain");
|
301517
301556
|
}
|
301518
301557
|
[$5](t9) {
|
@@ -301713,7 +301752,7 @@ function f$2() {
|
|
301713
301752
|
a$5 = 1;
|
301714
301753
|
const c3 = E6(), d6 = H$2;
|
301715
301754
|
|
301716
|
-
class
|
301755
|
+
class h7 {
|
301717
301756
|
constructor(e11, n7) {
|
301718
301757
|
this.atime = e11.atime || null, this.charset = e11.charset || null, this.comment = e11.comment || null, this.ctime = e11.ctime || null, this.gid = e11.gid || null, this.gname = e11.gname || null, this.linkpath = e11.linkpath || null, this.mtime = e11.mtime || null, this.path = e11.path || null, this.size = e11.size || null, this.uid = e11.uid || null, this.uname = e11.uname || null, this.dev = e11.dev || null, this.ino = e11.ino || null, this.nlink = e11.nlink || null, this.global = n7 || false;
|
301719
301758
|
}
|
@@ -301741,7 +301780,7 @@ function f$2() {
|
|
301741
301780
|
return i7 + t9 >= Math.pow(10, t9) && (t9 += 1), t9 + i7 + l4;
|
301742
301781
|
}
|
301743
301782
|
}
|
301744
|
-
|
301783
|
+
h7.parse = (s7, e11, n7) => new h7(o8(u6(s7), e11), n7);
|
301745
301784
|
const o8 = (s7, e11) => e11 ? Object.keys(s7).reduce((n7, l4) => (n7[l4] = s7[l4], n7), e11) : s7, u6 = (s7) => s7.replace(/\n$/, "").split(`
|
301746
301785
|
`).reduce(m7, Object.create(null)), m7 = (s7, e11) => {
|
301747
301786
|
const n7 = parseInt(e11, 10);
|
@@ -301754,7 +301793,7 @@ function f$2() {
|
|
301754
301793
|
const t9 = l4.join("=");
|
301755
301794
|
return s7[i7] = /^([A-Z]+\.)?([mac]|birth|creation)time$/.test(i7) ? new Date(t9 * 1000) : /^[0-9]+$/.test(t9) ? +t9 : t9, s7;
|
301756
301795
|
};
|
301757
|
-
return r$2 =
|
301796
|
+
return r$2 = h7, r$2;
|
301758
301797
|
}
|
301759
301798
|
var i$3 = {};
|
301760
301799
|
var _5;
|
@@ -301772,7 +301811,7 @@ function tt2() {
|
|
301772
301811
|
if (H$1)
|
301773
301812
|
return j3;
|
301774
301813
|
H$1 = 1;
|
301775
|
-
const
|
301814
|
+
const I7 = typeof process == "object" && process ? process : { stdout: null, stderr: null }, Y4 = nt2, x6 = ot2, N6 = ht3.StringDecoder, u6 = Symbol("EOF"), a8 = Symbol("maybeEmitEnd"), c3 = Symbol("emittedEnd"), S4 = Symbol("emittingEnd"), E7 = Symbol("emittedError"), w6 = Symbol("closed"), P6 = Symbol("read"), L5 = Symbol("flush"), _6 = Symbol("flushChunk"), h7 = Symbol("encoding"), m7 = Symbol("decoder"), M5 = Symbol("flowing"), y4 = Symbol("paused"), p5 = Symbol("resume"), s7 = Symbol("bufferLength"), T5 = Symbol("bufferPush"), B4 = Symbol("bufferShift"), r7 = Symbol("objectMode"), n7 = Symbol("destroyed"), D3 = Symbol("emitData"), F3 = Symbol("emitEnd"), R7 = Symbol("emitEnd2"), d6 = Symbol("async"), b4 = (o8) => Promise.resolve().then(o8), C4 = commonjsGlobal._MP_NO_ITERATOR_SYMBOLS_ !== "1", $5 = C4 && Symbol.asyncIterator || Symbol("asyncIterator not implemented"), G4 = C4 && Symbol.iterator || Symbol("iterator not implemented"), V6 = (o8) => o8 === "end" || o8 === "finish" || o8 === "prefinish", v6 = (o8) => o8 instanceof ArrayBuffer || typeof o8 == "object" && o8.constructor && o8.constructor.name === "ArrayBuffer" && o8.byteLength >= 0, J4 = (o8) => !Buffer.isBuffer(o8) && ArrayBuffer.isView(o8);
|
301776
301815
|
|
301777
301816
|
class U6 {
|
301778
301817
|
constructor(t9, e11, i7) {
|
@@ -301797,20 +301836,20 @@ function tt2() {
|
|
301797
301836
|
}
|
301798
301837
|
return j3 = class q6 extends x6 {
|
301799
301838
|
constructor(t9) {
|
301800
|
-
super(), this[M5] = false, this[y4] = false, this.pipes = [], this.buffer = [], this[r7] = t9 && t9.objectMode || false, this[r7] ? this[
|
301839
|
+
super(), this[M5] = false, this[y4] = false, this.pipes = [], this.buffer = [], this[r7] = t9 && t9.objectMode || false, this[r7] ? this[h7] = null : this[h7] = t9 && t9.encoding || null, this[h7] === "buffer" && (this[h7] = null), this[d6] = t9 && !!t9.async || false, this[m7] = this[h7] ? new N6(this[h7]) : null, this[u6] = false, this[c3] = false, this[S4] = false, this[w6] = false, this[E7] = null, this.writable = true, this.readable = true, this[s7] = 0, this[n7] = false;
|
301801
301840
|
}
|
301802
301841
|
get bufferLength() {
|
301803
301842
|
return this[s7];
|
301804
301843
|
}
|
301805
301844
|
get encoding() {
|
301806
|
-
return this[
|
301845
|
+
return this[h7];
|
301807
301846
|
}
|
301808
301847
|
set encoding(t9) {
|
301809
301848
|
if (this[r7])
|
301810
301849
|
throw new Error("cannot set encoding in objectMode");
|
301811
|
-
if (this[
|
301850
|
+
if (this[h7] && t9 !== this[h7] && (this[m7] && this[m7].lastNeed || this[s7]))
|
301812
301851
|
throw new Error("cannot change encoding");
|
301813
|
-
this[
|
301852
|
+
this[h7] !== t9 && (this[m7] = t9 ? new N6(t9) : null, this.buffer.length && (this.buffer = this.buffer.map((e11) => this[m7].write(e11)))), this[h7] = t9;
|
301814
301853
|
}
|
301815
301854
|
setEncoding(t9) {
|
301816
301855
|
this.encoding = t9;
|
@@ -301834,7 +301873,7 @@ function tt2() {
|
|
301834
301873
|
return this.emit("error", Object.assign(new Error("Cannot call write after a stream was destroyed"), { code: "ERR_STREAM_DESTROYED" })), true;
|
301835
301874
|
typeof e11 == "function" && (i7 = e11, e11 = "utf8"), e11 || (e11 = "utf8");
|
301836
301875
|
const l4 = this[d6] ? b4 : (f5) => f5();
|
301837
|
-
return !this[r7] && !Buffer.isBuffer(t9) && (
|
301876
|
+
return !this[r7] && !Buffer.isBuffer(t9) && (J4(t9) ? t9 = Buffer.from(t9.buffer, t9.byteOffset, t9.byteLength) : v6(t9) ? t9 = Buffer.from(t9) : typeof t9 != "string" && (this.objectMode = true)), this[r7] ? (this.flowing && this[s7] !== 0 && this[L5](true), this.flowing ? this.emit("data", t9) : this[T5](t9), this[s7] !== 0 && this.emit("readable"), i7 && l4(i7), this.flowing) : t9.length ? (typeof t9 == "string" && !(e11 === this[h7] && !this[m7].lastNeed) && (t9 = Buffer.from(t9, e11)), Buffer.isBuffer(t9) && this[h7] && (t9 = this[m7].write(t9)), this.flowing && this[s7] !== 0 && this[L5](true), this.flowing ? this.emit("data", t9) : this[T5](t9), this[s7] !== 0 && this.emit("readable"), i7 && l4(i7), this.flowing) : (this[s7] !== 0 && this.emit("readable"), i7 && l4(i7), this.flowing);
|
301838
301877
|
}
|
301839
301878
|
read(t9) {
|
301840
301879
|
if (this[n7])
|
@@ -301888,7 +301927,7 @@ function tt2() {
|
|
301888
301927
|
if (this[n7])
|
301889
301928
|
return;
|
301890
301929
|
const i7 = this[c3];
|
301891
|
-
return e11 = e11 || {}, t9 ===
|
301930
|
+
return e11 = e11 || {}, t9 === I7.stdout || t9 === I7.stderr ? e11.end = false : e11.end = e11.end !== false, e11.proxyErrors = !!e11.proxyErrors, i7 ? e11.end && t9.end() : (this.pipes.push(e11.proxyErrors ? new K4(this, t9, e11) : new U6(this, t9, e11)), this[d6] ? b4(() => this[p5]()) : this[p5]()), t9;
|
301892
301931
|
}
|
301893
301932
|
unpipe(t9) {
|
301894
301933
|
const e11 = this.pipes.find((i7) => i7.dest === t9);
|
@@ -301965,7 +302004,7 @@ function tt2() {
|
|
301965
302004
|
}), e11.then(() => t9);
|
301966
302005
|
}
|
301967
302006
|
concat() {
|
301968
|
-
return this[r7] ? Promise.reject(new Error("cannot concat in objectMode")) : this.collect().then((t9) => this[r7] ? Promise.reject(new Error("cannot concat in objectMode")) : this[
|
302007
|
+
return this[r7] ? Promise.reject(new Error("cannot concat in objectMode")) : this.collect().then((t9) => this[r7] ? Promise.reject(new Error("cannot concat in objectMode")) : this[h7] ? t9.join("") : Buffer.concat(t9, t9.dataLength));
|
301969
302008
|
}
|
301970
302009
|
promise() {
|
301971
302010
|
return new Promise((t9, e11) => {
|
@@ -301981,14 +302020,14 @@ function tt2() {
|
|
301981
302020
|
return Promise.resolve({ done: true });
|
301982
302021
|
let i7 = null, l4 = null;
|
301983
302022
|
const f5 = (g5) => {
|
301984
|
-
this.removeListener("data", A5), this.removeListener("end",
|
302023
|
+
this.removeListener("data", A5), this.removeListener("end", O5), l4(g5);
|
301985
302024
|
}, A5 = (g5) => {
|
301986
|
-
this.removeListener("error", f5), this.removeListener("end",
|
301987
|
-
},
|
302025
|
+
this.removeListener("error", f5), this.removeListener("end", O5), this.pause(), i7({ value: g5, done: !!this[u6] });
|
302026
|
+
}, O5 = () => {
|
301988
302027
|
this.removeListener("error", f5), this.removeListener("data", A5), i7({ done: true });
|
301989
302028
|
}, W5 = () => f5(new Error("stream destroyed"));
|
301990
302029
|
return new Promise((g5, z4) => {
|
301991
|
-
l4 = z4, i7 = g5, this.once(n7, W5), this.once("error", f5), this.once("end",
|
302030
|
+
l4 = z4, i7 = g5, this.once(n7, W5), this.once("error", f5), this.once("end", O5), this.once("data", A5);
|
301992
302031
|
});
|
301993
302032
|
} };
|
301994
302033
|
}
|
@@ -302007,7 +302046,7 @@ function tt2() {
|
|
302007
302046
|
}, j3;
|
302008
302047
|
}
|
302009
302048
|
var C4;
|
302010
|
-
function
|
302049
|
+
function J4() {
|
302011
302050
|
if (C4)
|
302012
302051
|
return i$3;
|
302013
302052
|
C4 = 1;
|
@@ -302021,13 +302060,13 @@ function J3() {
|
|
302021
302060
|
return "ZlibError";
|
302022
302061
|
}
|
302023
302062
|
}
|
302024
|
-
const Z4 = Symbol("opts"), p5 = Symbol("flushFlag"),
|
302063
|
+
const Z4 = Symbol("opts"), p5 = Symbol("flushFlag"), I7 = Symbol("finishFlushFlag"), y4 = Symbol("fullFlushFlag"), t9 = Symbol("handle"), _6 = Symbol("onError"), f5 = Symbol("sawError"), F3 = Symbol("level"), S4 = Symbol("strategy"), g5 = Symbol("ended");
|
302025
302064
|
|
302026
302065
|
class x6 extends L5 {
|
302027
302066
|
constructor(s7, e11) {
|
302028
302067
|
if (!s7 || typeof s7 != "object")
|
302029
302068
|
throw new TypeError("invalid options for ZlibBase constructor");
|
302030
|
-
super(s7), this[f5] = false, this[g5] = false, this[Z4] = s7, this[p5] = s7.flush, this[
|
302069
|
+
super(s7), this[f5] = false, this[g5] = false, this[Z4] = s7, this[p5] = s7.flush, this[I7] = s7.finishFlush;
|
302031
302070
|
try {
|
302032
302071
|
this[t9] = new z4[e11](s7);
|
302033
302072
|
} catch (i7) {
|
@@ -302048,7 +302087,7 @@ function J3() {
|
|
302048
302087
|
this.ended || (typeof s7 != "number" && (s7 = this[y4]), this.write(Object.assign(n7.alloc(0), { [p5]: s7 })));
|
302049
302088
|
}
|
302050
302089
|
end(s7, e11, i7) {
|
302051
|
-
return s7 && this.write(s7, e11), this.flush(this[
|
302090
|
+
return s7 && this.write(s7, e11), this.flush(this[I7]), this[g5] = true, super.end(null, null, i7);
|
302052
302091
|
}
|
302053
302092
|
get ended() {
|
302054
302093
|
return this[g5];
|
@@ -302061,10 +302100,10 @@ function J3() {
|
|
302061
302100
|
m7.close = () => {};
|
302062
302101
|
const G4 = this[t9].close;
|
302063
302102
|
this[t9].close = () => {}, n7.concat = (l4) => l4;
|
302064
|
-
let
|
302103
|
+
let h7;
|
302065
302104
|
try {
|
302066
302105
|
const l4 = typeof s7[p5] == "number" ? s7[p5] : this[p5];
|
302067
|
-
|
302106
|
+
h7 = this[t9]._processChunk(s7, l4), n7.concat = E7;
|
302068
302107
|
} catch (l4) {
|
302069
302108
|
n7.concat = E7, this[_6](new d6(l4));
|
302070
302109
|
} finally {
|
@@ -302072,13 +302111,13 @@ function J3() {
|
|
302072
302111
|
}
|
302073
302112
|
this[t9] && this[t9].on("error", (l4) => this[_6](new d6(l4)));
|
302074
302113
|
let b4;
|
302075
|
-
if (
|
302076
|
-
if (Array.isArray(
|
302077
|
-
b4 = this[c3](n7.from(
|
302078
|
-
for (let l4 = 1;l4 <
|
302079
|
-
b4 = this[c3](
|
302114
|
+
if (h7)
|
302115
|
+
if (Array.isArray(h7) && h7.length > 0) {
|
302116
|
+
b4 = this[c3](n7.from(h7[0]));
|
302117
|
+
for (let l4 = 1;l4 < h7.length; l4++)
|
302118
|
+
b4 = this[c3](h7[l4]);
|
302080
302119
|
} else
|
302081
|
-
b4 = this[c3](n7.from(
|
302120
|
+
b4 = this[c3](n7.from(h7));
|
302082
302121
|
return i7 && i7(), b4;
|
302083
302122
|
}
|
302084
302123
|
[c3](s7) {
|
@@ -302158,19 +302197,19 @@ function J3() {
|
|
302158
302197
|
}
|
302159
302198
|
}
|
302160
302199
|
|
302161
|
-
class
|
302200
|
+
class O5 extends x6 {
|
302162
302201
|
constructor(s7, e11) {
|
302163
302202
|
s7 = s7 || {}, s7.flush = s7.flush || u6.BROTLI_OPERATION_PROCESS, s7.finishFlush = s7.finishFlush || u6.BROTLI_OPERATION_FINISH, super(s7, e11), this[y4] = u6.BROTLI_OPERATION_FLUSH;
|
302164
302203
|
}
|
302165
302204
|
}
|
302166
302205
|
|
302167
|
-
class v6 extends
|
302206
|
+
class v6 extends O5 {
|
302168
302207
|
constructor(s7) {
|
302169
302208
|
super(s7, "BrotliCompress");
|
302170
302209
|
}
|
302171
302210
|
}
|
302172
302211
|
|
302173
|
-
class A5 extends
|
302212
|
+
class A5 extends O5 {
|
302174
302213
|
constructor(s7) {
|
302175
302214
|
super(s7, "BrotliDecompress");
|
302176
302215
|
}
|
@@ -302187,16 +302226,16 @@ function rt3() {
|
|
302187
302226
|
if (F$2)
|
302188
302227
|
return O$1;
|
302189
302228
|
F$2 = 1;
|
302190
|
-
const P6 = c$4(), $5 = E6(), v6 = nt2, W5 = c$3(), G4 = 1024 * 1024, k6 = u$3(), C5 = f$2(), x6 =
|
302229
|
+
const P6 = c$4(), $5 = E6(), v6 = nt2, W5 = c$3(), G4 = 1024 * 1024, k6 = u$3(), C5 = f$2(), x6 = J4(), { nextTick: j4 } = nt$1, B4 = Buffer.from([31, 139]), h7 = Symbol("state"), d6 = Symbol("writeEntry"), a8 = Symbol("readEntry"), I7 = Symbol("nextEntry"), U6 = Symbol("processEntry"), l4 = Symbol("extendedHeader"), y4 = Symbol("globalExtendedHeader"), c3 = Symbol("meta"), H4 = Symbol("emitMeta"), n7 = Symbol("buffer"), f5 = Symbol("queue"), u6 = Symbol("ended"), L5 = Symbol("emittedEnd"), b4 = Symbol("emit"), r7 = Symbol("unzip"), _6 = Symbol("consumeChunk"), g5 = Symbol("consumeChunkSub"), q6 = Symbol("consumeBody"), z4 = Symbol("consumeMeta"), Y4 = Symbol("consumeHeader"), N6 = Symbol("consuming"), D3 = Symbol("bufferConcat"), M5 = Symbol("maybeEnd"), S4 = Symbol("writing"), m7 = Symbol("aborted"), T5 = Symbol("onDone"), E$1 = Symbol("sawValidEntry"), R7 = Symbol("sawNullBlock"), A5 = Symbol("sawEOF"), V6 = Symbol("closeStream"), K4 = (X5) => true;
|
302191
302230
|
return O$1 = P6(class extends v6 {
|
302192
302231
|
constructor(t9) {
|
302193
302232
|
t9 = t9 || {}, super(t9), this.file = t9.file || "", this[E$1] = null, this.on(T5, (s7) => {
|
302194
|
-
(this[
|
302233
|
+
(this[h7] === "begin" || this[E$1] === false) && this.warn("TAR_BAD_ARCHIVE", "Unrecognized archive format");
|
302195
302234
|
}), t9.ondone ? this.on(T5, t9.ondone) : this.on(T5, (s7) => {
|
302196
302235
|
this.emit("prefinish"), this.emit("finish"), this.emit("end");
|
302197
302236
|
}), this.strict = !!t9.strict, this.maxMetaEntrySize = t9.maxMetaEntrySize || G4, this.filter = typeof t9.filter == "function" ? t9.filter : K4;
|
302198
302237
|
const i7 = t9.file && (t9.file.endsWith(".tar.br") || t9.file.endsWith(".tbr"));
|
302199
|
-
this.brotli = !t9.gzip && t9.brotli !== undefined ? t9.brotli : i7 ? undefined : false, this.writable = true, this.readable = false, this[f5] = new W5, this[n7] = null, this[a8] = null, this[d6] = null, this[
|
302238
|
+
this.brotli = !t9.gzip && t9.brotli !== undefined ? t9.brotli : i7 ? undefined : false, this.writable = true, this.readable = false, this[f5] = new W5, this[n7] = null, this[a8] = null, this[d6] = null, this[h7] = "begin", this[c3] = "", this[l4] = null, this[y4] = null, this[u6] = false, this[r7] = null, this[m7] = false, this[R7] = false, this[A5] = false, this.on("end", () => this[V6]()), typeof t9.onwarn == "function" && this.on("warn", t9.onwarn), typeof t9.onentry == "function" && this.on("entry", t9.onentry);
|
302200
302239
|
}
|
302201
302240
|
[Y4](t9, i7) {
|
302202
302241
|
this[E$1] === null && (this[E$1] = false);
|
@@ -302207,7 +302246,7 @@ function rt3() {
|
|
302207
302246
|
return this.warn("TAR_ENTRY_INVALID", o8);
|
302208
302247
|
}
|
302209
302248
|
if (s7.nullBlock)
|
302210
|
-
this[R7] ? (this[A5] = true, this[
|
302249
|
+
this[R7] ? (this[A5] = true, this[h7] === "begin" && (this[h7] = "header"), this[b4]("eof")) : (this[R7] = true, this[b4]("nullBlock"));
|
302211
302250
|
else if (this[R7] = false, !s7.cksumValid)
|
302212
302251
|
this.warn("TAR_ENTRY_INVALID", "checksum failure", { header: s7 });
|
302213
302252
|
else if (!s7.path)
|
@@ -302228,7 +302267,7 @@ function rt3() {
|
|
302228
302267
|
e11.on("end", w6);
|
302229
302268
|
} else
|
302230
302269
|
this[E$1] = true;
|
302231
|
-
e11.meta ? e11.size > this.maxMetaEntrySize ? (e11.ignore = true, this[b4]("ignoredEntry", e11), this[
|
302270
|
+
e11.meta ? e11.size > this.maxMetaEntrySize ? (e11.ignore = true, this[b4]("ignoredEntry", e11), this[h7] = "ignore", e11.resume()) : e11.size > 0 && (this[c3] = "", e11.on("data", (w6) => this[c3] += w6), this[h7] = "meta") : (this[l4] = null, e11.ignore = e11.ignore || !this.filter(e11.path, e11), e11.ignore ? (this[b4]("ignoredEntry", e11), this[h7] = e11.remain ? "ignore" : "header", e11.resume()) : (e11.remain ? this[h7] = "body" : (this[h7] = "header", e11.end()), this[a8] ? this[f5].push(e11) : (this[f5].push(e11), this[I7]())));
|
302232
302271
|
}
|
302233
302272
|
}
|
302234
302273
|
}
|
@@ -302237,9 +302276,9 @@ function rt3() {
|
|
302237
302276
|
}
|
302238
302277
|
[U6](t9) {
|
302239
302278
|
let i7 = true;
|
302240
|
-
return t9 ? Array.isArray(t9) ? this.emit.apply(this, t9) : (this[a8] = t9, this.emit("entry", t9), t9.emittedEnd || (t9.on("end", (s7) => this[
|
302279
|
+
return t9 ? Array.isArray(t9) ? this.emit.apply(this, t9) : (this[a8] = t9, this.emit("entry", t9), t9.emittedEnd || (t9.on("end", (s7) => this[I7]()), i7 = false)) : (this[a8] = null, i7 = false), i7;
|
302241
302280
|
}
|
302242
|
-
[
|
302281
|
+
[I7]() {
|
302243
302282
|
do
|
302244
302283
|
;
|
302245
302284
|
while (this[U6](this[f5].shift()));
|
@@ -302250,7 +302289,7 @@ function rt3() {
|
|
302250
302289
|
}
|
302251
302290
|
[q6](t9, i7) {
|
302252
302291
|
const s7 = this[d6], o8 = s7.blockRemain, e11 = o8 >= t9.length && i7 === 0 ? t9 : t9.slice(i7, i7 + o8);
|
302253
|
-
return s7.write(e11), s7.blockRemain || (this[
|
302292
|
+
return s7.write(e11), s7.blockRemain || (this[h7] = "header", this[d6] = null, s7.end()), e11.length;
|
302254
302293
|
}
|
302255
302294
|
[z4](t9, i7) {
|
302256
302295
|
const s7 = this[d6], o8 = this[q6](t9, i7);
|
@@ -302354,7 +302393,7 @@ function rt3() {
|
|
302354
302393
|
let i7 = 0;
|
302355
302394
|
const s7 = t9.length;
|
302356
302395
|
for (;i7 + 512 <= s7 && !this[m7] && !this[A5]; )
|
302357
|
-
switch (this[
|
302396
|
+
switch (this[h7]) {
|
302358
302397
|
case "begin":
|
302359
302398
|
case "header":
|
302360
302399
|
this[Y4](t9, i7), i7 += 512;
|
@@ -302367,7 +302406,7 @@ function rt3() {
|
|
302367
302406
|
i7 += this[z4](t9, i7);
|
302368
302407
|
break;
|
302369
302408
|
default:
|
302370
|
-
throw new Error("invalid state: " + this[
|
302409
|
+
throw new Error("invalid state: " + this[h7]);
|
302371
302410
|
}
|
302372
302411
|
i7 < s7 && (this[n7] ? this[n7] = Buffer.concat([t9.slice(i7), this[n7]]) : this[n7] = t9.slice(i7));
|
302373
302412
|
}
|
@@ -302382,16 +302421,16 @@ function X5() {
|
|
302382
302421
|
if (v$1)
|
302383
302422
|
return s$4;
|
302384
302423
|
v$1 = 1;
|
302385
|
-
const H4 = tt2(),
|
302424
|
+
const H4 = tt2(), I7 = nt2.EventEmitter, r7 = V5;
|
302386
302425
|
let R7 = r7.writev;
|
302387
302426
|
if (!R7) {
|
302388
302427
|
const c3 = process.binding("fs"), t9 = c3.FSReqWrap || c3.FSReqCallback;
|
302389
302428
|
R7 = (e11, i7, $5, A5) => {
|
302390
|
-
const G4 = (
|
302429
|
+
const G4 = (J5, K4) => A5(J5, K4, i7), j4 = new t9;
|
302391
302430
|
j4.oncomplete = G4, c3.writeBuffers(e11, i7, $5, j4);
|
302392
302431
|
};
|
302393
302432
|
}
|
302394
|
-
const m7 = Symbol("_autoClose"),
|
302433
|
+
const m7 = Symbol("_autoClose"), h7 = Symbol("_close"), g5 = Symbol("_ended"), s7 = Symbol("_fd"), B4 = Symbol("_finished"), o8 = Symbol("_flags"), x6 = Symbol("_flush"), z4 = Symbol("_handleChunk"), T5 = Symbol("_makeBuf"), q6 = Symbol("_mode"), E7 = Symbol("_needDrain"), d6 = Symbol("_onerror"), y4 = Symbol("_onopen"), W5 = Symbol("_onread"), _6 = Symbol("_onwrite"), a8 = Symbol("_open"), l4 = Symbol("_path"), u6 = Symbol("_pos"), n7 = Symbol("_queue"), S4 = Symbol("_read"), M5 = Symbol("_readSize"), f5 = Symbol("_reading"), k6 = Symbol("_remain"), N6 = Symbol("_size"), C5 = Symbol("_write"), b4 = Symbol("_writing"), F3 = Symbol("_defaultFlag"), p5 = Symbol("_errored");
|
302395
302434
|
|
302396
302435
|
class D3 extends H4 {
|
302397
302436
|
constructor(t9, e11) {
|
@@ -302432,18 +302471,18 @@ function X5() {
|
|
302432
302471
|
[W5](t9, e11, i7) {
|
302433
302472
|
this[f5] = false, t9 ? this[d6](t9) : this[z4](e11, i7) && this[S4]();
|
302434
302473
|
}
|
302435
|
-
[
|
302474
|
+
[h7]() {
|
302436
302475
|
if (this[m7] && typeof this[s7] == "number") {
|
302437
302476
|
const t9 = this[s7];
|
302438
302477
|
this[s7] = null, r7.close(t9, (e11) => e11 ? this.emit("error", e11) : this.emit("close"));
|
302439
302478
|
}
|
302440
302479
|
}
|
302441
302480
|
[d6](t9) {
|
302442
|
-
this[f5] = true, this[
|
302481
|
+
this[f5] = true, this[h7](), this.emit("error", t9);
|
302443
302482
|
}
|
302444
302483
|
[z4](t9, e11) {
|
302445
302484
|
let i7 = false;
|
302446
|
-
return this[k6] -= t9, t9 > 0 && (i7 = super.write(t9 < e11.length ? e11.slice(0, t9) : e11)), (t9 === 0 || this[k6] <= 0) && (i7 = false, this[
|
302485
|
+
return this[k6] -= t9, t9 > 0 && (i7 = super.write(t9 < e11.length ? e11.slice(0, t9) : e11)), (t9 === 0 || this[k6] <= 0) && (i7 = false, this[h7](), super.end()), i7;
|
302447
302486
|
}
|
302448
302487
|
emit(t9, e11) {
|
302449
302488
|
switch (t9) {
|
@@ -302467,7 +302506,7 @@ function X5() {
|
|
302467
302506
|
try {
|
302468
302507
|
this[y4](null, r7.openSync(this[l4], "r")), t9 = false;
|
302469
302508
|
} finally {
|
302470
|
-
t9 && this[
|
302509
|
+
t9 && this[h7]();
|
302471
302510
|
}
|
302472
302511
|
}
|
302473
302512
|
[S4]() {
|
@@ -302484,10 +302523,10 @@ function X5() {
|
|
302484
302523
|
}
|
302485
302524
|
t9 = false;
|
302486
302525
|
} finally {
|
302487
|
-
t9 && this[
|
302526
|
+
t9 && this[h7]();
|
302488
302527
|
}
|
302489
302528
|
}
|
302490
|
-
[
|
302529
|
+
[h7]() {
|
302491
302530
|
if (this[m7] && typeof this[s7] == "number") {
|
302492
302531
|
const t9 = this[s7];
|
302493
302532
|
this[s7] = null, r7.closeSync(t9), this.emit("close");
|
@@ -302495,7 +302534,7 @@ function X5() {
|
|
302495
302534
|
}
|
302496
302535
|
}
|
302497
302536
|
|
302498
|
-
class
|
302537
|
+
class O5 extends I7 {
|
302499
302538
|
constructor(t9, e11) {
|
302500
302539
|
e11 = e11 || {}, super(e11), this.readable = false, this.writable = true, this[p5] = false, this[b4] = false, this[g5] = false, this[E7] = false, this[n7] = [], this[l4] = t9, this[s7] = typeof e11.fd == "number" ? e11.fd : null, this[q6] = e11.mode === undefined ? 438 : e11.mode, this[u6] = typeof e11.start == "number" ? e11.start : null, this[m7] = typeof e11.autoClose == "boolean" ? e11.autoClose : true;
|
302501
302540
|
const i7 = this[u6] !== null ? "r+" : "w";
|
@@ -302516,7 +302555,7 @@ function X5() {
|
|
302516
302555
|
return this[l4];
|
302517
302556
|
}
|
302518
302557
|
[d6](t9) {
|
302519
|
-
this[
|
302558
|
+
this[h7](), this[b4] = true, this.emit("error", t9);
|
302520
302559
|
}
|
302521
302560
|
[a8]() {
|
302522
302561
|
r7.open(this[l4], this[o8], this[q6], (t9, e11) => this[y4](t9, e11));
|
@@ -302534,7 +302573,7 @@ function X5() {
|
|
302534
302573
|
r7.write(this[s7], t9, 0, t9.length, this[u6], (e11, i7) => this[_6](e11, i7));
|
302535
302574
|
}
|
302536
302575
|
[_6](t9, e11) {
|
302537
|
-
t9 ? this[d6](t9) : (this[u6] !== null && (this[u6] += e11), this[n7].length ? this[x6]() : (this[b4] = false, this[g5] && !this[B4] ? (this[B4] = true, this[
|
302576
|
+
t9 ? this[d6](t9) : (this[u6] !== null && (this[u6] += e11), this[n7].length ? this[x6]() : (this[b4] = false, this[g5] && !this[B4] ? (this[B4] = true, this[h7](), this.emit("finish")) : this[E7] && (this[E7] = false, this.emit("drain"))));
|
302538
302577
|
}
|
302539
302578
|
[x6]() {
|
302540
302579
|
if (this[n7].length === 0)
|
@@ -302546,7 +302585,7 @@ function X5() {
|
|
302546
302585
|
this[n7] = [], R7(this[s7], t9, this[u6], (e11, i7) => this[_6](e11, i7));
|
302547
302586
|
}
|
302548
302587
|
}
|
302549
|
-
[
|
302588
|
+
[h7]() {
|
302550
302589
|
if (this[m7] && typeof this[s7] == "number") {
|
302551
302590
|
const t9 = this[s7];
|
302552
302591
|
this[s7] = null, r7.close(t9, (e11) => e11 ? this.emit("error", e11) : this.emit("close"));
|
@@ -302554,7 +302593,7 @@ function X5() {
|
|
302554
302593
|
}
|
302555
302594
|
}
|
302556
302595
|
|
302557
|
-
class U6 extends
|
302596
|
+
class U6 extends O5 {
|
302558
302597
|
[a8]() {
|
302559
302598
|
let t9;
|
302560
302599
|
if (this[F3] && this[o8] === "r+")
|
@@ -302569,7 +302608,7 @@ function X5() {
|
|
302569
302608
|
t9 = r7.openSync(this[l4], this[o8], this[q6]);
|
302570
302609
|
this[y4](null, t9);
|
302571
302610
|
}
|
302572
|
-
[
|
302611
|
+
[h7]() {
|
302573
302612
|
if (this[m7] && typeof this[s7] == "number") {
|
302574
302613
|
const t9 = this[s7];
|
302575
302614
|
this[s7] = null, r7.closeSync(t9), this.emit("close");
|
@@ -302582,12 +302621,12 @@ function X5() {
|
|
302582
302621
|
} finally {
|
302583
302622
|
if (e11)
|
302584
302623
|
try {
|
302585
|
-
this[
|
302624
|
+
this[h7]();
|
302586
302625
|
} catch {}
|
302587
302626
|
}
|
302588
302627
|
}
|
302589
302628
|
}
|
302590
|
-
return s$4.ReadStream = D3, s$4.ReadStreamSync = P6, s$4.WriteStream =
|
302629
|
+
return s$4.ReadStream = D3, s$4.ReadStreamSync = P6, s$4.WriteStream = O5, s$4.WriteStreamSync = U6, s$4;
|
302591
302630
|
}
|
302592
302631
|
var r$1 = { exports: {} };
|
302593
302632
|
var i$2;
|
@@ -302740,14 +302779,14 @@ function S4() {
|
|
302740
302779
|
return n7.sync = d6, n7.native = (e11, r7) => a8(u6(e11), i7(r7)), n7.manual = (e11, r7) => o8(u6(e11), i7(r7)), n7.nativeSync = (e11, r7) => c3(u6(e11), i7(r7)), n7.manualSync = (e11, r7) => q6(u6(e11), i7(r7)), m7 = n7, m7;
|
302741
302780
|
}
|
302742
302781
|
var y$12;
|
302743
|
-
var
|
302782
|
+
var O5;
|
302744
302783
|
function F$1() {
|
302745
|
-
if (
|
302784
|
+
if (O5)
|
302746
302785
|
return y$12;
|
302747
|
-
|
302748
|
-
const c3 = V5, a8 = H$2, T5 = c3.lchown ? "lchown" : "chown",
|
302786
|
+
O5 = 1;
|
302787
|
+
const c3 = V5, a8 = H$2, T5 = c3.lchown ? "lchown" : "chown", I7 = c3.lchownSync ? "lchownSync" : "chownSync", i7 = c3.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/), u6 = (r7, e11, n7) => {
|
302749
302788
|
try {
|
302750
|
-
return c3[
|
302789
|
+
return c3[I7](r7, e11, n7);
|
302751
302790
|
} catch (t10) {
|
302752
302791
|
if (t10.code !== "ENOENT")
|
302753
302792
|
throw t10;
|
@@ -302772,7 +302811,7 @@ function F$1() {
|
|
302772
302811
|
} : (r7, e11, n7) => u6(r7, e11, n7), R7 = process.version;
|
302773
302812
|
let N6 = (r7, e11, n7) => c3.readdir(r7, e11, n7), q6 = (r7, e11) => c3.readdirSync(r7, e11);
|
302774
302813
|
/^v4\./.test(R7) && (N6 = (r7, e11, n7) => c3.readdir(r7, n7));
|
302775
|
-
const
|
302814
|
+
const h7 = (r7, e11, n7, t10) => {
|
302776
302815
|
c3[T5](r7, e11, n7, _6(r7, e11, n7, (o8) => {
|
302777
302816
|
t10(o8 && o8.code !== "ENOENT" ? o8 : null);
|
302778
302817
|
}));
|
@@ -302788,11 +302827,11 @@ function F$1() {
|
|
302788
302827
|
if (s7)
|
302789
302828
|
return o8(s7);
|
302790
302829
|
const f5 = a8.resolve(r7, e11.name);
|
302791
|
-
|
302830
|
+
h7(f5, n7, t10, o8);
|
302792
302831
|
});
|
302793
302832
|
else {
|
302794
302833
|
const s7 = a8.resolve(r7, e11.name);
|
302795
|
-
|
302834
|
+
h7(s7, n7, t10, o8);
|
302796
302835
|
}
|
302797
302836
|
}, E7 = (r7, e11, n7, t10) => {
|
302798
302837
|
N6(r7, { withFileTypes: true }, (o8, s7) => {
|
@@ -302803,14 +302842,14 @@ function F$1() {
|
|
302803
302842
|
return t10(o8);
|
302804
302843
|
}
|
302805
302844
|
if (o8 || !s7.length)
|
302806
|
-
return
|
302845
|
+
return h7(r7, e11, n7, t10);
|
302807
302846
|
let f5 = s7.length, v6 = null;
|
302808
302847
|
const H4 = (l4) => {
|
302809
302848
|
if (!v6) {
|
302810
302849
|
if (l4)
|
302811
302850
|
return t10(v6 = l4);
|
302812
302851
|
if (--f5 === 0)
|
302813
|
-
return
|
302852
|
+
return h7(r7, e11, n7, t10);
|
302814
302853
|
}
|
302815
302854
|
};
|
302816
302855
|
s7.forEach((l4) => S5(r7, l4, e11, n7, H4));
|
@@ -302865,24 +302904,24 @@ function H4() {
|
|
302865
302904
|
return "CwdError";
|
302866
302905
|
}
|
302867
302906
|
}
|
302868
|
-
const v6 = (n7, e11) => n7.get(y4(e11)), q6 = (n7, e11, s7) => n7.set(y4(e11), s7),
|
302907
|
+
const v6 = (n7, e11) => n7.get(y4(e11)), q6 = (n7, e11, s7) => n7.set(y4(e11), s7), I7 = (n7, e11) => {
|
302869
302908
|
l4.stat(n7, (s7, r7) => {
|
302870
302909
|
(s7 || !r7.isDirectory()) && (s7 = new E7(n7, s7 && s7.code || "ENOTDIR")), e11(s7);
|
302871
302910
|
});
|
302872
302911
|
};
|
302873
302912
|
r$1.exports = (n7, e11, s7) => {
|
302874
302913
|
n7 = y4(n7);
|
302875
|
-
const r7 = e11.umask, c3 = e11.mode | 448, f5 = (c3 & r7) !== 0, t10 = e11.uid, i7 = e11.gid, a8 = typeof t10 == "number" && typeof i7 == "number" && (t10 !== e11.processUid || i7 !== e11.processGid), u6 = e11.preserve, m8 = e11.unlink,
|
302876
|
-
k6 ? s7(k6) : (q6(
|
302914
|
+
const r7 = e11.umask, c3 = e11.mode | 448, f5 = (c3 & r7) !== 0, t10 = e11.uid, i7 = e11.gid, a8 = typeof t10 == "number" && typeof i7 == "number" && (t10 !== e11.processUid || i7 !== e11.processGid), u6 = e11.preserve, m8 = e11.unlink, h7 = e11.cache, d6 = y4(e11.cwd), w6 = (k6, o8) => {
|
302915
|
+
k6 ? s7(k6) : (q6(h7, n7, true), o8 && a8 ? x6(o8, t10, i7, (G4) => w6(G4)) : f5 ? l4.chmod(n7, c3, s7) : s7());
|
302877
302916
|
};
|
302878
|
-
if (
|
302917
|
+
if (h7 && v6(h7, n7) === true)
|
302879
302918
|
return w6();
|
302880
302919
|
if (n7 === d6)
|
302881
|
-
return
|
302920
|
+
return I7(n7, w6);
|
302882
302921
|
if (u6)
|
302883
302922
|
return g5(n7, { mode: c3 }).then((k6) => w6(null, k6), w6);
|
302884
302923
|
const S5 = y4(p5.relative(d6, n7)).split("/");
|
302885
|
-
C5(d6, S5, c3,
|
302924
|
+
C5(d6, S5, c3, h7, m8, d6, null, w6);
|
302886
302925
|
};
|
302887
302926
|
const C5 = (n7, e11, s7, r7, c3, f5, t10, i7) => {
|
302888
302927
|
if (!e11.length)
|
@@ -302898,9 +302937,9 @@ function H4() {
|
|
302898
302937
|
else if (m8.isDirectory())
|
302899
302938
|
C5(n7, e11, s7, r7, c3, f5, t10, i7);
|
302900
302939
|
else if (c3)
|
302901
|
-
l4.unlink(n7, (
|
302902
|
-
if (
|
302903
|
-
return i7(
|
302940
|
+
l4.unlink(n7, (h7) => {
|
302941
|
+
if (h7)
|
302942
|
+
return i7(h7);
|
302904
302943
|
l4.mkdir(n7, s7, j4(n7, e11, s7, r7, c3, f5, t10, i7));
|
302905
302944
|
});
|
302906
302945
|
else {
|
@@ -302922,18 +302961,18 @@ function H4() {
|
|
302922
302961
|
};
|
302923
302962
|
return r$1.exports.sync = (n7, e11) => {
|
302924
302963
|
n7 = y4(n7);
|
302925
|
-
const s7 = e11.umask, r7 = e11.mode | 448, c3 = (r7 & s7) !== 0, f5 = e11.uid, t10 = e11.gid, i7 = typeof f5 == "number" && typeof t10 == "number" && (f5 !== e11.processUid || t10 !== e11.processGid), a8 = e11.preserve, u6 = e11.unlink, m8 = e11.cache,
|
302964
|
+
const s7 = e11.umask, r7 = e11.mode | 448, c3 = (r7 & s7) !== 0, f5 = e11.uid, t10 = e11.gid, i7 = typeof f5 == "number" && typeof t10 == "number" && (f5 !== e11.processUid || t10 !== e11.processGid), a8 = e11.preserve, u6 = e11.unlink, m8 = e11.cache, h7 = y4(e11.cwd), d6 = (k6) => {
|
302926
302965
|
q6(m8, n7, true), k6 && i7 && x6.sync(k6, f5, t10), c3 && l4.chmodSync(n7, r7);
|
302927
302966
|
};
|
302928
302967
|
if (m8 && v6(m8, n7) === true)
|
302929
302968
|
return d6();
|
302930
|
-
if (n7 ===
|
302931
|
-
return L5(
|
302969
|
+
if (n7 === h7)
|
302970
|
+
return L5(h7), d6();
|
302932
302971
|
if (a8)
|
302933
302972
|
return d6(g5.sync(n7, r7));
|
302934
|
-
const $5 = y4(p5.relative(
|
302973
|
+
const $5 = y4(p5.relative(h7, n7)).split("/");
|
302935
302974
|
let S5 = null;
|
302936
|
-
for (let k6 = $5.shift(), o8 =
|
302975
|
+
for (let k6 = $5.shift(), o8 = h7;k6 && (o8 += "/" + k6); k6 = $5.shift())
|
302937
302976
|
if (o8 = y4(p5.resolve(o8)), !v6(m8, o8))
|
302938
302977
|
try {
|
302939
302978
|
l4.mkdirSync(o8, r7), S5 = S5 || o8, q6(m8, o8, true);
|
@@ -302992,10 +303031,10 @@ function z4() {
|
|
302992
303031
|
if (!s8)
|
302993
303032
|
throw new Error("function does not have any path reservations");
|
302994
303033
|
return { paths: s8.paths.map((o8) => i8.get(o8)), dirs: [...s8.dirs].map((o8) => i8.get(o8)) };
|
302995
|
-
},
|
303034
|
+
}, h7 = (e11) => {
|
302996
303035
|
const { paths: s8, dirs: o8 } = w6(e11);
|
302997
303036
|
return s8.every((r7) => r7[0] === e11) && o8.every((r7) => r7[0] instanceof Set && r7[0].has(e11));
|
302998
|
-
}, p6 = (e11) => a9.has(e11) || !
|
303037
|
+
}, p6 = (e11) => a9.has(e11) || !h7(e11) ? false : (a9.add(e11), e11(() => S5(e11)), true), S5 = (e11) => {
|
302999
303038
|
if (!a9.has(e11))
|
303000
303039
|
return false;
|
303001
303040
|
const { paths: s8, dirs: o8 } = c3.get(e11), r7 = new Set;
|
@@ -303007,7 +303046,7 @@ function z4() {
|
|
303007
303046
|
l5(n8[0] instanceof Set), n8[0].size === 1 && n8.length === 1 ? i8.delete(t10) : n8[0].size === 1 ? (n8.shift(), r7.add(n8[0])) : n8[0].delete(e11);
|
303008
303047
|
}), a9.delete(e11), r7.forEach((t10) => p6(t10)), true;
|
303009
303048
|
};
|
303010
|
-
return { check:
|
303049
|
+
return { check: h7, reserve: (e11, s8) => {
|
303011
303050
|
e11 = q6 ? ["win32 parallelization disabled"] : e11.map((r7) => g5(d6(m8(r7))).toLowerCase());
|
303012
303051
|
const o8 = new Set(e11.map((r7) => v6(r7)).reduce((r7, t10) => r7.concat(t10)));
|
303013
303052
|
return c3.set(s8, { dirs: o8, paths: e11 }), e11.forEach((r7) => {
|
@@ -303051,7 +303090,7 @@ function Os() {
|
|
303051
303090
|
if (y4)
|
303052
303091
|
return G4;
|
303053
303092
|
y4 = 1;
|
303054
|
-
const ss = j$1, is = rt3(), r7 = V5, es = X5(), w6 = H$2, M5 = H4(), K4 = p5(), ts = z4(), os = c3(), l5 = a$7(), rs = s7(), hs = a$12(), H$12 = Symbol("onEntry"), q6 = Symbol("checkFs"), Y4 = Symbol("checkFs2"), v6 = Symbol("pruneCache"), N6 = Symbol("isReusable"), d6 = Symbol("makeFs"), U6 = Symbol("file"), F$12 = Symbol("directory"),
|
303093
|
+
const ss = j$1, is = rt3(), r7 = V5, es = X5(), w6 = H$2, M5 = H4(), K4 = p5(), ts = z4(), os = c3(), l5 = a$7(), rs = s7(), hs = a$12(), H$12 = Symbol("onEntry"), q6 = Symbol("checkFs"), Y4 = Symbol("checkFs2"), v6 = Symbol("pruneCache"), N6 = Symbol("isReusable"), d6 = Symbol("makeFs"), U6 = Symbol("file"), F$12 = Symbol("directory"), O6 = Symbol("link"), B4 = Symbol("symlink"), z$1 = Symbol("hardlink"), W5 = Symbol("unsupported"), j4 = Symbol("checkPath"), b4 = Symbol("mkdir"), m8 = Symbol("onError"), $5 = Symbol("pending"), V$1 = Symbol("pend"), S5 = Symbol("unpend"), P6 = Symbol("ended"), A5 = Symbol("maybeClose"), x6 = Symbol("skip"), E7 = Symbol("doChown"), R8 = Symbol("uid"), _6 = Symbol("gid"), g5 = Symbol("checkedCwd"), X$12 = Ds, J5 = F3(), C5 = (process.env.TESTING_TAR_FAKE_PLATFORM || process.platform) === "win32", cs = 1024, as = (a9, s8) => {
|
303055
303094
|
if (!C5)
|
303056
303095
|
return r7.unlink(a9, s8);
|
303057
303096
|
const i8 = a9 + ".DELETE." + X$12.randomBytes(16).toString("hex");
|
@@ -303166,7 +303205,7 @@ function Os() {
|
|
303166
303205
|
return Q4(this.gid, s8.gid, this.processGid);
|
303167
303206
|
}
|
303168
303207
|
[U6](s8, i8) {
|
303169
|
-
const e12 = s8.mode & 4095 || this.fmode, t10 = new es.WriteStream(s8.absolute, { flags:
|
303208
|
+
const e12 = s8.mode & 4095 || this.fmode, t10 = new es.WriteStream(s8.absolute, { flags: J5(s8.size), mode: e12, autoClose: false });
|
303170
303209
|
t10.on("error", (c4) => {
|
303171
303210
|
t10.fd && r7.close(t10.fd, () => {}), t10.write = () => true, this[m8](c4, s8), i8();
|
303172
303211
|
});
|
@@ -303185,19 +303224,19 @@ function Os() {
|
|
303185
303224
|
if (s8.mtime && !this.noMtime) {
|
303186
303225
|
o9++;
|
303187
303226
|
const f5 = s8.atime || new Date, k6 = s8.mtime;
|
303188
|
-
r7.futimes(p6, f5, k6, (D3) => D3 ? r7.utimes(n8, f5, k6, (
|
303227
|
+
r7.futimes(p6, f5, k6, (D3) => D3 ? r7.utimes(n8, f5, k6, (I7) => u7(I7 && D3)) : u7());
|
303189
303228
|
}
|
303190
303229
|
if (this[E7](s8)) {
|
303191
303230
|
o9++;
|
303192
303231
|
const f5 = this[R8](s8), k6 = this[_6](s8);
|
303193
|
-
r7.fchown(p6, f5, k6, (D3) => D3 ? r7.chown(n8, f5, k6, (
|
303232
|
+
r7.fchown(p6, f5, k6, (D3) => D3 ? r7.chown(n8, f5, k6, (I7) => u7(I7 && D3)) : u7());
|
303194
303233
|
}
|
303195
303234
|
u7();
|
303196
303235
|
});
|
303197
|
-
const
|
303198
|
-
|
303236
|
+
const h7 = this.transform && this.transform(s8) || s8;
|
303237
|
+
h7 !== s8 && (h7.on("error", (c4) => {
|
303199
303238
|
this[m8](c4, s8), i8();
|
303200
|
-
}), s8.pipe(
|
303239
|
+
}), s8.pipe(h7)), h7.pipe(t10);
|
303201
303240
|
}
|
303202
303241
|
[F$12](s8, i8) {
|
303203
303242
|
const e12 = s8.mode & 4095 || this.dmode;
|
@@ -303207,7 +303246,7 @@ function Os() {
|
|
303207
303246
|
return;
|
303208
303247
|
}
|
303209
303248
|
let o9 = 1;
|
303210
|
-
const u7 = (
|
303249
|
+
const u7 = (h7) => {
|
303211
303250
|
--o9 === 0 && (i8(), this[S5](), s8.resume());
|
303212
303251
|
};
|
303213
303252
|
s8.mtime && !this.noMtime && (o9++, r7.utimes(s8.absolute, s8.atime || new Date, s8.mtime, u7)), this[E7](s8) && (o9++, r7.chown(s8.absolute, this[R8](s8), this[_6](s8), u7)), u7();
|
@@ -303217,11 +303256,11 @@ function Os() {
|
|
303217
303256
|
s8.unsupported = true, this.warn("TAR_ENTRY_UNSUPPORTED", `unsupported entry type: ${s8.type}`, { entry: s8 }), s8.resume();
|
303218
303257
|
}
|
303219
303258
|
[B4](s8, i8) {
|
303220
|
-
this[
|
303259
|
+
this[O6](s8, s8.linkpath, "symlink", i8);
|
303221
303260
|
}
|
303222
303261
|
[z$1](s8, i8) {
|
303223
303262
|
const e12 = l5(w6.resolve(this.cwd, s8.linkpath));
|
303224
|
-
this[
|
303263
|
+
this[O6](s8, e12, "link", i8);
|
303225
303264
|
}
|
303226
303265
|
[V$1]() {
|
303227
303266
|
this[$5]++;
|
@@ -303245,21 +303284,21 @@ function Os() {
|
|
303245
303284
|
}
|
303246
303285
|
[Y4](s8, i8) {
|
303247
303286
|
this[v6](s8);
|
303248
|
-
const e12 = (
|
303249
|
-
this[v6](s8), i8(
|
303287
|
+
const e12 = (h7) => {
|
303288
|
+
this[v6](s8), i8(h7);
|
303250
303289
|
}, t10 = () => {
|
303251
|
-
this[b4](this.cwd, this.dmode, (
|
303252
|
-
if (
|
303253
|
-
this[m8](
|
303290
|
+
this[b4](this.cwd, this.dmode, (h7) => {
|
303291
|
+
if (h7) {
|
303292
|
+
this[m8](h7, s8), e12();
|
303254
303293
|
return;
|
303255
303294
|
}
|
303256
303295
|
this[g5] = true, o9();
|
303257
303296
|
});
|
303258
303297
|
}, o9 = () => {
|
303259
303298
|
if (s8.absolute !== this.cwd) {
|
303260
|
-
const
|
303261
|
-
if (
|
303262
|
-
return this[b4](
|
303299
|
+
const h7 = l5(w6.dirname(s8.absolute));
|
303300
|
+
if (h7 !== this.cwd)
|
303301
|
+
return this[b4](h7, this.dmode, (c4) => {
|
303263
303302
|
if (c4) {
|
303264
303303
|
this[m8](c4, s8), e12();
|
303265
303304
|
return;
|
@@ -303269,12 +303308,12 @@ function Os() {
|
|
303269
303308
|
}
|
303270
303309
|
u7();
|
303271
303310
|
}, u7 = () => {
|
303272
|
-
r7.lstat(s8.absolute, (
|
303311
|
+
r7.lstat(s8.absolute, (h7, c4) => {
|
303273
303312
|
if (c4 && (this.keep || this.newer && c4.mtime > s8.mtime)) {
|
303274
303313
|
this[x6](s8), e12();
|
303275
303314
|
return;
|
303276
303315
|
}
|
303277
|
-
if (
|
303316
|
+
if (h7 || this[N6](s8, c4))
|
303278
303317
|
return this[d6](null, s8, e12);
|
303279
303318
|
if (c4.isDirectory()) {
|
303280
303319
|
if (s8.type === "Directory") {
|
@@ -303310,7 +303349,7 @@ function Os() {
|
|
303310
303349
|
return this[F$12](i8, e12);
|
303311
303350
|
}
|
303312
303351
|
}
|
303313
|
-
[
|
303352
|
+
[O6](s8, i8, e12, t10) {
|
303314
303353
|
r7[e12](i8, s8.absolute, (o9) => {
|
303315
303354
|
o9 ? this[m8](o9, s8) : (this[S5](), s8.resume()), t10();
|
303316
303355
|
});
|
@@ -303350,10 +303389,10 @@ function Os() {
|
|
303350
303389
|
return this[d6](null, s8);
|
303351
303390
|
if (e12.isDirectory()) {
|
303352
303391
|
if (s8.type === "Directory") {
|
303353
|
-
const u7 = !this.noChmod && s8.mode && (e12.mode & 4095) !== s8.mode, [
|
303392
|
+
const u7 = !this.noChmod && s8.mode && (e12.mode & 4095) !== s8.mode, [h7] = u7 ? T5(() => {
|
303354
303393
|
r7.chmodSync(s8.absolute, s8.mode);
|
303355
303394
|
}) : [];
|
303356
|
-
return this[d6](
|
303395
|
+
return this[d6](h7, s8);
|
303357
303396
|
}
|
303358
303397
|
const [o9] = T5(() => r7.rmdirSync(s8.absolute));
|
303359
303398
|
this[d6](o9, s8);
|
@@ -303362,29 +303401,29 @@ function Os() {
|
|
303362
303401
|
this[d6](t10, s8);
|
303363
303402
|
}
|
303364
303403
|
[U6](s8, i8) {
|
303365
|
-
const e12 = s8.mode & 4095 || this.fmode, t10 = (
|
303404
|
+
const e12 = s8.mode & 4095 || this.fmode, t10 = (h7) => {
|
303366
303405
|
let c4;
|
303367
303406
|
try {
|
303368
303407
|
r7.closeSync(o9);
|
303369
303408
|
} catch (n8) {
|
303370
303409
|
c4 = n8;
|
303371
303410
|
}
|
303372
|
-
(
|
303411
|
+
(h7 || c4) && this[m8](h7 || c4, s8), i8();
|
303373
303412
|
};
|
303374
303413
|
let o9;
|
303375
303414
|
try {
|
303376
|
-
o9 = r7.openSync(s8.absolute,
|
303377
|
-
} catch (
|
303378
|
-
return t10(
|
303415
|
+
o9 = r7.openSync(s8.absolute, J5(s8.size), e12);
|
303416
|
+
} catch (h7) {
|
303417
|
+
return t10(h7);
|
303379
303418
|
}
|
303380
303419
|
const u7 = this.transform && this.transform(s8) || s8;
|
303381
|
-
u7 !== s8 && (u7.on("error", (
|
303420
|
+
u7 !== s8 && (u7.on("error", (h7) => this[m8](h7, s8)), s8.pipe(u7)), u7.on("data", (h7) => {
|
303382
303421
|
try {
|
303383
|
-
r7.writeSync(o9,
|
303422
|
+
r7.writeSync(o9, h7, 0, h7.length);
|
303384
303423
|
} catch (c4) {
|
303385
303424
|
t10(c4);
|
303386
303425
|
}
|
303387
|
-
}), u7.on("end", (
|
303426
|
+
}), u7.on("end", (h7) => {
|
303388
303427
|
let c4 = null;
|
303389
303428
|
if (s8.mtime && !this.noMtime) {
|
303390
303429
|
const n8 = s8.atime || new Date, p6 = s8.mtime;
|
@@ -303436,7 +303475,7 @@ function Os() {
|
|
303436
303475
|
return e12;
|
303437
303476
|
}
|
303438
303477
|
}
|
303439
|
-
[
|
303478
|
+
[O6](s8, i8, e12, t10) {
|
303440
303479
|
try {
|
303441
303480
|
r7[e12 + "Sync"](i8, s8.absolute), t10(), s8.resume();
|
303442
303481
|
} catch (o9) {
|
@@ -303460,7 +303499,7 @@ function v6() {
|
|
303460
303499
|
throw new TypeError("callback not supported for sync tar functions");
|
303461
303500
|
if (!t10.file && typeof o9 == "function")
|
303462
303501
|
throw new TypeError("callback only supported with file option");
|
303463
|
-
return e12.length && d6(t10, e12), t10.file && t10.sync ? $5(t10) : t10.file ?
|
303502
|
+
return e12.length && d6(t10, e12), t10.file && t10.sync ? $5(t10) : t10.file ? h7(t10, o9) : t10.sync ? x6(t10) : z5(t10);
|
303464
303503
|
};
|
303465
303504
|
const d6 = (r7, e12) => {
|
303466
303505
|
const o9 = new Map(e12.map((n8) => [m8(n8), true])), t10 = r7.filter, s8 = (n8, i8) => {
|
@@ -303471,7 +303510,7 @@ function v6() {
|
|
303471
303510
|
}, $5 = (r7) => {
|
303472
303511
|
const e12 = new u7.Sync(r7), o9 = r7.file, t10 = p6.statSync(o9), s8 = r7.maxReadSize || 16 * 1024 * 1024;
|
303473
303512
|
new y5.ReadStreamSync(o9, { readSize: s8, size: t10.size }).pipe(e12);
|
303474
|
-
},
|
303513
|
+
}, h7 = (r7, e12) => {
|
303475
303514
|
const o9 = new u7(r7), t10 = r7.maxReadSize || 16 * 1024 * 1024, s8 = r7.file, n8 = new Promise((i8, a9) => {
|
303476
303515
|
o9.on("error", a9), o9.on("close", i8), p6.stat(s8, (c4, R8) => {
|
303477
303516
|
if (c4)
|
@@ -308691,4 +308730,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
308691
308730
|
// src/cli.ts
|
308692
308731
|
sdkCliCommand();
|
308693
308732
|
|
308694
|
-
//# debugId=
|
308733
|
+
//# debugId=B13E399CE3F2808064756E2164756E21
|