import { createRequire as __prettierCreateRequire } from "module"; import { fileURLToPath as __prettierFileUrlToPath } from "url"; import { dirname as __prettierDirname } from "path"; const require = __prettierCreateRequire(import.meta.url); const __filename = __prettierFileUrlToPath(import.meta.url); const __dirname = __prettierDirname(__filename); var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __typeError = (msg) => { throw TypeError(msg); }; var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { get: (a, b) => (typeof require !== "undefined" ? require : a)[b] }) : x)(function(x) { if (typeof require !== "undefined") return require.apply(this, arguments); throw Error('Dynamic require of "' + x + '" is not supported'); }); var __esm = (fn, res) => function __init() { return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res; }; var __commonJS = (cb, mod) => function __require2() { return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; }; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key2 of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key2) && key2 !== except) __defProp(to, key2, { get: () => from[key2], enumerable: !(desc = __getOwnPropDesc(from, key2)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg); var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj)); var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value); var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value); // node_modules/find-up-path/dist/index.js import fs from "fs"; import path from "path"; import process2 from "process"; var findUpPath, dist_default; var init_dist = __esm({ "node_modules/find-up-path/dist/index.js"() { findUpPath = (fileName, folderPath = process2.cwd(), maxDepth = 25) => { let filePath = path.normalize(path.join(folderPath, fileName)); let depth = 1; while (true) { if (depth > maxDepth) return; if (fs.existsSync(filePath)) return filePath; folderPath = path.resolve(folderPath, ".."); const filePathNext = path.normalize(path.join(folderPath, fileName)); if (filePathNext === filePath) return; filePath = filePathNext; depth += 1; } }; dist_default = findUpPath; } }); // node_modules/find-up-json/dist/utils.js var attempt; var init_utils = __esm({ "node_modules/find-up-json/dist/utils.js"() { attempt = (fn, fallback) => { try { return fn(); } catch { return fallback; } }; } }); // node_modules/find-up-json/dist/index.js import { Buffer as Buffer2 } from "buffer"; import fs2 from "fs"; import process3 from "process"; var findUp, dist_default2; var init_dist2 = __esm({ "node_modules/find-up-json/dist/index.js"() { init_dist(); init_utils(); findUp = (fileName, folderPath = process3.cwd(), maxDepth = 25) => { const path17 = dist_default(fileName, folderPath, maxDepth); if (!path17) return; const buffer2 = attempt(() => fs2.readFileSync(path17), Buffer2.alloc(0)); const content = attempt(() => JSON.parse(buffer2.toString()), {}); return { path: path17, buffer: buffer2, content }; }; dist_default2 = findUp; } }); // node_modules/get-current-package/dist/index.js import fs3 from "fs"; import path2 from "path"; import process4 from "process"; var getCurrentPackage, dist_default3; var init_dist3 = __esm({ "node_modules/get-current-package/dist/index.js"() { init_dist2(); getCurrentPackage = () => { try { const filePath = fs3.realpathSync(process4.argv[1]); const folderPath = path2.dirname(filePath); const pkg = dist_default2("package.json", folderPath); return pkg == null ? void 0 : pkg.content; } catch { return; } }; dist_default3 = getCurrentPackage; } }); // node_modules/tiny-colors/dist/constants.js var _a, ENV, _a2, ARGV, _a3, _b, _c, ENABLED; var init_constants = __esm({ "node_modules/tiny-colors/dist/constants.js"() { ENV = ((_a = globalThis.process) == null ? void 0 : _a.env) || {}; ARGV = ((_a2 = globalThis.process) == null ? void 0 : _a2.argv) || []; ENABLED = !("NO_COLOR" in ENV) && ENV.COLOR !== "0" && ENV.TERM !== "dumb" && !ARGV.includes("--no-color") && !ARGV.includes("--no-colors") && (ENV.COLOR === "1" || !((_a3 = globalThis.process) == null ? void 0 : _a3.stdout) || ((_c = (_b = globalThis.process) == null ? void 0 : _b.stdout) == null ? void 0 : _c.isTTY) === true); } }); // node_modules/tiny-colors/dist/index.js var chain, wrap, colors, dist_default4; var init_dist4 = __esm({ "node_modules/tiny-colors/dist/index.js"() { init_constants(); chain = (modifier) => { return new Proxy(modifier, { get(target, prop) { if (prop in colors) { return chain((string2) => modifier(colors[prop](string2))); } else { return target[prop]; } } }); }; wrap = (start, end) => { return chain((string2) => { if (!ENABLED) return string2; return `\x1B[${start}m${string2}\x1B[${end}m`; }); }; colors = { /* MODIFIERS */ reset: wrap(0, 0), bold: wrap(1, 22), dim: wrap(2, 22), italic: wrap(3, 23), underline: wrap(4, 24), overline: wrap(53, 55), inverse: wrap(7, 27), hidden: wrap(8, 28), strikethrough: wrap(9, 29), /* FOREGOUND */ black: wrap(30, 39), red: wrap(31, 39), green: wrap(32, 39), yellow: wrap(33, 39), blue: wrap(34, 39), magenta: wrap(35, 39), cyan: wrap(36, 39), white: wrap(37, 39), gray: wrap(90, 39), /* BACKGROUND */ bgBlack: wrap(40, 49), bgRed: wrap(41, 49), bgGreen: wrap(42, 49), bgYellow: wrap(43, 49), bgBlue: wrap(44, 49), bgMagenta: wrap(45, 49), bgCyan: wrap(46, 49), bgWhite: wrap(47, 49), bgGray: wrap(100, 49) }; dist_default4 = colors; } }); // node_modules/tiny-parse-argv/dist/utils.js var castArray, isBoolean, isNil, isNull, isOverridable, isUndefined, setNormal, setVariadic, uniq, uniqBy, without, zip; var init_utils2 = __esm({ "node_modules/tiny-parse-argv/dist/utils.js"() { castArray = (value) => { return Array.isArray(value) ? value : [value]; }; isBoolean = (value) => { return value === true || value === false; }; isNil = (value) => { return value === null || value === void 0; }; isNull = (value) => { return value === null; }; isOverridable = (value) => { return isNil(value) || isBoolean(value) || value === ""; }; isUndefined = (value) => { return value === void 0; }; setNormal = (target, key2, value, override) => { if (override) { target[key2] = value; } else if (Array.isArray(target[key2])) { target[key2].push(value); } else if (isOverridable(target[key2])) { target[key2] = value; } else { target[key2] = [target[key2], value]; } }; setVariadic = (target, key2, value, override) => { const values = castArray(value); if (override) { target[key2] = values; } else if (Array.isArray(target[key2])) { target[key2].push(...values); } else if (isOverridable(target[key2])) { target[key2] = values; } else { target[key2] = [target[key2], ...values]; } }; uniq = (values) => { return Array.from(new Set(values)); }; uniqBy = (values, iterator) => { const ids = /* @__PURE__ */ new Set(); return values.filter((value, index, arr) => { const id = iterator(value, index, arr); if (ids.has(id)) return false; ids.add(id); return true; }); }; without = (values, value) => { return values.filter((other) => other !== value); }; zip = (keys, value) => { return Object.fromEntries(Array.from(keys).map((key2) => [key2, value])); }; } }); // node_modules/tiny-parse-argv/dist/index.js var getAliasesMap, getAliasedMap, getAliasedSet, getAliasedDefaults, getAliasedIncompatibles, setAliased, parseDoubleHyphen, parseWithRegExp, parseCharSeparator, parseEqualsSeparator, parseImplicitSeparator, parseProto, parseOption, parseOptionNegation, parseValue, unquote, parseArgv, dist_default5; var init_dist5 = __esm({ "node_modules/tiny-parse-argv/dist/index.js"() { init_utils2(); getAliasesMap = (aliases = {}) => { const map2 = {}; for (const key2 in aliases) { const values = uniq([key2, ...aliases[key2] || []]); for (const value of values) { if (value in map2) continue; map2[value] = without(values, value); } } return map2; }; getAliasedMap = (aliases, object) => { const map2 = /* @__PURE__ */ new Map(); for (const key2 in object) { const value = object[key2]; if (isUndefined(value)) continue; map2.set(key2, value); const keyAliases = aliases[key2]; if (!keyAliases) continue; for (const key3 of keyAliases) { map2.set(key3, value); } } return map2; }; getAliasedSet = (aliases, values = []) => { const valuesAliases = values.flatMap((value) => aliases[value] || []); const valuesAliased = /* @__PURE__ */ new Set([...values, ...valuesAliases]); return valuesAliased; }; getAliasedDefaults = (aliases, defaults = {}) => { const defaultsAliased = {}; for (const key2 in defaults) { const value = defaults[key2]; const keys = uniq([key2, ...aliases[key2] || []]); for (const key3 of keys) { if (key3 in defaultsAliased) continue; defaultsAliased[key3] = value; } } return defaultsAliased; }; getAliasedIncompatibles = (aliases, incompatibles = {}) => { const incompatiblesAliased = {}; for (const source2 in incompatibles) { const sources = getAliasedSet(aliases, [source2]); const targets = getAliasedSet(aliases, incompatibles[source2]); for (const source3 of sources) { for (const target of targets) { const sourceSet = incompatiblesAliased[source3] || (incompatiblesAliased[source3] = /* @__PURE__ */ new Set()); const targetSet = incompatiblesAliased[target] || (incompatiblesAliased[target] = /* @__PURE__ */ new Set()); sourceSet.add(target); targetSet.add(source3); } } } return incompatiblesAliased; }; setAliased = (target, key2, value, unary, variadic, aliases) => { var _a4; const set3 = variadic ? setVariadic : setNormal; set3(target, key2, value, unary); (_a4 = aliases[key2]) == null ? void 0 : _a4.forEach((alias) => { set3(target, alias, value, unary); }); }; parseDoubleHyphen = (argv) => { const index = argv.indexOf("--"); if (index < 0) return [argv, []]; const parse8 = argv.slice(0, index); const preserve = argv.slice(index + 1); return [parse8, preserve]; }; parseWithRegExp = (argv, re, callback) => { return argv.flatMap((arg) => { const match2 = re.exec(arg); if (!match2) return arg; return callback(...match2); }); }; parseCharSeparator = (argv) => { const re = /^-([a-zA-Z0-9\.]{2,})([^]*)$/; return parseWithRegExp(argv, re, (_, chars2) => chars2.split("").map((char) => `-${char}`)); }; parseEqualsSeparator = (argv) => { const re = /^(--?[^=][^=]*?)=([^]*)$/; const shieldValue = (value) => value.startsWith("-") ? `"${value}"` : value; return parseWithRegExp(argv, re, (_, key2, value) => [key2, shieldValue(value)]); }; parseImplicitSeparator = (argv) => { const re = /^(--?(?:no-)?\S*?[a-zA-Z]\S*?)((?:[0-9\/]|-(?=$))[^]*)$/; return parseWithRegExp(argv, re, (_, key2, value) => [key2, value]); }; parseProto = (argv) => { const re = /^--?(no-)?(__proto__|prototype|constructor)$/; return argv.filter((arg, index) => !re.test(arg) && !re.test(argv[index - 1])); }; parseOption = (arg) => { const optionRe = /^(--?)([^]+)$/; const match2 = optionRe.exec(arg); if (!match2) return; return match2[2]; }; parseOptionNegation = (arg) => { const negationRe = /^no-([^]+)$/; const match2 = negationRe.exec(arg); if (!match2) return [arg, true]; return [match2[1], false]; }; parseValue = (key2, valueRaw, booleans, integers, numbers, strings, validators) => { var _a4; const value = unquote(String(valueRaw)); if (((_a4 = validators.get(key2)) == null ? void 0 : _a4(value)) === false) { return null; } if (booleans.has(key2)) { if (value === "true") return true; if (value === "false") return false; } if (integers.has(key2)) { const integer = Number(value); if (Number.isInteger(integer)) return integer; return null; } if (numbers.has(key2)) { const number = Number(value); if (!Number.isNaN(number)) return number; return null; } if (strings.has(key2) || value !== valueRaw) { return value; } const numberRe = /^0[xX][0-9a-fA-F]+$|^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][-+]?\d+)?$/; if (numberRe.test(value)) { return Number(value); } else { return value; } }; unquote = (value) => { return value.replace(/^(['"])(\1*)(.*)(\1\2)$/, "$3"); }; parseArgv = (argv, options = {}) => { const aliases = getAliasesMap(options.alias); const booleans = getAliasedSet(aliases, options.boolean); const integers = getAliasedSet(aliases, options.integer); const numbers = getAliasedSet(aliases, options.number); const strings = getAliasedSet(aliases, options.string); const eagers = getAliasedSet(aliases, options.eager); const unarys = getAliasedSet(aliases, options.unary); const variadics = getAliasedSet(aliases, options.variadic); const defaults = getAliasedDefaults(aliases, options.default); const incompatibles = getAliasedIncompatibles(aliases, options.incompatible); const validators = getAliasedMap(aliases, options.validators); const required = options.required || []; const known = /* @__PURE__ */ new Set([...booleans, ...integers, ...numbers, ...strings, ...Object.keys(defaults)]); const found = []; const onIncompatible = options.onIncompatible; const onInvalid = options.onInvalid; const onMissing = options.onMissing; const onUnknown = options.onUnknown; const [parse8, preserve] = parseDoubleHyphen(argv); const parsed = { _: [], "--": preserve }; const args = parseCharSeparator(parseImplicitSeparator(parseEqualsSeparator(parseProto(parse8)))); let optionPrev = ""; let optionEagerPrev = ""; for (let i = 0, l = args.length; i < l; i++) { const arg = args[i]; const option = parseOption(arg); if (option) { const [key2, positive] = parseOptionNegation(option); if (isOverridable(parsed[key2])) { if (!integers.has(key2) && !numbers.has(key2) && !strings.has(key2)) { const unary = unarys.has(key2); const variadic = variadics.has(key2); const value = variadic ? [positive] : positive; setAliased(parsed, key2, value, unary, variadic, aliases); } } found.push(key2); optionPrev = option; optionEagerPrev = eagers.has(key2) ? option : ""; } else { const value = parseValue(optionPrev, arg, booleans, integers, numbers, strings, validators); if (optionPrev && (!booleans.has(optionPrev) || isBoolean(value))) { if (!isNull(value)) { const unary = unarys.has(optionPrev); const variadic = variadics.has(optionPrev); setAliased(parsed, optionPrev, value, unary, variadic, aliases); } } else if (optionEagerPrev && !booleans.has(optionEagerPrev)) { if (!isNull(value)) { const unary = unarys.has(optionEagerPrev); const variadic = variadics.has(optionEagerPrev); setAliased(parsed, optionEagerPrev, value, unary, variadic, aliases); } } else { parsed._.push(String(value ?? arg)); optionEagerPrev = ""; } optionPrev = ""; } } const parsedWithDefaults = { ...defaults, ...parsed }; const parsedWithDefaultsAndBooleans = { ...zip(booleans, false), ...parsedWithDefaults }; if (onUnknown) { const unknowns = Object.keys(parsedWithDefaults).filter((key2) => key2 !== "_" && key2 !== "--" && !known.has(key2)); if (unknowns.length) { onUnknown(unknowns); } } if (onMissing) { const missings = required.filter((key2) => !(key2 in parsedWithDefaults)); if (missings.length) { onMissing(missings); } } if (onInvalid) { const invalids = found.filter((key2) => parsedWithDefaults[key2] === void 0); if (invalids.length) { onInvalid(invalids); } } if (onIncompatible) { const options2 = uniq(found); const pairs2 = []; for (let si = 0, sl = options2.length; si < sl; si++) { const source2 = options2[si]; const sourceIncompatibles = incompatibles[source2]; if (!sourceIncompatibles) continue; for (let ti = si + 1, tl = sl; ti < tl; ti++) { const target = options2[ti]; if (!sourceIncompatibles.has(target)) continue; pairs2.push([source2, target]); } } if (pairs2.length) { const pairsUnique = uniqBy(pairs2, (pair) => [...pair].sort().join()); onIncompatible(pairsUnique); } } return parsedWithDefaultsAndBooleans; }; dist_default5 = parseArgv; } }); // node_modules/ionstore/dist/utils.js var attempt2; var init_utils3 = __esm({ "node_modules/ionstore/dist/utils.js"() { attempt2 = (fn, fallback) => { try { return fn(); } catch { return fallback; } }; } }); // node_modules/ionstore/dist/abstract.js var __classPrivateFieldSet, __classPrivateFieldGet, _AbstractStore_save, AbstractStore, abstract_default; var init_abstract = __esm({ "node_modules/ionstore/dist/abstract.js"() { init_utils3(); __classPrivateFieldSet = function(receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value; }; __classPrivateFieldGet = function(receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; AbstractStore = class extends Map { /* CONSTRUCTOR */ constructor(options) { super(); _AbstractStore_save.set(this, void 0); const { id, backend } = options; if (!/^[a-zA-Z0-9_-]+$/.test(id)) throw new Error(`Invalid store id: "${id}"`); const read3 = () => attempt2(() => backend.read(id), []); const write = () => attempt2(() => backend.write(id, this.entries()), null); for (const [key2, value] of read3()) { super.set(key2, value); } __classPrivateFieldSet(this, _AbstractStore_save, write, "f"); return this; } /* API */ clear() { if (!this.size) return; super.clear(); __classPrivateFieldGet(this, _AbstractStore_save, "f").call(this); } delete(key2) { const deleted = super.delete(key2); if (!deleted) return false; __classPrivateFieldGet(this, _AbstractStore_save, "f").call(this); return true; } set(key2, value) { const valuePrev = this.get(key2); if (value === valuePrev) return this; super.set(key2, value); __classPrivateFieldGet(this, _AbstractStore_save, "f").call(this); return this; } }; _AbstractStore_save = /* @__PURE__ */ new WeakMap(); abstract_default = AbstractStore; } }); // node_modules/ionstore/dist/node.js import fs4 from "fs"; import os from "os"; import path3 from "path"; var NodeStore, node_default; var init_node = __esm({ "node_modules/ionstore/dist/node.js"() { init_abstract(); NodeStore = class extends abstract_default { /* CONSTRUCTOR */ constructor(id) { super({ id, backend: { read: (id2) => { const filePath = path3.join(os.tmpdir(), `ionstore_${id2}.json`); const content = fs4.readFileSync(filePath, "utf8"); return JSON.parse(content); }, write: (id2, data) => { const filePath = path3.join(os.tmpdir(), `ionstore_${id2}.json`); const content = JSON.stringify(Array.from(data)); return fs4.writeFileSync(filePath, content); } } }); } }; node_default = NodeStore; } }); // node_modules/when-exit/dist/node/constants.js import process5 from "process"; var IS_LINUX, IS_WINDOWS; var init_constants2 = __esm({ "node_modules/when-exit/dist/node/constants.js"() { IS_LINUX = process5.platform === "linux"; IS_WINDOWS = process5.platform === "win32"; } }); // node_modules/when-exit/dist/node/signals.js var Signals, signals_default; var init_signals = __esm({ "node_modules/when-exit/dist/node/signals.js"() { init_constants2(); Signals = ["SIGABRT", "SIGALRM", "SIGHUP", "SIGINT", "SIGTERM"]; if (!IS_WINDOWS) { Signals.push("SIGVTALRM", "SIGXCPU", "SIGXFSZ", "SIGUSR2", "SIGTRAP", "SIGSYS", "SIGQUIT", "SIGIOT"); } if (IS_LINUX) { Signals.push("SIGIO", "SIGPOLL", "SIGPWR", "SIGSTKFLT", "SIGUNUSED"); } signals_default = Signals; } }); // node_modules/when-exit/dist/node/interceptor.js import process6 from "process"; var Interceptor, interceptor_default; var init_interceptor = __esm({ "node_modules/when-exit/dist/node/interceptor.js"() { init_constants2(); init_signals(); Interceptor = class { /* CONSTRUCTOR */ constructor() { this.callbacks = /* @__PURE__ */ new Set(); this.exited = false; this.exit = (signal) => { if (this.exited) return; this.exited = true; for (const callback of this.callbacks) { callback(); } if (signal) { if (IS_WINDOWS && (signal !== "SIGINT" && signal !== "SIGTERM" && signal !== "SIGKILL")) { process6.kill(process6.pid, "SIGTERM"); } else { process6.kill(process6.pid, signal); } } }; this.hook = () => { process6.once("exit", () => this.exit()); for (const signal of signals_default) { try { process6.once(signal, () => this.exit(signal)); } catch { } } }; this.register = (callback) => { this.callbacks.add(callback); return () => { this.callbacks.delete(callback); }; }; this.hook(); } }; interceptor_default = new Interceptor(); } }); // node_modules/when-exit/dist/node/index.js var whenExit, node_default2; var init_node2 = __esm({ "node_modules/when-exit/dist/node/index.js"() { init_interceptor(); whenExit = interceptor_default.register; node_default2 = whenExit; } }); // node_modules/tiny-updater/dist/compare.js var compare, compare_default; var init_compare = __esm({ "node_modules/tiny-updater/dist/compare.js"() { compare = (a, b) => { const pa = a.split("."); const pb = b.split("."); for (let i = 0; i < 3; i++) { let na = Number(pa[i]); let nb = Number(pb[i]); if (na > nb) return 1; if (nb > na) return -1; if (!isNaN(na) && isNaN(nb)) return 1; if (isNaN(na) && !isNaN(nb)) return -1; } return 0; }; compare_default = compare; } }); // node_modules/tiny-updater/dist/utils.js var Utils, utils_default; var init_utils4 = __esm({ "node_modules/tiny-updater/dist/utils.js"() { init_dist4(); init_node2(); init_compare(); Utils = { /* API */ fetch: async (url3) => { const signal = Utils.getExitSignal(); const request = await fetch(url3, { signal }); const json2 = await request.json(); return json2; }, getExitSignal: () => { const aborter = new AbortController(); node_default2(() => aborter.abort()); return aborter.signal; }, getLatestVersion: async (name) => { const latestUrl = `https://registry.npmjs.org/${name}/latest`; const latest = await Utils.fetch(latestUrl); return latest.version; }, isNumber: (value) => { return typeof value === "number"; }, isString: (value) => { return typeof value === "string"; }, isUpdateAvailable: (current, latest) => { return compare_default(current, latest) === -1; }, noop: () => { return; }, notify: (name, version, latest) => { var _a4, _b2; if (!((_b2 = (_a4 = globalThis.process) == null ? void 0 : _a4.stdout) == null ? void 0 : _b2.isTTY)) return; const log = () => console.log(` \u{1F4E6} Update available for ${dist_default4.cyan(name)}: ${dist_default4.gray(version)} \u2192 ${dist_default4.green(latest)}`); node_default2(log); } }; utils_default = Utils; } }); // node_modules/tiny-updater/dist/store.js var Store, store_default; var init_store = __esm({ "node_modules/tiny-updater/dist/store.js"() { init_node(); init_utils4(); Store = class { constructor() { this.store = new node_default("tiny-updater"); this.get = (name) => { try { const recordRaw = this.store.get(name); if (!recordRaw) return; const record = JSON.parse(recordRaw); if (!utils_default.isNumber(record.timestampFetch)) return; if (!utils_default.isNumber(record.timestampNotification)) return; if (!utils_default.isString(record.version)) return; return record; } catch { return; } }; this.set = (name, record) => { this.store.set(name, JSON.stringify(record)); }; } }; store_default = new Store(); } }); // node_modules/tiny-updater/dist/index.js var updater, dist_default6; var init_dist6 = __esm({ "node_modules/tiny-updater/dist/index.js"() { init_store(); init_utils4(); updater = async ({ name, version, ttl = 0 }) => { const record = store_default.get(name); const timestamp2 = Date.now(); const isFresh = !record || timestamp2 - record.timestampFetch >= ttl; const latest = isFresh ? await utils_default.getLatestVersion(name).catch(utils_default.noop) : record == null ? void 0 : record.version; if (!latest) return false; if (isFresh) { const record2 = { timestampFetch: timestamp2, timestampNotification: timestamp2, version: latest }; store_default.set(name, record2); } if (!utils_default.isUpdateAvailable(version, latest)) { return false; } if (isFresh) { utils_default.notify(name, version, latest); } return true; }; dist_default6 = updater; } }); // node_modules/fast-string-truncated-width/dist/utils.js var isAmbiguous, isFullWidth, isWide; var init_utils5 = __esm({ "node_modules/fast-string-truncated-width/dist/utils.js"() { isAmbiguous = (x) => { return x === 161 || x === 164 || x === 167 || x === 168 || x === 170 || x === 173 || x === 174 || x >= 176 && x <= 180 || x >= 182 && x <= 186 || x >= 188 && x <= 191 || x === 198 || x === 208 || x === 215 || x === 216 || x >= 222 && x <= 225 || x === 230 || x >= 232 && x <= 234 || x === 236 || x === 237 || x === 240 || x === 242 || x === 243 || x >= 247 && x <= 250 || x === 252 || x === 254 || x === 257 || x === 273 || x === 275 || x === 283 || x === 294 || x === 295 || x === 299 || x >= 305 && x <= 307 || x === 312 || x >= 319 && x <= 322 || x === 324 || x >= 328 && x <= 331 || x === 333 || x === 338 || x === 339 || x === 358 || x === 359 || x === 363 || x === 462 || x === 464 || x === 466 || x === 468 || x === 470 || x === 472 || x === 474 || x === 476 || x === 593 || x === 609 || x === 708 || x === 711 || x >= 713 && x <= 715 || x === 717 || x === 720 || x >= 728 && x <= 731 || x === 733 || x === 735 || x >= 768 && x <= 879 || x >= 913 && x <= 929 || x >= 931 && x <= 937 || x >= 945 && x <= 961 || x >= 963 && x <= 969 || x === 1025 || x >= 1040 && x <= 1103 || x === 1105 || x === 8208 || x >= 8211 && x <= 8214 || x === 8216 || x === 8217 || x === 8220 || x === 8221 || x >= 8224 && x <= 8226 || x >= 8228 && x <= 8231 || x === 8240 || x === 8242 || x === 8243 || x === 8245 || x === 8251 || x === 8254 || x === 8308 || x === 8319 || x >= 8321 && x <= 8324 || x === 8364 || x === 8451 || x === 8453 || x === 8457 || x === 8467 || x === 8470 || x === 8481 || x === 8482 || x === 8486 || x === 8491 || x === 8531 || x === 8532 || x >= 8539 && x <= 8542 || x >= 8544 && x <= 8555 || x >= 8560 && x <= 8569 || x === 8585 || x >= 8592 && x <= 8601 || x === 8632 || x === 8633 || x === 8658 || x === 8660 || x === 8679 || x === 8704 || x === 8706 || x === 8707 || x === 8711 || x === 8712 || x === 8715 || x === 8719 || x === 8721 || x === 8725 || x === 8730 || x >= 8733 && x <= 8736 || x === 8739 || x === 8741 || x >= 8743 && x <= 8748 || x === 8750 || x >= 8756 && x <= 8759 || x === 8764 || x === 8765 || x === 8776 || x === 8780 || x === 8786 || x === 8800 || x === 8801 || x >= 8804 && x <= 8807 || x === 8810 || x === 8811 || x === 8814 || x === 8815 || x === 8834 || x === 8835 || x === 8838 || x === 8839 || x === 8853 || x === 8857 || x === 8869 || x === 8895 || x === 8978 || x >= 9312 && x <= 9449 || x >= 9451 && x <= 9547 || x >= 9552 && x <= 9587 || x >= 9600 && x <= 9615 || x >= 9618 && x <= 9621 || x === 9632 || x === 9633 || x >= 9635 && x <= 9641 || x === 9650 || x === 9651 || x === 9654 || x === 9655 || x === 9660 || x === 9661 || x === 9664 || x === 9665 || x >= 9670 && x <= 9672 || x === 9675 || x >= 9678 && x <= 9681 || x >= 9698 && x <= 9701 || x === 9711 || x === 9733 || x === 9734 || x === 9737 || x === 9742 || x === 9743 || x === 9756 || x === 9758 || x === 9792 || x === 9794 || x === 9824 || x === 9825 || x >= 9827 && x <= 9829 || x >= 9831 && x <= 9834 || x === 9836 || x === 9837 || x === 9839 || x === 9886 || x === 9887 || x === 9919 || x >= 9926 && x <= 9933 || x >= 9935 && x <= 9939 || x >= 9941 && x <= 9953 || x === 9955 || x === 9960 || x === 9961 || x >= 9963 && x <= 9969 || x === 9972 || x >= 9974 && x <= 9977 || x === 9979 || x === 9980 || x === 9982 || x === 9983 || x === 10045 || x >= 10102 && x <= 10111 || x >= 11094 && x <= 11097 || x >= 12872 && x <= 12879 || x >= 57344 && x <= 63743 || x >= 65024 && x <= 65039 || x === 65533 || x >= 127232 && x <= 127242 || x >= 127248 && x <= 127277 || x >= 127280 && x <= 127337 || x >= 127344 && x <= 127373 || x === 127375 || x === 127376 || x >= 127387 && x <= 127404 || x >= 917760 && x <= 917999 || x >= 983040 && x <= 1048573 || x >= 1048576 && x <= 1114109; }; isFullWidth = (x) => { return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510; }; isWide = (x) => { return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9800 && x <= 9811 || x === 9855 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12771 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 19903 || x >= 19968 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x === 94192 || x === 94193 || x >= 94208 && x <= 100343 || x >= 100352 && x <= 101589 || x >= 101632 && x <= 101640 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128727 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129672 || x >= 129680 && x <= 129725 || x >= 129727 && x <= 129733 || x >= 129742 && x <= 129755 || x >= 129760 && x <= 129768 || x >= 129776 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141; }; } }); // node_modules/fast-string-truncated-width/dist/index.js var ANSI_RE, CONTROL_RE, TAB_RE, EMOJI_RE, LATIN_RE, MODIFIER_RE, NO_TRUNCATION, getStringTruncatedWidth, dist_default7; var init_dist7 = __esm({ "node_modules/fast-string-truncated-width/dist/index.js"() { init_utils5(); ANSI_RE = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/y; CONTROL_RE = /[\x00-\x08\x0A-\x1F\x7F-\x9F]{1,1000}/y; TAB_RE = /\t{1,1000}/y; EMOJI_RE = /[\u{1F1E6}-\u{1F1FF}]{2}|\u{1F3F4}[\u{E0061}-\u{E007A}]{2}[\u{E0030}-\u{E0039}\u{E0061}-\u{E007A}]{1,3}\u{E007F}|(?:\p{Emoji}\uFE0F\u20E3?|\p{Emoji_Modifier_Base}\p{Emoji_Modifier}?|\p{Emoji_Presentation})(?:\u200D(?:\p{Emoji_Modifier_Base}\p{Emoji_Modifier}?|\p{Emoji_Presentation}|\p{Emoji}\uFE0F\u20E3?))*/yu; LATIN_RE = /(?:[\x20-\x7E\xA0-\xFF](?!\uFE0F)){1,1000}/y; MODIFIER_RE = /\p{M}+/gu; NO_TRUNCATION = { limit: Infinity, ellipsis: "" }; getStringTruncatedWidth = (input, truncationOptions = {}, widthOptions = {}) => { const LIMIT = truncationOptions.limit ?? Infinity; const ELLIPSIS2 = truncationOptions.ellipsis ?? ""; const ELLIPSIS_WIDTH2 = (truncationOptions == null ? void 0 : truncationOptions.ellipsisWidth) ?? (ELLIPSIS2 ? getStringTruncatedWidth(ELLIPSIS2, NO_TRUNCATION, widthOptions).width : 0); const ANSI_WIDTH = widthOptions.ansiWidth ?? 0; const CONTROL_WIDTH = widthOptions.controlWidth ?? 0; const TAB_WIDTH = widthOptions.tabWidth ?? 8; const AMBIGUOUS_WIDTH = widthOptions.ambiguousWidth ?? 1; const EMOJI_WIDTH = widthOptions.emojiWidth ?? 2; const FULL_WIDTH_WIDTH = widthOptions.fullWidthWidth ?? 2; const REGULAR_WIDTH = widthOptions.regularWidth ?? 1; const WIDE_WIDTH = widthOptions.wideWidth ?? 2; let indexPrev = 0; let index = 0; let length = input.length; let lengthExtra = 0; let truncationEnabled = false; let truncationIndex = length; let truncationLimit = Math.max(0, LIMIT - ELLIPSIS_WIDTH2); let unmatchedStart = 0; let unmatchedEnd = 0; let width = 0; let widthExtra = 0; outer: while (true) { if (unmatchedEnd > unmatchedStart || index >= length && index > indexPrev) { const unmatched = input.slice(unmatchedStart, unmatchedEnd) || input.slice(indexPrev, index); lengthExtra = 0; for (const char of unmatched.replaceAll(MODIFIER_RE, "")) { const codePoint = char.codePointAt(0) || 0; if (isFullWidth(codePoint)) { widthExtra = FULL_WIDTH_WIDTH; } else if (isWide(codePoint)) { widthExtra = WIDE_WIDTH; } else if (AMBIGUOUS_WIDTH !== REGULAR_WIDTH && isAmbiguous(codePoint)) { widthExtra = AMBIGUOUS_WIDTH; } else { widthExtra = REGULAR_WIDTH; } if (width + widthExtra > truncationLimit) { truncationIndex = Math.min(truncationIndex, Math.max(unmatchedStart, indexPrev) + lengthExtra); } if (width + widthExtra > LIMIT) { truncationEnabled = true; break outer; } lengthExtra += char.length; width += widthExtra; } unmatchedStart = unmatchedEnd = 0; } if (index >= length) break; LATIN_RE.lastIndex = index; if (LATIN_RE.test(input)) { lengthExtra = LATIN_RE.lastIndex - index; widthExtra = lengthExtra * REGULAR_WIDTH; if (width + widthExtra > truncationLimit) { truncationIndex = Math.min(truncationIndex, index + Math.floor((truncationLimit - width) / REGULAR_WIDTH)); } if (width + widthExtra > LIMIT) { truncationEnabled = true; break; } width += widthExtra; unmatchedStart = indexPrev; unmatchedEnd = index; index = indexPrev = LATIN_RE.lastIndex; continue; } ANSI_RE.lastIndex = index; if (ANSI_RE.test(input)) { if (width + ANSI_WIDTH > truncationLimit) { truncationIndex = Math.min(truncationIndex, index); } if (width + ANSI_WIDTH > LIMIT) { truncationEnabled = true; break; } width += ANSI_WIDTH; unmatchedStart = indexPrev; unmatchedEnd = index; index = indexPrev = ANSI_RE.lastIndex; continue; } CONTROL_RE.lastIndex = index; if (CONTROL_RE.test(input)) { lengthExtra = CONTROL_RE.lastIndex - index; widthExtra = lengthExtra * CONTROL_WIDTH; if (width + widthExtra > truncationLimit) { truncationIndex = Math.min(truncationIndex, index + Math.floor((truncationLimit - width) / CONTROL_WIDTH)); } if (width + widthExtra > LIMIT) { truncationEnabled = true; break; } width += widthExtra; unmatchedStart = indexPrev; unmatchedEnd = index; index = indexPrev = CONTROL_RE.lastIndex; continue; } TAB_RE.lastIndex = index; if (TAB_RE.test(input)) { lengthExtra = TAB_RE.lastIndex - index; widthExtra = lengthExtra * TAB_WIDTH; if (width + widthExtra > truncationLimit) { truncationIndex = Math.min(truncationIndex, index + Math.floor((truncationLimit - width) / TAB_WIDTH)); } if (width + widthExtra > LIMIT) { truncationEnabled = true; break; } width += widthExtra; unmatchedStart = indexPrev; unmatchedEnd = index; index = indexPrev = TAB_RE.lastIndex; continue; } EMOJI_RE.lastIndex = index; if (EMOJI_RE.test(input)) { if (width + EMOJI_WIDTH > truncationLimit) { truncationIndex = Math.min(truncationIndex, index); } if (width + EMOJI_WIDTH > LIMIT) { truncationEnabled = true; break; } width += EMOJI_WIDTH; unmatchedStart = indexPrev; unmatchedEnd = index; index = indexPrev = EMOJI_RE.lastIndex; continue; } index += 1; } return { width: truncationEnabled ? truncationLimit : width, index: truncationEnabled ? truncationIndex : length, truncated: truncationEnabled, ellipsed: truncationEnabled && LIMIT >= ELLIPSIS_WIDTH2 }; }; dist_default7 = getStringTruncatedWidth; } }); // node_modules/fast-string-width/dist/index.js var NO_TRUNCATION2, fastStringWidth, dist_default8; var init_dist8 = __esm({ "node_modules/fast-string-width/dist/index.js"() { init_dist7(); NO_TRUNCATION2 = { limit: Infinity, ellipsis: "", ellipsisWidth: 0 }; fastStringWidth = (input, options = {}) => { return dist_default7(input, NO_TRUNCATION2, options).width; }; dist_default8 = fastStringWidth; } }); // node_modules/tiny-bin/dist/objects/addon.js var Addon, addon_default; var init_addon = __esm({ "node_modules/tiny-bin/dist/objects/addon.js"() { Addon = class { /* CONSTRUCTOR */ constructor(bin2) { this.bin = bin2; this.stdout = bin2.stdout; this.stderr = bin2.stderr; } }; addon_default = Addon; } }); // node_modules/ansi-purge/dist/constants.js var ANSI_RE2; var init_constants3 = __esm({ "node_modules/ansi-purge/dist/constants.js"() { ANSI_RE2 = /([\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><])/g; } }); // node_modules/ansi-purge/dist/index.js var purge, dist_default9; var init_dist9 = __esm({ "node_modules/ansi-purge/dist/index.js"() { init_constants3(); purge = (str2) => { return str2.replace(ANSI_RE2, ""); }; dist_default9 = purge; } }); // node_modules/tiny-levenshtein/dist/matrix.js var Matrix, matrix_default; var init_matrix = __esm({ "node_modules/tiny-levenshtein/dist/matrix.js"() { Matrix = class { /* CONSTRUCTOR */ constructor(rows, columns, Buffer3 = Uint32Array) { this.rows = rows; this.columns = columns; this.buffer = new Buffer3(this.rows * this.columns); } /* API */ get(row, column2) { const index = row * this.columns + column2; return this.buffer[index]; } set(row, column2, value) { const index = row * this.columns + column2; return this.buffer[index] = value; } }; matrix_default = Matrix; } }); // node_modules/tiny-levenshtein/dist/index.js var levenshtein, dist_default10; var init_dist10 = __esm({ "node_modules/tiny-levenshtein/dist/index.js"() { init_matrix(); levenshtein = (a, b) => { if (a === b) return 0; let start = 0; let aEnd = a.length - 1; let bEnd = b.length - 1; while (start <= aEnd && start <= bEnd) { if (a.charCodeAt(start) !== b.charCodeAt(start)) break; start += 1; } while (aEnd >= start && bEnd >= start) { if (a.charCodeAt(aEnd) !== b.charCodeAt(bEnd)) break; aEnd -= 1; bEnd -= 1; } const aLength = aEnd - start + 1; const bLength = bEnd - start + 1; if (!aLength) return bLength; if (!bLength) return aLength; const maxDistance = Math.max(aLength, bLength); const Buffer3 = maxDistance < 255 ? Uint8Array : maxDistance < 65535 ? Uint16Array : Uint32Array; const matrix = new matrix_default(aLength + 1, bLength + 1, Buffer3); for (let i = 1, l = aLength; i <= l; i++) { matrix.set(i, 0, i); } for (let i = 1, l = bLength; i <= l; i++) { matrix.set(0, i, i); } for (let i = 1; i <= aLength; i++) { for (let j = 1; j <= bLength; j++) { const cost = a.charCodeAt(start + i - 1) === b.charCodeAt(start + j - 1) ? 0 : 1; const deletion = matrix.get(i - 1, j) + 1; const insertion = matrix.get(i, j - 1) + 1; const substitution = matrix.get(i - 1, j - 1) + cost; const value = Math.min(deletion, insertion, substitution); matrix.set(i, j, value); } } const distance = matrix.get(aLength, bLength); return distance; }; dist_default10 = levenshtein; } }); // node_modules/tiny-bin/dist/utils.js var camelCase, castArray2, defer, getClosest, groupBy, identity, isArray, isUndefined2, pushBack, sum; var init_utils6 = __esm({ "node_modules/tiny-bin/dist/utils.js"() { init_dist9(); init_dist10(); camelCase = /* @__PURE__ */ (() => { const dividerRe = /[_.\s-]+/g; const prefixRe = /^[_.\s-]+/g; const upperDigitRe = /\d+[\p{Alpha}\p{N}_]/gu; const upperDividerRe = /[_.\s-]+[\p{Alpha}\p{N}_]/gu; const toUpperCase = (str2) => str2.toUpperCase(); return (str2) => { return str2.trim().toLowerCase().replace(prefixRe, "").replace(upperDigitRe, toUpperCase).replace(upperDividerRe, toUpperCase).replace(dividerRe, ""); }; })(); castArray2 = (value) => { return Array.isArray(value) ? value : [value]; }; defer = (fn) => { setTimeout(fn, 0); }; getClosest = (values, value, maxDistance = 3, caseInsensitive = false) => { if (!values.length) return; const target = caseInsensitive ? value.toLowerCase() : value; const targets = caseInsensitive ? values.map((value2) => value2.toLowerCase()) : values; const distances = targets.map((other) => dist_default10(target, other)); const minDistance = Math.min(...distances); if (minDistance > maxDistance) return; const minDistanceIndex = distances.indexOf(minDistance); const closest = values[minDistanceIndex]; return closest; }; groupBy = (values, iterator) => { const groups = /* @__PURE__ */ new Map(); for (let i = 0, l = values.length; i < l; i++) { const value = values[i]; const key2 = iterator(value, i, values); const group = groups.get(key2) || []; group.push(value); groups.set(key2, group); } return groups; }; identity = (value) => { return value; }; isArray = (value) => { return Array.isArray(value); }; isUndefined2 = (value) => { return value === void 0; }; pushBack = (map2, key2) => { const value = map2.get(key2); if (isUndefined2(value)) return map2; map2.delete(key2); map2.set(key2, value); return map2; }; sum = (numbers) => { return numbers.reduce((acc, value) => acc + value, 0); }; } }); // node_modules/tiny-bin/dist/objects/logger.js var Logger, logger_default; var init_logger = __esm({ "node_modules/tiny-bin/dist/objects/logger.js"() { init_dist8(); init_dist4(); init_addon(); init_utils6(); Logger = class extends addon_default { /* CONSTRUCTOR */ constructor(bin2, handler) { super(bin2); this.indentationLevel = 0; this.indentation = " "; this.handler = handler; } /* API */ indent() { this.indentationLevel += 1; } dedent() { this.indentationLevel -= 1; } group(name, fn) { this.print(dist_default4.bold(name.toUpperCase())); this.indent(); this.print(); fn(); this.print(); this.dedent(); } print(message = "") { const colorize = this.bin.metadata.colors ? identity : dist_default9; this.handler(colorize(`${this.indentation.repeat(this.indentationLevel)}${message}`)); } table(rows, mode = "line") { const rowsLengths = rows.map((row) => row.map((cell) => dist_default8(cell))); const maxLengths = rowsLengths[0].map((_, j) => Math.max(...rowsLengths.map((_2, i) => rowsLengths[i][j]))); if (mode === "lines" && maxLengths.length === 2) { const COLUMN = 30; const PADDING = 4; rows.forEach(([left, right], i) => { const leftNedded = dist_default8(left) + PADDING; const leftAvailable = COLUMN - leftNedded; const leftShortEnough = leftAvailable >= 2; const rightLines = right.trim().split(/\r?\n|\r/g); const line2 = [left, rightLines.map((line3, i2) => leftShortEnough && !i2 ? `${" ".repeat(leftAvailable)}${line3}` : `${i2 ? "" : "\n"}${" ".repeat(COLUMN)}${line3}`).join("\n")].join(""); this.print(line2); }); } else if (mode === "line") { rows.forEach((row, i) => { const line2 = row.map((value, j) => { const paddingLength = j === row.length - 1 ? 0 : Math.max(0, 1 + maxLengths[j] - rowsLengths[i][j]); const padding = " ".repeat(paddingLength); return `${value}${padding}`; }).join(" "); this.print(line2); }); } else { throw new Error("Unsupported printing mode"); } } }; logger_default = Logger; } }); // node_modules/tiny-bin/dist/objects/metadata.js var Metadata, metadata_default; var init_metadata = __esm({ "node_modules/tiny-bin/dist/objects/metadata.js"() { init_dist4(); init_addon(); Metadata = class extends addon_default { constructor() { super(...arguments); this.name = "bin"; this.description = ""; this.package = ""; this.version = "0.0.0"; this.colors = true; this.exiter = true; this.updater = true; } /* API */ print() { this.stdout.print(`${dist_default4.cyan(this.name)} ${dist_default4.dim(this.version)}`); this.stdout.print(); } }; metadata_default = Metadata; } }); // node_modules/tiny-bin/dist/objects/collection.js var Collection, collection_default; var init_collection = __esm({ "node_modules/tiny-bin/dist/objects/collection.js"() { init_addon(); init_utils6(); Collection = class extends addon_default { constructor() { super(...arguments); this.list = []; this.map = /* @__PURE__ */ new Map(); } /* API */ getAll() { return this.list; } getById(id) { var _a4; return (_a4 = this.getByIds([id])) == null ? void 0 : _a4.value; } getByIdOrFail(id) { const value = this.getById(id); if (value) return value; const ids = Array.from(this.map.keys()); const closest = getClosest(ids, id, 3, true); this.bin.fail(`Not found "${id}"${closest ? `. Did you mean "${closest}"?` : ""}`); } getByIds(ids) { for (const id of ids) { const value = this.map.get(id); if (value) return { id, value }; } } register(value, override = false) { const existing = this.getByIds(value.ids); if (existing && override) { const index = this.list.indexOf(existing.value); existing.value.ids.forEach((id) => this.map.delete(id)); value.ids.forEach((id) => this.map.set(id, value)); this.list.splice(index, 1, value); } else { value.ids.forEach((id) => this.map.set(id, value)); this.list.push(value); } } }; collection_default = Collection; } }); // node_modules/tiny-bin/dist/objects/commands.js var Commands, commands_default; var init_commands = __esm({ "node_modules/tiny-bin/dist/objects/commands.js"() { init_dist4(); init_collection(); init_utils6(); Commands = class extends collection_default { /* API */ print(mode) { const commands = this.getAll(); if (!commands.length) return; const commandsVisible = commands.filter((command) => !command.hidden); if (!commandsVisible.length) return; const withoutOther = (section) => section.toLowerCase() !== "other" ? section : ""; const commandsBySection = pushBack(groupBy(commandsVisible, (command) => withoutOther(command.section.toLowerCase())), ""); commandsBySection.forEach((commands2, section) => { if (!commands2.length) return; const title = section ? `${section.toUpperCase()} COMMANDS` : commandsBySection.size > 1 ? "OTHER COMMANDS" : "COMMANDS"; const table = commands2.map((command) => { const withDeprecated = command.deprecated ? dist_default4.dim : identity; return [ [ dist_default4.magenta(command.name), ...command.arguments.getAll().map((arg) => dist_default4.yellow(arg.name)) ].join(" "), command.description ].map(withDeprecated); }); this.stdout.group(title, () => { this.stdout.table(table, mode); }); }); } run(name, options, argv) { const command = this.getByIdOrFail(name); return command.run(options, argv); } }; commands_default = Commands; } }); // node_modules/tiny-bin/dist/objects/arguments.js var Arguments, arguments_default; var init_arguments = __esm({ "node_modules/tiny-bin/dist/objects/arguments.js"() { init_dist4(); init_collection(); Arguments = class extends collection_default { /* API */ print(mode) { const args = this.getAll(); if (!args.length) return; const table = args.map((arg) => [ dist_default4.yellow(arg.name), arg.description ]); this.stdout.group("ARGUMENTS", () => { this.stdout.table(table, mode); }); } }; arguments_default = Arguments; } }); // node_modules/tiny-bin/dist/objects/options.js var Options, options_default; var init_options = __esm({ "node_modules/tiny-bin/dist/objects/options.js"() { init_dist4(); init_collection(); init_utils6(); Options = class extends collection_default { /* API */ print(mode) { const options = this.getAll(); if (!options.length) return; const optionsVisible = options.filter((option) => !option.hidden); if (!optionsVisible.length) return; const withoutOther = (section) => section.toLowerCase() !== "other" ? section : ""; const optionsBySection = pushBack(groupBy(optionsVisible, (option) => withoutOther(option.section.toLowerCase())), ""); optionsBySection.forEach((options2, section) => { if (!options2.length) return; const title = section ? `${section.toUpperCase()} OPTIONS` : optionsBySection.size > 1 ? "OTHER OPTIONS" : "OPTIONS"; const table = options2.map((option) => { const withDeprecated = option.deprecated ? dist_default4.dim : identity; return [ [ [ ...option.data.longs.sort().map((long) => dist_default4.green(`--${long}`)), ...option.data.shorts.sort().map((short) => dist_default4.green(`-${short}`)) ].join(", "), [ ...option.data.args.sort().map((arg) => dist_default4.blue(`<${arg}>`)) ].join(" ") ].join(" "), option.description ].map(withDeprecated); }); this.stdout.group(title, () => { this.stdout.table(table, mode); }); }); } }; options_default = Options; } }); // node_modules/tiny-bin/dist/objects/usage.js var Usage, usage_default; var init_usage = __esm({ "node_modules/tiny-bin/dist/objects/usage.js"() { init_dist4(); init_addon(); init_utils6(); Usage = class extends addon_default { constructor() { super(...arguments); this.usages = /* @__PURE__ */ new Set(); } /* API */ print(command) { this.stdout.group("USAGE", () => { if (this.usages.size) { this.usages.forEach((usage) => { this.stdout.print(usage); }); } else { const isCommandDefault = command === this.bin.command; const binName = this.bin.metadata.name; const commandName = isCommandDefault ? "" : command.name; const name = [binName, commandName].filter(identity).join(" "); const commands = isCommandDefault && !command.handler ? dist_default4.magenta("[command]") : ""; const args = command.arguments.getAll().map((arg) => dist_default4.yellow(arg.name)).join(" "); const line2 = [name, commands, args].filter(identity).join(" "); this.stdout.print(line2); } }); } register(usage) { this.usages.add(usage); } }; usage_default = Usage; } }); // node_modules/tiny-bin/dist/objects/command.js var Command, command_default; var init_command = __esm({ "node_modules/tiny-bin/dist/objects/command.js"() { init_addon(); init_arguments(); init_options(); init_usage(); Command = class extends addon_default { /* CONSTRUCTOR */ constructor(bin2, options) { super(bin2); this.arguments = new arguments_default(this.bin); this.options = new options_default(this.bin); this.usage = new usage_default(this.bin); this.ids = [this.parse(options.name)]; this.name = options.name; this.description = options.description; this.section = options.section || ""; this.deprecated = !!options.deprecated; this.hidden = !!options.hidden; } /* PRIVATE API */ parse(name) { const re = /^_?[a-z][a-z-]*$/; const isValid = re.test(name); if (!isValid) this.bin.fail(`Invalid command: "${name}"`); return name; } /* API */ async run(options, argv) { if (!this.handler) { this.bin.fail(`Command handler not defined for command: "${this.name}"`); } else { return this.handler(options, options._, options["--"]); } } }; command_default = Command; } }); // node_modules/tiny-bin/dist/objects/command_default.js var CommandDefault, command_default_default; var init_command_default = __esm({ "node_modules/tiny-bin/dist/objects/command_default.js"() { init_dist5(); init_command(); init_utils6(); CommandDefault = class extends command_default { /* CONSTRUCTOR */ constructor(bin2) { super(bin2, { name: "_default", description: "Execute the default action", hidden: true }); } /* API */ async run(options, argv) { const name = this.bin.commands.getById(options._[0]) ? options._[0] : this.name; if (options["help"] || name === "help") { return this.bin.commands.run("help", options, argv); } else if (options["version"] || options["v"]) { return this.bin.commands.run("_version", options, argv); } else { const isDefault = name === this.name; if (isDefault && !this.handler) { this.bin.fail("Command handler not defined for default command"); } const command = this.bin.commands.getByIdOrFail(name); const options2 = [...this.bin.command.options.getAll(), ...command.options.getAll()]; const minArgs = command.arguments.getAll().filter((arg) => arg.required).length; const maxArgs = sum(command.arguments.getAll().map((arg) => arg.variadic ? Infinity : 1)); const parseArgvOptions = { known: [], boolean: [], integer: [], number: [], string: [], eager: [], required: [], unary: [], variadic: [], alias: {}, default: {}, incompatible: {}, validators: {}, onIncompatible: (options3) => { this.bin.fail(`Incompatible options: "${options3[0][0]}" and "${options3[0][1]}" cannot be used together`); }, onInvalid: (options3) => { this.bin.fail(`Invalid value for "${options3[0]}" option`); }, onMissing: (options3) => { this.bin.fail(`Missing required option: "${options3[0]}"`); }, onUnknown: (options3) => { const closest = getClosest(parseArgvOptions.known, options3[0], 3, true); this.bin.fail(`Unknown option: "${options3[0]}"${closest ? `. Did you mean "${closest}"?` : ""}`); } }; options2.forEach((option) => { var _a4, _b2; parseArgvOptions.known.push(...option.data.alls); if (option.data.type === "boolean") { parseArgvOptions.boolean.push(...option.data.alls); } if (option.data.type === "integer") { parseArgvOptions.integer.push(...option.data.alls); } if (option.data.type === "number") { parseArgvOptions.number.push(...option.data.alls); } if (option.data.type === "string") { parseArgvOptions.string.push(...option.data.alls); } if (option.eager) { parseArgvOptions.eager.push(...option.data.alls); } if (option.incompatible) { const incompatible = (_a4 = parseArgvOptions.incompatible)[_b2 = option.data.alls[0]] || (_a4[_b2] = []); incompatible.push(...option.incompatible); } if (option.required) { parseArgvOptions.required.push(...option.data.alls); } if (!option.variadic) { parseArgvOptions.unary.push(...option.data.alls); } if (option.variadic) { parseArgvOptions.variadic.push(...option.data.alls); } if (option.validate) { parseArgvOptions.validators[option.data.alls[0]] = option.validate; } if ("default" in option) { parseArgvOptions.default[option.data.alls[0]] = option.default; } const [first, ...rest] = option.data.alls; parseArgvOptions.alias[first] = rest; }); const parsed = dist_default5(argv, parseArgvOptions); options2.forEach((option) => { if (option.data.type !== "string") return; const name2 = option.data.alls[0]; const value = parsed[name2]; if (!value) return; const enums = option.enum; if (!enums) return; const values = castArray2(value); values.forEach((value2) => { if (enums.includes(value2)) return; this.bin.fail(`Invalid value for "${option.data.alls[0]}" option, received "${value2}" but only ${enums.map((e) => `"${e}"`).join(", ")} are supported`); }); }); options2.forEach((option) => { const name2 = option.data.alls[0]; const value = parsed[name2]; if (!isArray(value)) return; if (value.length < 2) return; if (option.variadic) return; this.bin.fail(`Expected 1 value for "${option.data.alls[0]}" option, but received "${value.length}" values`); }); Object.keys(parsed).forEach((key2) => { const camelKey = camelCase(key2); if (camelKey === key2) return; parsed[camelKey] = parsed[key2]; }); if (!isDefault) { parsed._.shift(); } const actualArgs = parsed._.length; if (actualArgs < minArgs || actualArgs > maxArgs) { if (minArgs === maxArgs) { this.bin.fail(`Expected ${minArgs} arguments, but received ${actualArgs} arguments`); } else { this.bin.fail(`Expected between ${minArgs} and ${maxArgs} arguments, but received ${actualArgs} arguments`); } } if (isDefault) { return this.handler(parsed, parsed._, parsed["--"]); } else { return command.run(parsed, argv); } } } }; command_default_default = CommandDefault; } }); // node_modules/tiny-bin/dist/objects/argument.js var Argument, argument_default; var init_argument = __esm({ "node_modules/tiny-bin/dist/objects/argument.js"() { init_addon(); Argument = class extends addon_default { /* CONSTRUCTOR */ constructor(bin2, options) { super(bin2); this.ids = [this.parse(options.name)]; this.name = options.name; this.description = options.description; this.required = options.name[0] === "<"; this.variadic = options.name.includes("..."); } /* PRIVATE API */ parse(name) { const re = /^\[([^\].]+)(?:\.\.\.)?\]$|^<([^>.]+)(?:\.\.\.)?>$/; const match2 = re.exec(name); if (!match2) this.bin.fail(`Invalid argument: "${name}"`); const id = match2[1] || match2[2]; return id; } }; argument_default = Argument; } }); // node_modules/tiny-bin/dist/objects/command_help.js var CommandHelp, command_help_default; var init_command_help = __esm({ "node_modules/tiny-bin/dist/objects/command_help.js"() { init_collection(); init_command(); init_argument(); CommandHelp = class extends command_default { /* CONSTRUCTOR */ constructor(bin2) { super(bin2, { name: "help", description: "Display help for the command" }); this.arguments.register(new argument_default(bin2, { name: "[command]", description: "The command to display help for" })); } /* PRIVATE API */ getPrintMode(collections) { return collections.some((collection) => collection.getAll().some((item) => item.description.includes("\n"))) ? "lines" : "line"; } /* API */ async run(options, argv) { const [arg1, arg2] = options._; const hasCustomCommands = this.bin.commands.getAll().length > 3; const name = arg1 === "help" ? arg2 || (options["help"] ? arg1 : "") : hasCustomCommands ? arg1 : ""; if (name) { const command = this.bin.commands.getByIdOrFail(name); const mode = this.getPrintMode([command.arguments, command.options, this.bin.command.options]); this.stdout.indent(); this.stdout.print(); this.bin.metadata.print(); command.usage.print(command); command.arguments.print(mode); this.bin.command.options.print(mode); command.options.print(mode); this.stdout.dedent(); } else { const mode = this.getPrintMode([this.bin.command.arguments, this.bin.command.options, this.bin.commands]); this.stdout.indent(); this.stdout.print(); this.bin.metadata.print(); this.bin.command.usage.print(this.bin.command); this.bin.command.arguments.print(mode); this.bin.command.options.print(mode); if (hasCustomCommands) { this.bin.commands.print(mode); } this.stdout.dedent(); } } }; command_help_default = CommandHelp; } }); // node_modules/tiny-bin/dist/objects/command_version.js var CommandVersion, command_version_default; var init_command_version = __esm({ "node_modules/tiny-bin/dist/objects/command_version.js"() { init_command(); CommandVersion = class extends command_default { /* CONSTRUCTOR */ constructor(bin2) { super(bin2, { name: "_version", description: "Display the version number", hidden: true }); } /* API */ async run(options, argv) { this.stdout.print(this.bin.metadata.version); } }; command_version_default = CommandVersion; } }); // node_modules/tiny-bin/dist/objects/option.js var Option, option_default; var init_option = __esm({ "node_modules/tiny-bin/dist/objects/option.js"() { init_addon(); init_utils6(); Option = class extends addon_default { /* CONSTRUCTOR */ constructor(bin2, options) { super(bin2); this.data = this.parse(options.name, options.type); this.ids = this.data.alls; this.name = options.name; this.description = options.description; this.section = options.section || ""; this.deprecated = !!options.deprecated; this.eager = !!options.eager; this.hidden = !!options.hidden; this.incompatible = castArray2(options.incompatible || []); this.required = !!options.required; this.variadic = options.name.includes("..."); this.default = options.default; this.enum = options.enum; this.validate = options.validate; if (this.eager && !this.data.args.length) { this.bin.fail(`Eager option must not be boolean: "${this.name}"`); } if (this.eager && !this.variadic) { this.bin.fail(`Eager option must be variadic: "${this.name}"`); } } /* PRIVATE API */ parse(name, forceType) { const longsPositive = []; const longs = []; const shorts = []; const args = []; const re = /--([a-z0-9-\.]+)|-([a-zA-Z\.])|<([^>.]+(?:\.\.\.)?)>|([\s,])|([^])/g; name.replace(re, (_, long, short, arg, spacer, invalid) => { if (long && long.startsWith("no-")) longsPositive.push(long.slice(3)); if (long) longs.push(long); if (short) shorts.push(short); if (arg) args.push(arg); if (invalid) this.bin.fail(`Invalid option: "${name}"`); return _; }); if (!longs.length && !shorts.length) this.bin.fail(`Option must define at least a longhand or a shorthand: "${name}"`); if (args.length > 1) this.bin.fail(`Option can define at most one argument: "${name}"`); const type2 = forceType || (args.length ? "string" : "boolean"); const alls = [...longsPositive, ...longs, ...shorts]; const data = { type: type2, alls, longs, shorts, args }; return data; } }; option_default = Option; } }); // node_modules/tiny-bin/dist/objects/bin.js import process7 from "process"; var Bin, bin_default; var init_bin = __esm({ "node_modules/tiny-bin/dist/objects/bin.js"() { init_dist3(); init_dist4(); init_dist5(); init_dist6(); init_logger(); init_metadata(); init_commands(); init_command_default(); init_command_help(); init_command_version(); init_option(); init_utils6(); Bin = class { /* CONSTRUCTOR */ constructor(options) { this.stdout = new logger_default(this, console.log); this.stderr = new logger_default(this, console.error); this.metadata = new metadata_default(this); this.commands = new commands_default(this); this.metadata.name = options.name; this.metadata.description = options.description; const fallback = new command_default_default(this); const help = new command_help_default(this); const version = new command_version_default(this); this.commands.register(fallback); this.commands.register(help); this.commands.register(version); this.command = fallback; this.command.options.register(new option_default(this, { name: "--help", description: "Display help for the command" })); this.command.options.register(new option_default(this, { name: "--version, -v", description: "Display the version number" })); this.command.options.register(new option_default(this, { name: "--no-color, --no-colors", description: "Disable colored output", hidden: true })); } /* API */ fail(message) { this.stderr.print(); this.stderr.indent(); this.stderr.print(dist_default4.red(message)); this.stderr.dedent(); this.stderr.print(); process7.exit(1); } async run(argv = process7.argv.slice(2)) { if (!this.metadata.package) { const pkg = dist_default3(); if (pkg) { const { name, version } = pkg; this.metadata.package = name; this.metadata.version = version; } } if (this.metadata.package && this.metadata.updater) { defer(() => { dist_default6({ name: this.metadata.package, version: this.metadata.version, ttl: 432e5 }); }); } try { const options = dist_default5(argv); await this.commands.run(this.command.name, options, argv); if (this.metadata.exiter) { process7.exit(); } } catch (error) { console.error(error); if (this.metadata.exiter) { process7.exit(1); } } } }; bin_default = Bin; } }); // node_modules/tiny-bin/dist/objects/chainable_bin_local.js var ChainableBinAfterCustomCommand, chainable_bin_local_default; var init_chainable_bin_local = __esm({ "node_modules/tiny-bin/dist/objects/chainable_bin_local.js"() { init_addon(); init_chainable_bin_global(); ChainableBinAfterCustomCommand = class extends addon_default { /* API */ command(name, description, options = {}) { return new chainable_bin_global_default(this.bin).command(name, description, options); } run(argv) { return new chainable_bin_global_default(this.bin).run(argv); } }; chainable_bin_local_default = ChainableBinAfterCustomCommand; } }); // node_modules/tiny-bin/dist/objects/chainable_command.js var ChainableCommand, chainable_command_default; var init_chainable_command = __esm({ "node_modules/tiny-bin/dist/objects/chainable_command.js"() { init_addon(); init_argument(); init_chainable_bin_local(); init_option(); ChainableCommand = class extends addon_default { /* CONSTRUCTOR */ constructor(bin2, command) { super(bin2); this.command = command; } /* API */ usage(usage) { this.command.usage.register(usage); return this; } option(name, description, options = {}) { const option = new option_default(this.bin, { name, description, ...options }); this.command.options.register(option, !!options.override); return this; } argument(name, description, options = {}) { const argument = new argument_default(this.bin, { name, description, ...options }); this.command.arguments.register(argument); return this; } action(handler) { this.command.handler = handler; return new chainable_bin_local_default(this.bin); } }; chainable_command_default = ChainableCommand; } }); // node_modules/tiny-bin/dist/objects/chainable_bin_global.js var ChainableBin, chainable_bin_global_default; var init_chainable_bin_global = __esm({ "node_modules/tiny-bin/dist/objects/chainable_bin_global.js"() { init_addon(); init_argument(); init_chainable_command(); init_command(); init_option(); ChainableBin = class extends addon_default { /* API */ colors(colors2) { this.bin.metadata.colors = colors2; return this; } package(name, version) { this.bin.metadata.package = name; this.bin.metadata.version = version; return this; } autoExit(exiter) { this.bin.metadata.exiter = exiter; return this; } autoUpdateNotifier(updater2) { this.bin.metadata.updater = updater2; return this; } usage(usage) { this.bin.command.usage.register(usage); return this; } option(name, description, options = {}) { const option = new option_default(this.bin, { name, description, ...options }); this.bin.command.options.register(option, !!options.override); return this; } argument(name, description, options = {}) { const argument = new argument_default(this.bin, { name, description, ...options }); this.bin.command.arguments.register(argument); return this; } action(handler) { this.bin.command.handler = handler; return this; } command(name, description, options = {}) { const command = new command_default(this.bin, { name, description, ...options }); this.bin.commands.register(command); return new chainable_command_default(this.bin, command); } run(argv) { return this.bin.run(argv); } }; chainable_bin_global_default = ChainableBin; } }); // node_modules/tiny-bin/dist/index.js var bin, dist_default11; var init_dist11 = __esm({ "node_modules/tiny-bin/dist/index.js"() { init_bin(); init_chainable_bin_global(); bin = (name, description) => { const bin2 = new bin_default({ name, description }); const chainable = new chainable_bin_global_default(bin2); return chainable; }; dist_default11 = bin; } }); // node_modules/specialist/dist/exit.js import process8 from "process"; var exit, exit_default; var init_exit = __esm({ "node_modules/specialist/dist/exit.js"() { init_dist4(); exit = (message, code = 1) => { const log = code === 0 ? console.log : console.error; if (code === 0) { log(message); } else { log(` ${dist_default4.red(message)} `); } process8.exit(code); }; exit_default = exit; } }); // node_modules/specialist/dist/index.js var init_dist12 = __esm({ "node_modules/specialist/dist/index.js"() { init_dist11(); init_dist4(); init_dist5(); init_dist6(); init_exit(); } }); // src/experimental-cli/constants.evaluate.js var CLI_VERSION, DEFAULT_PARSERS, PRETTIER_VERSION; var init_constants_evaluate = __esm({ "src/experimental-cli/constants.evaluate.js"() { CLI_VERSION = "0.9.0"; DEFAULT_PARSERS = [ "flow", "babel", "babel-flow", "babel-ts", "typescript", "acorn", "espree", "meriyah", "css", "less", "scss", "json", "json5", "jsonc", "json-stringify", "graphql", "markdown", "mdx", "vue", "yaml", "glimmer", "html", "angular", "lwc" ]; PRETTIER_VERSION = "3.6.2"; } }); // node_modules/function-once/dist/index.js var once, dist_default12; var init_dist13 = __esm({ "node_modules/function-once/dist/index.js"() { once = (fn) => { let called = false; let result; return () => { if (!called) { called = true; result = fn(); } return result; }; }; dist_default12 = once; } }); // node_modules/import-meta-resolve/lib/errors.js import v8 from "v8"; import assert from "assert"; import { format, inspect } from "util"; function formatList(array, type2 = "and") { return array.length < 3 ? array.join(` ${type2} `) : `${array.slice(0, -1).join(", ")}, ${type2} ${array[array.length - 1]}`; } function createError(sym, value, constructor) { messages.set(sym, value); return makeNodeErrorWithCode(constructor, sym); } function makeNodeErrorWithCode(Base, key2) { return NodeError; function NodeError(...parameters) { const limit = Error.stackTraceLimit; if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; const error = new Base(); if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = limit; const message = getMessage(key2, parameters, error); Object.defineProperties(error, { // Note: no need to implement `kIsNodeError` symbol, would be hard, // probably. message: { value: message, enumerable: false, writable: true, configurable: true }, toString: { /** @this {Error} */ value() { return `${this.name} [${key2}]: ${this.message}`; }, enumerable: false, writable: true, configurable: true } }); captureLargerStackTrace(error); error.code = key2; return error; } } function isErrorStackTraceLimitWritable() { try { if (v8.startupSnapshot.isBuildingSnapshot()) { return false; } } catch { } const desc = Object.getOwnPropertyDescriptor(Error, "stackTraceLimit"); if (desc === void 0) { return Object.isExtensible(Error); } return own.call(desc, "writable") && desc.writable !== void 0 ? desc.writable : desc.set !== void 0; } function hideStackFrames(wrappedFunction) { const hidden = nodeInternalPrefix + wrappedFunction.name; Object.defineProperty(wrappedFunction, "name", { value: hidden }); return wrappedFunction; } function getMessage(key2, parameters, self) { const message = messages.get(key2); assert(message !== void 0, "expected `message` to be found"); if (typeof message === "function") { assert( message.length <= parameters.length, // Default options do not count. `Code: ${key2}; The provided arguments length (${parameters.length}) does not match the required ones (${message.length}).` ); return Reflect.apply(message, self, parameters); } const regex2 = /%[dfijoOs]/g; let expectedLength = 0; while (regex2.exec(message) !== null) expectedLength++; assert( expectedLength === parameters.length, `Code: ${key2}; The provided arguments length (${parameters.length}) does not match the required ones (${expectedLength}).` ); if (parameters.length === 0) return message; parameters.unshift(message); return Reflect.apply(format, null, parameters); } function determineSpecificType(value) { if (value === null || value === void 0) { return String(value); } if (typeof value === "function" && value.name) { return `function ${value.name}`; } if (typeof value === "object") { if (value.constructor && value.constructor.name) { return `an instance of ${value.constructor.name}`; } return `${inspect(value, { depth: -1 })}`; } let inspected = inspect(value, { colors: false }); if (inspected.length > 28) { inspected = `${inspected.slice(0, 25)}...`; } return `type ${typeof value} (${inspected})`; } var own, classRegExp, kTypes, codes, messages, nodeInternalPrefix, userStackTraceLimit, captureLargerStackTrace; var init_errors = __esm({ "node_modules/import-meta-resolve/lib/errors.js"() { own = {}.hasOwnProperty; classRegExp = /^([A-Z][a-z\d]*)+$/; kTypes = /* @__PURE__ */ new Set([ "string", "function", "number", "object", // Accept 'Function' and 'Object' as alternative to the lower cased version. "Function", "Object", "boolean", "bigint", "symbol" ]); codes = {}; messages = /* @__PURE__ */ new Map(); nodeInternalPrefix = "__node_internal_"; codes.ERR_INVALID_ARG_TYPE = createError( "ERR_INVALID_ARG_TYPE", /** * @param {string} name * @param {Array | string} expected * @param {unknown} actual */ (name, expected, actual) => { assert(typeof name === "string", "'name' must be a string"); if (!Array.isArray(expected)) { expected = [expected]; } let message = "The "; if (name.endsWith(" argument")) { message += `${name} `; } else { const type2 = name.includes(".") ? "property" : "argument"; message += `"${name}" ${type2} `; } message += "must be "; const types2 = []; const instances = []; const other = []; for (const value of expected) { assert( typeof value === "string", "All expected entries have to be of type string" ); if (kTypes.has(value)) { types2.push(value.toLowerCase()); } else if (classRegExp.exec(value) === null) { assert( value !== "object", 'The value "object" should be written as "Object"' ); other.push(value); } else { instances.push(value); } } if (instances.length > 0) { const pos2 = types2.indexOf("object"); if (pos2 !== -1) { types2.slice(pos2, 1); instances.push("Object"); } } if (types2.length > 0) { message += `${types2.length > 1 ? "one of type" : "of type"} ${formatList( types2, "or" )}`; if (instances.length > 0 || other.length > 0) message += " or "; } if (instances.length > 0) { message += `an instance of ${formatList(instances, "or")}`; if (other.length > 0) message += " or "; } if (other.length > 0) { if (other.length > 1) { message += `one of ${formatList(other, "or")}`; } else { if (other[0].toLowerCase() !== other[0]) message += "an "; message += `${other[0]}`; } } message += `. Received ${determineSpecificType(actual)}`; return message; }, TypeError ); codes.ERR_INVALID_MODULE_SPECIFIER = createError( "ERR_INVALID_MODULE_SPECIFIER", /** * @param {string} request * @param {string} reason * @param {string} [base] */ (request, reason, base = void 0) => { return `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ""}`; }, TypeError ); codes.ERR_INVALID_PACKAGE_CONFIG = createError( "ERR_INVALID_PACKAGE_CONFIG", /** * @param {string} path * @param {string} [base] * @param {string} [message] */ (path17, base, message) => { return `Invalid package config ${path17}${base ? ` while importing ${base}` : ""}${message ? `. ${message}` : ""}`; }, Error ); codes.ERR_INVALID_PACKAGE_TARGET = createError( "ERR_INVALID_PACKAGE_TARGET", /** * @param {string} packagePath * @param {string} key * @param {unknown} target * @param {boolean} [isImport=false] * @param {string} [base] */ (packagePath, key2, target, isImport = false, base = void 0) => { const relatedError = typeof target === "string" && !isImport && target.length > 0 && !target.startsWith("./"); if (key2 === ".") { assert(isImport === false); return `Invalid "exports" main target ${JSON.stringify(target)} defined in the package config ${packagePath}package.json${base ? ` imported from ${base}` : ""}${relatedError ? '; targets must start with "./"' : ""}`; } return `Invalid "${isImport ? "imports" : "exports"}" target ${JSON.stringify( target )} defined for '${key2}' in the package config ${packagePath}package.json${base ? ` imported from ${base}` : ""}${relatedError ? '; targets must start with "./"' : ""}`; }, Error ); codes.ERR_MODULE_NOT_FOUND = createError( "ERR_MODULE_NOT_FOUND", /** * @param {string} path * @param {string} base * @param {boolean} [exactUrl] */ (path17, base, exactUrl = false) => { return `Cannot find ${exactUrl ? "module" : "package"} '${path17}' imported from ${base}`; }, Error ); codes.ERR_NETWORK_IMPORT_DISALLOWED = createError( "ERR_NETWORK_IMPORT_DISALLOWED", "import of '%s' by %s is not supported: %s", Error ); codes.ERR_PACKAGE_IMPORT_NOT_DEFINED = createError( "ERR_PACKAGE_IMPORT_NOT_DEFINED", /** * @param {string} specifier * @param {string} packagePath * @param {string} base */ (specifier, packagePath, base) => { return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ""} imported from ${base}`; }, TypeError ); codes.ERR_PACKAGE_PATH_NOT_EXPORTED = createError( "ERR_PACKAGE_PATH_NOT_EXPORTED", /** * @param {string} packagePath * @param {string} subpath * @param {string} [base] */ (packagePath, subpath, base = void 0) => { if (subpath === ".") return `No "exports" main defined in ${packagePath}package.json${base ? ` imported from ${base}` : ""}`; return `Package subpath '${subpath}' is not defined by "exports" in ${packagePath}package.json${base ? ` imported from ${base}` : ""}`; }, Error ); codes.ERR_UNSUPPORTED_DIR_IMPORT = createError( "ERR_UNSUPPORTED_DIR_IMPORT", "Directory import '%s' is not supported resolving ES modules imported from %s", Error ); codes.ERR_UNSUPPORTED_RESOLVE_REQUEST = createError( "ERR_UNSUPPORTED_RESOLVE_REQUEST", 'Failed to resolve module specifier "%s" from "%s": Invalid relative URL or base scheme is not hierarchical.', TypeError ); codes.ERR_UNKNOWN_FILE_EXTENSION = createError( "ERR_UNKNOWN_FILE_EXTENSION", /** * @param {string} extension * @param {string} path */ (extension, path17) => { return `Unknown file extension "${extension}" for ${path17}`; }, TypeError ); codes.ERR_INVALID_ARG_VALUE = createError( "ERR_INVALID_ARG_VALUE", /** * @param {string} name * @param {unknown} value * @param {string} [reason='is invalid'] */ (name, value, reason = "is invalid") => { let inspected = inspect(value); if (inspected.length > 128) { inspected = `${inspected.slice(0, 128)}...`; } const type2 = name.includes(".") ? "property" : "argument"; return `The ${type2} '${name}' ${reason}. Received ${inspected}`; }, TypeError // Note: extra classes have been shaken out. // , RangeError ); captureLargerStackTrace = hideStackFrames( /** * @param {Error} error * @returns {Error} */ // @ts-expect-error: fine function(error) { const stackTraceLimitIsWritable = isErrorStackTraceLimitWritable(); if (stackTraceLimitIsWritable) { userStackTraceLimit = Error.stackTraceLimit; Error.stackTraceLimit = Number.POSITIVE_INFINITY; } Error.captureStackTrace(error); if (stackTraceLimitIsWritable) Error.stackTraceLimit = userStackTraceLimit; return error; } ); } }); // node_modules/import-meta-resolve/lib/package-json-reader.js import fs5 from "fs"; import path4 from "path"; import { fileURLToPath } from "url"; function read(jsonPath, { base, specifier }) { const existing = cache.get(jsonPath); if (existing) { return existing; } let string2; try { string2 = fs5.readFileSync(path4.toNamespacedPath(jsonPath), "utf8"); } catch (error) { const exception2 = ( /** @type {ErrnoException} */ error ); if (exception2.code !== "ENOENT") { throw exception2; } } const result = { exists: false, pjsonPath: jsonPath, main: void 0, name: void 0, type: "none", // Ignore unknown types for forwards compatibility exports: void 0, imports: void 0 }; if (string2 !== void 0) { let parsed; try { parsed = JSON.parse(string2); } catch (error_) { const cause = ( /** @type {ErrnoException} */ error_ ); const error = new ERR_INVALID_PACKAGE_CONFIG( jsonPath, (base ? `"${specifier}" from ` : "") + fileURLToPath(base || specifier), cause.message ); error.cause = cause; throw error; } result.exists = true; if (hasOwnProperty.call(parsed, "name") && typeof parsed.name === "string") { result.name = parsed.name; } if (hasOwnProperty.call(parsed, "main") && typeof parsed.main === "string") { result.main = parsed.main; } if (hasOwnProperty.call(parsed, "exports")) { result.exports = parsed.exports; } if (hasOwnProperty.call(parsed, "imports")) { result.imports = parsed.imports; } if (hasOwnProperty.call(parsed, "type") && (parsed.type === "commonjs" || parsed.type === "module")) { result.type = parsed.type; } } cache.set(jsonPath, result); return result; } function getPackageScopeConfig(resolved) { let packageJSONUrl = new URL("package.json", resolved); while (true) { const packageJSONPath2 = packageJSONUrl.pathname; if (packageJSONPath2.endsWith("node_modules/package.json")) { break; } const packageConfig = read(fileURLToPath(packageJSONUrl), { specifier: resolved }); if (packageConfig.exists) { return packageConfig; } const lastPackageJSONUrl = packageJSONUrl; packageJSONUrl = new URL("../package.json", packageJSONUrl); if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) { break; } } const packageJSONPath = fileURLToPath(packageJSONUrl); return { pjsonPath: packageJSONPath, exists: false, type: "none" }; } function getPackageType(url3) { return getPackageScopeConfig(url3).type; } var hasOwnProperty, ERR_INVALID_PACKAGE_CONFIG, cache; var init_package_json_reader = __esm({ "node_modules/import-meta-resolve/lib/package-json-reader.js"() { init_errors(); hasOwnProperty = {}.hasOwnProperty; ({ ERR_INVALID_PACKAGE_CONFIG } = codes); cache = /* @__PURE__ */ new Map(); } }); // node_modules/import-meta-resolve/lib/get-format.js import { fileURLToPath as fileURLToPath2 } from "url"; function mimeToFormat(mime) { if (mime && /\s*(text|application)\/javascript\s*(;\s*charset=utf-?8\s*)?/i.test(mime)) return "module"; if (mime === "application/json") return "json"; return null; } function getDataProtocolModuleFormat(parsed) { const { 1: mime } = /^([^/]+\/[^;,]+)[^,]*?(;base64)?,/.exec( parsed.pathname ) || [null, null, null]; return mimeToFormat(mime); } function extname(url3) { const pathname = url3.pathname; let index = pathname.length; while (index--) { const code = pathname.codePointAt(index); if (code === 47) { return ""; } if (code === 46) { return pathname.codePointAt(index - 1) === 47 ? "" : pathname.slice(index); } } return ""; } function getFileProtocolModuleFormat(url3, _context, ignoreErrors) { const value = extname(url3); if (value === ".js") { const packageType = getPackageType(url3); if (packageType !== "none") { return packageType; } return "commonjs"; } if (value === "") { const packageType = getPackageType(url3); if (packageType === "none" || packageType === "commonjs") { return "commonjs"; } return "module"; } const format2 = extensionFormatMap[value]; if (format2) return format2; if (ignoreErrors) { return void 0; } const filepath = fileURLToPath2(url3); throw new ERR_UNKNOWN_FILE_EXTENSION(value, filepath); } function getHttpProtocolModuleFormat() { } function defaultGetFormatWithoutErrors(url3, context) { const protocol = url3.protocol; if (!hasOwnProperty2.call(protocolHandlers, protocol)) { return null; } return protocolHandlers[protocol](url3, context, true) || null; } var ERR_UNKNOWN_FILE_EXTENSION, hasOwnProperty2, extensionFormatMap, protocolHandlers; var init_get_format = __esm({ "node_modules/import-meta-resolve/lib/get-format.js"() { init_package_json_reader(); init_errors(); ({ ERR_UNKNOWN_FILE_EXTENSION } = codes); hasOwnProperty2 = {}.hasOwnProperty; extensionFormatMap = { // @ts-expect-error: hush. __proto__: null, ".cjs": "commonjs", ".js": "module", ".json": "json", ".mjs": "module" }; protocolHandlers = { // @ts-expect-error: hush. __proto__: null, "data:": getDataProtocolModuleFormat, "file:": getFileProtocolModuleFormat, "http:": getHttpProtocolModuleFormat, "https:": getHttpProtocolModuleFormat, "node:"() { return "builtin"; } }; } }); // node_modules/import-meta-resolve/lib/resolve.js import assert2 from "assert"; import { statSync, realpathSync } from "fs"; import process9 from "process"; import { URL as URL2, fileURLToPath as fileURLToPath3, pathToFileURL } from "url"; import path5 from "path"; import { builtinModules } from "module"; function emitInvalidSegmentDeprecation(target, request, match2, packageJsonUrl, internal, base, isTarget) { if (process9.noDeprecation) { return; } const pjsonPath = fileURLToPath3(packageJsonUrl); const double = doubleSlashRegEx.exec(isTarget ? target : request) !== null; process9.emitWarning( `Use of deprecated ${double ? "double slash" : "leading or trailing slash matching"} resolving "${target}" for module request "${request}" ${request === match2 ? "" : `matched to "${match2}" `}in the "${internal ? "imports" : "exports"}" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${fileURLToPath3(base)}` : ""}.`, "DeprecationWarning", "DEP0166" ); } function emitLegacyIndexDeprecation(url3, packageJsonUrl, base, main) { if (process9.noDeprecation) { return; } const format2 = defaultGetFormatWithoutErrors(url3, { parentURL: base.href }); if (format2 !== "module") return; const urlPath = fileURLToPath3(url3.href); const packagePath = fileURLToPath3(new URL2(".", packageJsonUrl)); const basePath = fileURLToPath3(base); if (!main) { process9.emitWarning( `No "main" or "exports" field defined in the package.json for ${packagePath} resolving the main entry point "${urlPath.slice( packagePath.length )}", imported from ${basePath}. Default "index" lookups for the main are deprecated for ES modules.`, "DeprecationWarning", "DEP0151" ); } else if (path5.resolve(packagePath, main) !== urlPath) { process9.emitWarning( `Package ${packagePath} has a "main" field set to "${main}", excluding the full filename and extension to the resolved file at "${urlPath.slice( packagePath.length )}", imported from ${basePath}. Automatic extension resolution of the "main" field is deprecated for ES modules.`, "DeprecationWarning", "DEP0151" ); } } function tryStatSync(path17) { try { return statSync(path17); } catch { } } function fileExists(url3) { const stats = statSync(url3, { throwIfNoEntry: false }); const isFile = stats ? stats.isFile() : void 0; return isFile === null || isFile === void 0 ? false : isFile; } function legacyMainResolve(packageJsonUrl, packageConfig, base) { let guess; if (packageConfig.main !== void 0) { guess = new URL2(packageConfig.main, packageJsonUrl); if (fileExists(guess)) return guess; const tries2 = [ `./${packageConfig.main}.js`, `./${packageConfig.main}.json`, `./${packageConfig.main}.node`, `./${packageConfig.main}/index.js`, `./${packageConfig.main}/index.json`, `./${packageConfig.main}/index.node` ]; let i2 = -1; while (++i2 < tries2.length) { guess = new URL2(tries2[i2], packageJsonUrl); if (fileExists(guess)) break; guess = void 0; } if (guess) { emitLegacyIndexDeprecation( guess, packageJsonUrl, base, packageConfig.main ); return guess; } } const tries = ["./index.js", "./index.json", "./index.node"]; let i = -1; while (++i < tries.length) { guess = new URL2(tries[i], packageJsonUrl); if (fileExists(guess)) break; guess = void 0; } if (guess) { emitLegacyIndexDeprecation(guess, packageJsonUrl, base, packageConfig.main); return guess; } throw new ERR_MODULE_NOT_FOUND( fileURLToPath3(new URL2(".", packageJsonUrl)), fileURLToPath3(base) ); } function finalizeResolution(resolved, base, preserveSymlinks) { if (encodedSeparatorRegEx.exec(resolved.pathname) !== null) { throw new ERR_INVALID_MODULE_SPECIFIER( resolved.pathname, 'must not include encoded "/" or "\\" characters', fileURLToPath3(base) ); } let filePath; try { filePath = fileURLToPath3(resolved); } catch (error) { const cause = ( /** @type {ErrnoException} */ error ); Object.defineProperty(cause, "input", { value: String(resolved) }); Object.defineProperty(cause, "module", { value: String(base) }); throw cause; } const stats = tryStatSync( filePath.endsWith("/") ? filePath.slice(-1) : filePath ); if (stats && stats.isDirectory()) { const error = new ERR_UNSUPPORTED_DIR_IMPORT(filePath, fileURLToPath3(base)); error.url = String(resolved); throw error; } if (!stats || !stats.isFile()) { const error = new ERR_MODULE_NOT_FOUND( filePath || resolved.pathname, base && fileURLToPath3(base), true ); error.url = String(resolved); throw error; } if (!preserveSymlinks) { const real = realpathSync(filePath); const { search, hash } = resolved; resolved = pathToFileURL(real + (filePath.endsWith(path5.sep) ? "/" : "")); resolved.search = search; resolved.hash = hash; } return resolved; } function importNotDefined(specifier, packageJsonUrl, base) { return new ERR_PACKAGE_IMPORT_NOT_DEFINED( specifier, packageJsonUrl && fileURLToPath3(new URL2(".", packageJsonUrl)), fileURLToPath3(base) ); } function exportsNotFound(subpath, packageJsonUrl, base) { return new ERR_PACKAGE_PATH_NOT_EXPORTED( fileURLToPath3(new URL2(".", packageJsonUrl)), subpath, base && fileURLToPath3(base) ); } function throwInvalidSubpath(request, match2, packageJsonUrl, internal, base) { const reason = `request is not a valid match in pattern "${match2}" for the "${internal ? "imports" : "exports"}" resolution of ${fileURLToPath3(packageJsonUrl)}`; throw new ERR_INVALID_MODULE_SPECIFIER( request, reason, base && fileURLToPath3(base) ); } function invalidPackageTarget(subpath, target, packageJsonUrl, internal, base) { target = typeof target === "object" && target !== null ? JSON.stringify(target, null, "") : `${target}`; return new ERR_INVALID_PACKAGE_TARGET( fileURLToPath3(new URL2(".", packageJsonUrl)), subpath, target, internal, base && fileURLToPath3(base) ); } function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, base, pattern, internal, isPathMap, conditions) { if (subpath !== "" && !pattern && target[target.length - 1] !== "/") throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); if (!target.startsWith("./")) { if (internal && !target.startsWith("../") && !target.startsWith("/")) { let isURL = false; try { new URL2(target); isURL = true; } catch { } if (!isURL) { const exportTarget = pattern ? RegExpPrototypeSymbolReplace.call( patternRegEx, target, () => subpath ) : target + subpath; return packageResolve(exportTarget, packageJsonUrl, conditions); } } throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); } if (invalidSegmentRegEx.exec(target.slice(2)) !== null) { if (deprecatedInvalidSegmentRegEx.exec(target.slice(2)) === null) { if (!isPathMap) { const request = pattern ? match2.replace("*", () => subpath) : match2 + subpath; const resolvedTarget = pattern ? RegExpPrototypeSymbolReplace.call( patternRegEx, target, () => subpath ) : target; emitInvalidSegmentDeprecation( resolvedTarget, request, match2, packageJsonUrl, internal, base, true ); } } else { throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); } } const resolved = new URL2(target, packageJsonUrl); const resolvedPath = resolved.pathname; const packagePath = new URL2(".", packageJsonUrl).pathname; if (!resolvedPath.startsWith(packagePath)) throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); if (subpath === "") return resolved; if (invalidSegmentRegEx.exec(subpath) !== null) { const request = pattern ? match2.replace("*", () => subpath) : match2 + subpath; if (deprecatedInvalidSegmentRegEx.exec(subpath) === null) { if (!isPathMap) { const resolvedTarget = pattern ? RegExpPrototypeSymbolReplace.call( patternRegEx, target, () => subpath ) : target; emitInvalidSegmentDeprecation( resolvedTarget, request, match2, packageJsonUrl, internal, base, false ); } } else { throwInvalidSubpath(request, match2, packageJsonUrl, internal, base); } } if (pattern) { return new URL2( RegExpPrototypeSymbolReplace.call( patternRegEx, resolved.href, () => subpath ) ); } return new URL2(subpath, resolved); } function isArrayIndex(key2) { const keyNumber = Number(key2); if (`${keyNumber}` !== key2) return false; return keyNumber >= 0 && keyNumber < 4294967295; } function resolvePackageTarget(packageJsonUrl, target, subpath, packageSubpath, base, pattern, internal, isPathMap, conditions) { if (typeof target === "string") { return resolvePackageTargetString( target, subpath, packageSubpath, packageJsonUrl, base, pattern, internal, isPathMap, conditions ); } if (Array.isArray(target)) { const targetList = target; if (targetList.length === 0) return null; let lastException; let i = -1; while (++i < targetList.length) { const targetItem = targetList[i]; let resolveResult; try { resolveResult = resolvePackageTarget( packageJsonUrl, targetItem, subpath, packageSubpath, base, pattern, internal, isPathMap, conditions ); } catch (error) { const exception2 = ( /** @type {ErrnoException} */ error ); lastException = exception2; if (exception2.code === "ERR_INVALID_PACKAGE_TARGET") continue; throw error; } if (resolveResult === void 0) continue; if (resolveResult === null) { lastException = null; continue; } return resolveResult; } if (lastException === void 0 || lastException === null) { return null; } throw lastException; } if (typeof target === "object" && target !== null) { const keys = Object.getOwnPropertyNames(target); let i = -1; while (++i < keys.length) { const key2 = keys[i]; if (isArrayIndex(key2)) { throw new ERR_INVALID_PACKAGE_CONFIG2( fileURLToPath3(packageJsonUrl), base, '"exports" cannot contain numeric property keys.' ); } } i = -1; while (++i < keys.length) { const key2 = keys[i]; if (key2 === "default" || conditions && conditions.has(key2)) { const conditionalTarget = ( /** @type {unknown} */ target[key2] ); const resolveResult = resolvePackageTarget( packageJsonUrl, conditionalTarget, subpath, packageSubpath, base, pattern, internal, isPathMap, conditions ); if (resolveResult === void 0) continue; return resolveResult; } } return null; } if (target === null) { return null; } throw invalidPackageTarget( packageSubpath, target, packageJsonUrl, internal, base ); } function isConditionalExportsMainSugar(exports, packageJsonUrl, base) { if (typeof exports === "string" || Array.isArray(exports)) return true; if (typeof exports !== "object" || exports === null) return false; const keys = Object.getOwnPropertyNames(exports); let isConditionalSugar = false; let i = 0; let keyIndex = -1; while (++keyIndex < keys.length) { const key2 = keys[keyIndex]; const currentIsConditionalSugar = key2 === "" || key2[0] !== "."; if (i++ === 0) { isConditionalSugar = currentIsConditionalSugar; } else if (isConditionalSugar !== currentIsConditionalSugar) { throw new ERR_INVALID_PACKAGE_CONFIG2( fileURLToPath3(packageJsonUrl), base, `"exports" cannot contain some keys starting with '.' and some not. The exports object must either be an object of package subpath keys or an object of main entry condition name keys only.` ); } } return isConditionalSugar; } function emitTrailingSlashPatternDeprecation(match2, pjsonUrl, base) { if (process9.noDeprecation) { return; } const pjsonPath = fileURLToPath3(pjsonUrl); if (emittedPackageWarnings.has(pjsonPath + "|" + match2)) return; emittedPackageWarnings.add(pjsonPath + "|" + match2); process9.emitWarning( `Use of deprecated trailing slash pattern mapping "${match2}" in the "exports" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${fileURLToPath3(base)}` : ""}. Mapping specifiers ending in "/" is no longer supported.`, "DeprecationWarning", "DEP0155" ); } function packageExportsResolve(packageJsonUrl, packageSubpath, packageConfig, base, conditions) { let exports = packageConfig.exports; if (isConditionalExportsMainSugar(exports, packageJsonUrl, base)) { exports = { ".": exports }; } if (own2.call(exports, packageSubpath) && !packageSubpath.includes("*") && !packageSubpath.endsWith("/")) { const target = exports[packageSubpath]; const resolveResult = resolvePackageTarget( packageJsonUrl, target, "", packageSubpath, base, false, false, false, conditions ); if (resolveResult === null || resolveResult === void 0) { throw exportsNotFound(packageSubpath, packageJsonUrl, base); } return resolveResult; } let bestMatch = ""; let bestMatchSubpath = ""; const keys = Object.getOwnPropertyNames(exports); let i = -1; while (++i < keys.length) { const key2 = keys[i]; const patternIndex = key2.indexOf("*"); if (patternIndex !== -1 && packageSubpath.startsWith(key2.slice(0, patternIndex))) { if (packageSubpath.endsWith("/")) { emitTrailingSlashPatternDeprecation( packageSubpath, packageJsonUrl, base ); } const patternTrailer = key2.slice(patternIndex + 1); if (packageSubpath.length >= key2.length && packageSubpath.endsWith(patternTrailer) && patternKeyCompare(bestMatch, key2) === 1 && key2.lastIndexOf("*") === patternIndex) { bestMatch = key2; bestMatchSubpath = packageSubpath.slice( patternIndex, packageSubpath.length - patternTrailer.length ); } } } if (bestMatch) { const target = ( /** @type {unknown} */ exports[bestMatch] ); const resolveResult = resolvePackageTarget( packageJsonUrl, target, bestMatchSubpath, bestMatch, base, true, false, packageSubpath.endsWith("/"), conditions ); if (resolveResult === null || resolveResult === void 0) { throw exportsNotFound(packageSubpath, packageJsonUrl, base); } return resolveResult; } throw exportsNotFound(packageSubpath, packageJsonUrl, base); } function patternKeyCompare(a, b) { const aPatternIndex = a.indexOf("*"); const bPatternIndex = b.indexOf("*"); const baseLengthA = aPatternIndex === -1 ? a.length : aPatternIndex + 1; const baseLengthB = bPatternIndex === -1 ? b.length : bPatternIndex + 1; if (baseLengthA > baseLengthB) return -1; if (baseLengthB > baseLengthA) return 1; if (aPatternIndex === -1) return 1; if (bPatternIndex === -1) return -1; if (a.length > b.length) return -1; if (b.length > a.length) return 1; return 0; } function packageImportsResolve(name, base, conditions) { if (name === "#" || name.startsWith("#/") || name.endsWith("/")) { const reason = "is not a valid internal imports specifier name"; throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, fileURLToPath3(base)); } let packageJsonUrl; const packageConfig = getPackageScopeConfig(base); if (packageConfig.exists) { packageJsonUrl = pathToFileURL(packageConfig.pjsonPath); const imports = packageConfig.imports; if (imports) { if (own2.call(imports, name) && !name.includes("*")) { const resolveResult = resolvePackageTarget( packageJsonUrl, imports[name], "", name, base, false, true, false, conditions ); if (resolveResult !== null && resolveResult !== void 0) { return resolveResult; } } else { let bestMatch = ""; let bestMatchSubpath = ""; const keys = Object.getOwnPropertyNames(imports); let i = -1; while (++i < keys.length) { const key2 = keys[i]; const patternIndex = key2.indexOf("*"); if (patternIndex !== -1 && name.startsWith(key2.slice(0, -1))) { const patternTrailer = key2.slice(patternIndex + 1); if (name.length >= key2.length && name.endsWith(patternTrailer) && patternKeyCompare(bestMatch, key2) === 1 && key2.lastIndexOf("*") === patternIndex) { bestMatch = key2; bestMatchSubpath = name.slice( patternIndex, name.length - patternTrailer.length ); } } } if (bestMatch) { const target = imports[bestMatch]; const resolveResult = resolvePackageTarget( packageJsonUrl, target, bestMatchSubpath, bestMatch, base, true, true, false, conditions ); if (resolveResult !== null && resolveResult !== void 0) { return resolveResult; } } } } } throw importNotDefined(name, packageJsonUrl, base); } function parsePackageName(specifier, base) { let separatorIndex = specifier.indexOf("/"); let validPackageName = true; let isScoped = false; if (specifier[0] === "@") { isScoped = true; if (separatorIndex === -1 || specifier.length === 0) { validPackageName = false; } else { separatorIndex = specifier.indexOf("/", separatorIndex + 1); } } const packageName = separatorIndex === -1 ? specifier : specifier.slice(0, separatorIndex); if (invalidPackageNameRegEx.exec(packageName) !== null) { validPackageName = false; } if (!validPackageName) { throw new ERR_INVALID_MODULE_SPECIFIER( specifier, "is not a valid package name", fileURLToPath3(base) ); } const packageSubpath = "." + (separatorIndex === -1 ? "" : specifier.slice(separatorIndex)); return { packageName, packageSubpath, isScoped }; } function packageResolve(specifier, base, conditions) { if (builtinModules.includes(specifier)) { return new URL2("node:" + specifier); } const { packageName, packageSubpath, isScoped } = parsePackageName( specifier, base ); const packageConfig = getPackageScopeConfig(base); if (packageConfig.exists) { const packageJsonUrl2 = pathToFileURL(packageConfig.pjsonPath); if (packageConfig.name === packageName && packageConfig.exports !== void 0 && packageConfig.exports !== null) { return packageExportsResolve( packageJsonUrl2, packageSubpath, packageConfig, base, conditions ); } } let packageJsonUrl = new URL2( "./node_modules/" + packageName + "/package.json", base ); let packageJsonPath = fileURLToPath3(packageJsonUrl); let lastPath; do { const stat = tryStatSync(packageJsonPath.slice(0, -13)); if (!stat || !stat.isDirectory()) { lastPath = packageJsonPath; packageJsonUrl = new URL2( (isScoped ? "../../../../node_modules/" : "../../../node_modules/") + packageName + "/package.json", packageJsonUrl ); packageJsonPath = fileURLToPath3(packageJsonUrl); continue; } const packageConfig2 = read(packageJsonPath, { base, specifier }); if (packageConfig2.exports !== void 0 && packageConfig2.exports !== null) { return packageExportsResolve( packageJsonUrl, packageSubpath, packageConfig2, base, conditions ); } if (packageSubpath === ".") { return legacyMainResolve(packageJsonUrl, packageConfig2, base); } return new URL2(packageSubpath, packageJsonUrl); } while (packageJsonPath.length !== lastPath.length); throw new ERR_MODULE_NOT_FOUND(packageName, fileURLToPath3(base), false); } function isRelativeSpecifier(specifier) { if (specifier[0] === ".") { if (specifier.length === 1 || specifier[1] === "/") return true; if (specifier[1] === "." && (specifier.length === 2 || specifier[2] === "/")) { return true; } } return false; } function shouldBeTreatedAsRelativeOrAbsolutePath(specifier) { if (specifier === "") return false; if (specifier[0] === "/") return true; return isRelativeSpecifier(specifier); } function moduleResolve(specifier, base, conditions, preserveSymlinks) { const protocol = base.protocol; const isData = protocol === "data:"; const isRemote = isData || protocol === "http:" || protocol === "https:"; let resolved; if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) { try { resolved = new URL2(specifier, base); } catch (error_) { const error = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base); error.cause = error_; throw error; } } else if (protocol === "file:" && specifier[0] === "#") { resolved = packageImportsResolve(specifier, base, conditions); } else { try { resolved = new URL2(specifier); } catch (error_) { if (isRemote && !builtinModules.includes(specifier)) { const error = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base); error.cause = error_; throw error; } resolved = packageResolve(specifier, base, conditions); } } assert2(resolved !== void 0, "expected to be defined"); if (resolved.protocol !== "file:") { return resolved; } return finalizeResolution(resolved, base, preserveSymlinks); } var RegExpPrototypeSymbolReplace, ERR_NETWORK_IMPORT_DISALLOWED, ERR_INVALID_MODULE_SPECIFIER, ERR_INVALID_PACKAGE_CONFIG2, ERR_INVALID_PACKAGE_TARGET, ERR_MODULE_NOT_FOUND, ERR_PACKAGE_IMPORT_NOT_DEFINED, ERR_PACKAGE_PATH_NOT_EXPORTED, ERR_UNSUPPORTED_DIR_IMPORT, ERR_UNSUPPORTED_RESOLVE_REQUEST, own2, invalidSegmentRegEx, deprecatedInvalidSegmentRegEx, invalidPackageNameRegEx, patternRegEx, encodedSeparatorRegEx, emittedPackageWarnings, doubleSlashRegEx; var init_resolve = __esm({ "node_modules/import-meta-resolve/lib/resolve.js"() { init_get_format(); init_errors(); init_package_json_reader(); RegExpPrototypeSymbolReplace = RegExp.prototype[Symbol.replace]; ({ ERR_NETWORK_IMPORT_DISALLOWED, ERR_INVALID_MODULE_SPECIFIER, ERR_INVALID_PACKAGE_CONFIG: ERR_INVALID_PACKAGE_CONFIG2, ERR_INVALID_PACKAGE_TARGET, ERR_MODULE_NOT_FOUND, ERR_PACKAGE_IMPORT_NOT_DEFINED, ERR_PACKAGE_PATH_NOT_EXPORTED, ERR_UNSUPPORTED_DIR_IMPORT, ERR_UNSUPPORTED_RESOLVE_REQUEST } = codes); own2 = {}.hasOwnProperty; invalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))?(\\|\/|$)/i; deprecatedInvalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i; invalidPackageNameRegEx = /^\.|%|\\/; patternRegEx = /\*/g; encodedSeparatorRegEx = /%2f|%5c/i; emittedPackageWarnings = /* @__PURE__ */ new Set(); doubleSlashRegEx = /[/\\]{2}/; } }); // node_modules/import-meta-resolve/index.js var init_import_meta_resolve = __esm({ "node_modules/import-meta-resolve/index.js"() { init_resolve(); } }); // node_modules/lomemo/dist/index.js var memoize, dist_default13; var init_dist14 = __esm({ "node_modules/lomemo/dist/index.js"() { memoize = (fn, resolver) => { const memoized = function(...args) { const key2 = resolver ? resolver.apply(this, args) : args[0]; const cache3 = memoized.cache; const cached = cache3.get(key2); if (cached !== void 0 || cache3.has(key2)) return cached; const result = fn.apply(this, args); memoized.cache = cache3.set(key2, result) || cache3; return result; }; memoized.cache = new (memoize.Cache || Map)(); return memoized; }; memoize.Cache = Map; dist_default13 = memoize; } }); // node_modules/promise-resolve-timeout/dist/index.js function resolveTimeout(timeout, value) { return new Promise((resolve4) => { if (timeout === Infinity) return; setTimeout(() => { if (typeof value === "function") { resolve4(value()); } else { resolve4(value); } }, timeout); }); } var dist_default14; var init_dist15 = __esm({ "node_modules/promise-resolve-timeout/dist/index.js"() { dist_default14 = resolveTimeout; } }); // node_modules/promise-make-naked/dist/utils.js var noop; var init_utils7 = __esm({ "node_modules/promise-make-naked/dist/utils.js"() { noop = () => { }; } }); // node_modules/promise-make-naked/dist/index.js var makeNakedPromise, dist_default15; var init_dist16 = __esm({ "node_modules/promise-make-naked/dist/index.js"() { init_utils7(); makeNakedPromise = () => { let resolve4 = noop; let reject = noop; let resolved = false; let rejected = false; const promise = new Promise((res, rej) => { resolve4 = (value) => { resolved = true; return res(value); }; reject = (value) => { rejected = true; return rej(value); }; }); const isPending = () => !resolved && !rejected; const isResolved = () => resolved; const isRejected = () => rejected; return { promise, resolve: resolve4, reject, isPending, isResolved, isRejected }; }; dist_default15 = makeNakedPromise; } }); // node_modules/promise-make-counter/dist/index.js var makeCounterPromise, dist_default16; var init_dist17 = __esm({ "node_modules/promise-make-counter/dist/index.js"() { init_dist16(); makeCounterPromise = () => { const { promise, resolve: resolve4, isPending } = dist_default15(); let counter = 0; const increment = () => { counter += 1; }; const decrement = () => { counter -= 1; if (counter) return; resolve4(); }; const init = () => { increment(); queueMicrotask(decrement); }; init(); return { promise, isPending, increment, decrement }; }; dist_default16 = makeCounterPromise; } }); // node_modules/tiny-readdir/dist/constants.js var NOOP_PROMISE_LIKE; var init_constants4 = __esm({ "node_modules/tiny-readdir/dist/constants.js"() { NOOP_PROMISE_LIKE = { then: (fn) => { fn(); } }; } }); // node_modules/tiny-readdir/dist/utils.js var castArray3, isFunction; var init_utils8 = __esm({ "node_modules/tiny-readdir/dist/utils.js"() { castArray3 = (value) => { return Array.isArray(value) ? value : [value]; }; isFunction = (value) => { return typeof value === "function"; }; } }); // node_modules/tiny-readdir/dist/index.js import fs6 from "fs"; import path6 from "path"; var readdir, dist_default17; var init_dist18 = __esm({ "node_modules/tiny-readdir/dist/index.js"() { init_dist17(); init_constants4(); init_utils8(); readdir = (rootPath, options) => { const followSymlinks = (options == null ? void 0 : options.followSymlinks) ?? false; const maxDepth = (options == null ? void 0 : options.depth) ?? Infinity; const maxPaths = (options == null ? void 0 : options.limit) ?? Infinity; const ignore = (options == null ? void 0 : options.ignore) ?? []; const ignores = castArray3(ignore).map((ignore2) => isFunction(ignore2) ? ignore2 : (targetPath) => ignore2.test(targetPath)); const isIgnored = (targetPath) => ignores.some((ignore2) => ignore2(targetPath)); const signal = (options == null ? void 0 : options.signal) ?? { aborted: false }; const onDirents = (options == null ? void 0 : options.onDirents) || (() => { }); const directories = []; const directoriesNames = /* @__PURE__ */ new Set(); const directoriesNamesToPaths = {}; const files = []; const filesNames = /* @__PURE__ */ new Set(); const filesNamesToPaths = {}; const symlinks = []; const symlinksNames = /* @__PURE__ */ new Set(); const symlinksNamesToPaths = {}; const map2 = {}; const visited = /* @__PURE__ */ new Set(); const resultEmpty = { directories: [], directoriesNames: /* @__PURE__ */ new Set(), directoriesNamesToPaths: {}, files: [], filesNames: /* @__PURE__ */ new Set(), filesNamesToPaths: {}, symlinks: [], symlinksNames: /* @__PURE__ */ new Set(), symlinksNamesToPaths: {}, map: {} }; const result = { directories, directoriesNames, directoriesNamesToPaths, files, filesNames, filesNamesToPaths, symlinks, symlinksNames, symlinksNamesToPaths, map: map2 }; const { promise, increment, decrement } = dist_default16(); let foundPaths = 0; const handleDirectory = (dirmap, subPath, name, depth) => { if (visited.has(subPath)) return; if (foundPaths >= maxPaths) return; foundPaths += 1; dirmap.directories.push(subPath); dirmap.directoriesNames.add(name); directories.push(subPath); directoriesNames.add(name); directoriesNamesToPaths.propertyIsEnumerable(name) || (directoriesNamesToPaths[name] = []); directoriesNamesToPaths[name].push(subPath); visited.add(subPath); if (depth >= maxDepth) return; if (foundPaths >= maxPaths) return; populateResultFromPath(subPath, depth + 1); }; const handleFile = (dirmap, subPath, name) => { if (visited.has(subPath)) return; if (foundPaths >= maxPaths) return; foundPaths += 1; dirmap.files.push(subPath); dirmap.filesNames.add(name); files.push(subPath); filesNames.add(name); filesNamesToPaths.propertyIsEnumerable(name) || (filesNamesToPaths[name] = []); filesNamesToPaths[name].push(subPath); visited.add(subPath); }; const handleSymlink = (dirmap, subPath, name, depth) => { if (visited.has(subPath)) return; if (foundPaths >= maxPaths) return; foundPaths += 1; dirmap.symlinks.push(subPath); dirmap.symlinksNames.add(name); symlinks.push(subPath); symlinksNames.add(name); symlinksNamesToPaths.propertyIsEnumerable(name) || (symlinksNamesToPaths[name] = []); symlinksNamesToPaths[name].push(subPath); visited.add(subPath); if (!followSymlinks) return; if (depth >= maxDepth) return; if (foundPaths >= maxPaths) return; populateResultFromSymlink(subPath, depth + 1); }; const handleStat = (dirmap, rootPath2, name, stat, depth) => { if (signal.aborted) return; if (isIgnored(rootPath2)) return; if (stat.isDirectory()) { handleDirectory(dirmap, rootPath2, name, depth); } else if (stat.isFile()) { handleFile(dirmap, rootPath2, name); } else if (stat.isSymbolicLink()) { handleSymlink(dirmap, rootPath2, name, depth); } }; const handleDirent = (dirmap, rootPath2, dirent, depth) => { if (signal.aborted) return; const separator = rootPath2 === path6.sep ? "" : path6.sep; const name = dirent.name; const subPath = `${rootPath2}${separator}${name}`; if (isIgnored(subPath)) return; if (dirent.isDirectory()) { handleDirectory(dirmap, subPath, name, depth); } else if (dirent.isFile()) { handleFile(dirmap, subPath, name); } else if (dirent.isSymbolicLink()) { handleSymlink(dirmap, subPath, name, depth); } }; const handleDirents = (dirmap, rootPath2, dirents, depth) => { for (let i = 0, l = dirents.length; i < l; i++) { handleDirent(dirmap, rootPath2, dirents[i], depth); } }; const populateResultFromPath = (rootPath2, depth) => { if (signal.aborted) return; if (depth > maxDepth) return; if (foundPaths >= maxPaths) return; increment(); fs6.readdir(rootPath2, { withFileTypes: true }, (error, dirents) => { if (error) return decrement(); if (signal.aborted) return decrement(); if (!dirents.length) return decrement(); const promise2 = onDirents(dirents) || NOOP_PROMISE_LIKE; promise2.then(() => { const dirmap = map2[rootPath2] = { directories: [], directoriesNames: /* @__PURE__ */ new Set(), directoriesNamesToPaths: {}, files: [], filesNames: /* @__PURE__ */ new Set(), filesNamesToPaths: {}, symlinks: [], symlinksNames: /* @__PURE__ */ new Set(), symlinksNamesToPaths: {} }; handleDirents(dirmap, rootPath2, dirents, depth); decrement(); }); }); }; const populateResultFromSymlink = (rootPath2, depth) => { increment(); fs6.realpath(rootPath2, (error, realPath) => { if (error) return decrement(); if (signal.aborted) return decrement(); fs6.stat(realPath, (error2, stat) => { if (error2) return decrement(); if (signal.aborted) return decrement(); const name = path6.basename(realPath); const dirmap = map2[rootPath2] = { directories: [], directoriesNames: /* @__PURE__ */ new Set(), directoriesNamesToPaths: {}, files: [], filesNames: /* @__PURE__ */ new Set(), filesNamesToPaths: {}, symlinks: [], symlinksNames: /* @__PURE__ */ new Set(), symlinksNamesToPaths: {} }; handleStat(dirmap, realPath, name, stat, depth); decrement(); }); }); }; const populateResultFromRoot = async (rootPath2, depth = 1) => { rootPath2 = path6.normalize(rootPath2); visited.add(rootPath2); populateResultFromPath(rootPath2, depth); await promise; if (signal.aborted) return resultEmpty; return result; }; return populateResultFromRoot(rootPath); }; dist_default17 = readdir; } }); // node_modules/grammex/dist/utils.js var isArray2, isFunction2, isFunctionNullary, isFunctionStrictlyNullaryOrUnary, isNumber, isObject, isRegExp, isRegExpCapturing, isRegExpStatic, isString, isUndefined3, memoize2; var init_utils9 = __esm({ "node_modules/grammex/dist/utils.js"() { isArray2 = (value) => { return Array.isArray(value); }; isFunction2 = (value) => { return typeof value === "function"; }; isFunctionNullary = (value) => { return value.length === 0; }; isFunctionStrictlyNullaryOrUnary = (() => { const { toString: toString2 } = Function.prototype; const re = /(?:^\(\s*(?:[^,.()]|\.(?!\.\.))*\s*\)\s*=>|^\s*[a-zA-Z$_][a-zA-Z0-9$_]*\s*=>)/; return (value) => { return (value.length === 0 || value.length === 1) && re.test(toString2.call(value)); }; })(); isNumber = (value) => { return typeof value === "number"; }; isObject = (value) => { return typeof value === "object" && value !== null; }; isRegExp = (value) => { return value instanceof RegExp; }; isRegExpCapturing = /* @__PURE__ */ (() => { const sourceRe = /\\\(|\((?!\?(?::|=|!|<=| { return sourceRe.test(re.source); }; })(); isRegExpStatic = /* @__PURE__ */ (() => { const sourceRe = /^[a-zA-Z0-9_-]+$/; return (re) => { return sourceRe.test(re.source) && !re.flags.includes("i"); }; })(); isString = (value) => { return typeof value === "string"; }; isUndefined3 = (value) => { return value === void 0; }; memoize2 = (fn) => { const cache3 = /* @__PURE__ */ new Map(); return (arg) => { const cached = cache3.get(arg); if (cached !== void 0) return cached; const value = fn(arg); cache3.set(arg, value); return value; }; }; } }); // node_modules/grammex/dist/index.js var parse, match, chars, regex, regexCapturing, regexNonCapturing, string, repeat, optional, star, and, or, backtrackable, handleable, memoizable, lazy, resolve; var init_dist19 = __esm({ "node_modules/grammex/dist/index.js"() { init_utils9(); parse = (input, rule, options = {}) => { const state = { cache: {}, input, index: 0, indexBacktrackMax: 0, options, output: [] }; const matched = resolve(rule)(state); const indexMax = Math.max(state.index, state.indexBacktrackMax); if (matched && state.index === input.length) { return state.output; } else { throw new Error(`Failed to parse at index ${indexMax}`); } }; match = (target, handler) => { if (isArray2(target)) { return chars(target, handler); } else if (isString(target)) { return string(target, handler); } else { return regex(target, handler); } }; chars = (target, handler) => { const charCodes = {}; for (const char of target) { if (char.length !== 1) throw new Error(`Invalid character: "${char}"`); const charCode = char.charCodeAt(0); charCodes[charCode] = true; } return (state) => { const input = state.input; let indexStart = state.index; let indexEnd = indexStart; while (indexEnd < input.length) { const charCode = input.charCodeAt(indexEnd); if (!(charCode in charCodes)) break; indexEnd += 1; } if (indexEnd > indexStart) { if (!isUndefined3(handler) && !state.options.silent) { const target2 = input.slice(indexStart, indexEnd); const output = isFunction2(handler) ? handler(target2, input, `${indexStart}`) : handler; if (!isUndefined3(output)) { state.output.push(output); } } state.index = indexEnd; } return true; }; }; regex = (target, handler) => { if (isRegExpStatic(target)) { return string(target.source, handler); } else { const source2 = target.source; const flags = target.flags.replace(/y|$/, "y"); const re = new RegExp(source2, flags); if (isRegExpCapturing(target) && isFunction2(handler) && !isFunctionStrictlyNullaryOrUnary(handler)) { return regexCapturing(re, handler); } else { return regexNonCapturing(re, handler); } } }; regexCapturing = (re, handler) => { return (state) => { const indexStart = state.index; const input = state.input; re.lastIndex = indexStart; const match2 = re.exec(input); if (match2) { const indexEnd = re.lastIndex; if (!state.options.silent) { const output = handler(...match2, input, `${indexStart}`); if (!isUndefined3(output)) { state.output.push(output); } } state.index = indexEnd; return true; } else { return false; } }; }; regexNonCapturing = (re, handler) => { return (state) => { const indexStart = state.index; const input = state.input; re.lastIndex = indexStart; const matched = re.test(input); if (matched) { const indexEnd = re.lastIndex; if (!isUndefined3(handler) && !state.options.silent) { const output = isFunction2(handler) ? handler(input.slice(indexStart, indexEnd), input, `${indexStart}`) : handler; if (!isUndefined3(output)) { state.output.push(output); } } state.index = indexEnd; return true; } else { return false; } }; }; string = (target, handler) => { return (state) => { const indexStart = state.index; const input = state.input; const matched = input.startsWith(target, indexStart); if (matched) { if (!isUndefined3(handler) && !state.options.silent) { const output = isFunction2(handler) ? handler(target, input, `${indexStart}`) : handler; if (!isUndefined3(output)) { state.output.push(output); } } state.index += target.length; return true; } else { return false; } }; }; repeat = (rule, min, max, handler) => { const erule = resolve(rule); const isBacktrackable = min > 1; return memoizable(handleable(backtrackable((state) => { let repetitions = 0; while (repetitions < max) { const index = state.index; const matched = erule(state); if (!matched) break; repetitions += 1; if (state.index === index) break; } return repetitions >= min; }, isBacktrackable), handler)); }; optional = (rule, handler) => { return repeat(rule, 0, 1, handler); }; star = (rule, handler) => { return repeat(rule, 0, Infinity, handler); }; and = (rules, handler) => { const erules = rules.map(resolve); return memoizable(handleable(backtrackable((state) => { for (let i = 0, l = erules.length; i < l; i++) { if (!erules[i](state)) return false; } return true; }), handler)); }; or = (rules, handler) => { const erules = rules.map(resolve); return memoizable(handleable((state) => { for (let i = 0, l = erules.length; i < l; i++) { if (erules[i](state)) return true; } return false; }, handler)); }; backtrackable = (rule, enabled = true, force = false) => { const erule = resolve(rule); if (!enabled) return erule; return (state) => { const index = state.index; const length = state.output.length; const matched = erule(state); if (!matched && !force) { state.indexBacktrackMax = Math.max(state.indexBacktrackMax, state.index); } if (!matched || force) { state.index = index; if (state.output.length !== length) { state.output.length = length; } } return matched; }; }; handleable = (rule, handler) => { const erule = resolve(rule); if (!handler) return erule; return (state) => { if (state.options.silent) return erule(state); const length = state.output.length; const matched = erule(state); if (matched) { const outputs = state.output.splice(length, Infinity); const output = handler(outputs); if (!isUndefined3(output)) { state.output.push(output); } return true; } else { return false; } }; }; memoizable = /* @__PURE__ */ (() => { let RULE_ID = 0; return (rule) => { const erule = resolve(rule); const ruleId = RULE_ID += 1; return (state) => { var _a5; var _a4; if (state.options.memoization === false) return erule(state); const indexStart = state.index; const cache3 = (_a4 = state.cache)[ruleId] || (_a4[ruleId] = { indexMax: -1, queue: [] }); const cacheQueue = cache3.queue; const isPotentiallyCached = indexStart <= cache3.indexMax; if (isPotentiallyCached) { const cacheStore = cache3.store || (cache3.store = /* @__PURE__ */ new Map()); if (cacheQueue.length) { for (let i = 0, l = cacheQueue.length; i < l; i += 2) { const key2 = cacheQueue[i * 2]; const value = cacheQueue[i * 2 + 1]; cacheStore.set(key2, value); } cacheQueue.length = 0; } const cached = cacheStore.get(indexStart); if (cached === false) { return false; } else if (isNumber(cached)) { state.index = cached; return true; } else if (cached) { state.index = cached.index; if ((_a5 = cached.output) == null ? void 0 : _a5.length) { state.output.push(...cached.output); } return true; } } const lengthStart = state.output.length; const matched = erule(state); cache3.indexMax = Math.max(cache3.indexMax, indexStart); if (matched) { const indexEnd = state.index; const lengthEnd = state.output.length; if (lengthEnd > lengthStart) { const output = state.output.slice(lengthStart, lengthEnd); cacheQueue.push(indexStart, { index: indexEnd, output }); } else { cacheQueue.push(indexStart, indexEnd); } return true; } else { cacheQueue.push(indexStart, false); return false; } }; }; })(); lazy = (getter) => { let erule; return (state) => { erule || (erule = resolve(getter())); return erule(state); }; }; resolve = memoize2((rule) => { if (isFunction2(rule)) { if (isFunctionNullary(rule)) { return lazy(rule); } else { return rule; } } if (isString(rule) || isRegExp(rule)) { return match(rule); } if (isArray2(rule)) { return and(rule); } if (isObject(rule)) { return or(Object.values(rule)); } throw new Error("Invalid rule"); }); } }); // node_modules/zeptomatch/dist/utils.js var identity2, makeParser, memoize3; var init_utils10 = __esm({ "node_modules/zeptomatch/dist/utils.js"() { init_dist19(); identity2 = (value) => { return value; }; makeParser = (grammar) => { return (input) => { return parse(input, grammar, { memoization: false }).join(""); }; }; memoize3 = (fn) => { const cache3 = {}; return (arg) => { return cache3[arg] ?? (cache3[arg] = fn(arg)); }; }; } }); // node_modules/zeptomatch/dist/range.js var ALPHABET, int2alpha, alpha2int, makeRangeInt, makeRangePaddedInt, makeRangeAlpha; var init_range = __esm({ "node_modules/zeptomatch/dist/range.js"() { ALPHABET = "abcdefghijklmnopqrstuvwxyz"; int2alpha = (int2) => { let alpha = ""; while (int2 > 0) { const reminder = (int2 - 1) % 26; alpha = ALPHABET[reminder] + alpha; int2 = Math.floor((int2 - 1) / 26); } return alpha; }; alpha2int = (str2) => { let int2 = 0; for (let i = 0, l = str2.length; i < l; i++) { int2 = int2 * 26 + ALPHABET.indexOf(str2[i]) + 1; } return int2; }; makeRangeInt = (start, end) => { if (end < start) return makeRangeInt(end, start); const range = []; while (start <= end) { range.push(start++); } return range; }; makeRangePaddedInt = (start, end, paddingLength) => { return makeRangeInt(start, end).map((int2) => String(int2).padStart(paddingLength, "0")); }; makeRangeAlpha = (start, end) => { return makeRangeInt(alpha2int(start), alpha2int(end)).map(int2alpha); }; } }); // node_modules/zeptomatch/dist/convert/grammar.js var Escaped, Escape, Slash, Passthrough, NegationOdd, NegationEven, Negation, StarStarBetween, StarStarStart, StarStarEnd, StarStarNone, StarStar, StarDouble, StarSingle, Star, Question, ClassOpen, ClassClose, ClassNegation, ClassRange, ClassEscape, ClassPassthrough, ClassValue, Class, RangeOpen, RangeClose, RangeNumeric, RangeAlphaLower, RangeAlphaUpper, RangeValue, Range, BracesOpen, BracesClose, BracesComma, BracesEscape, BracesPassthrough, BracesNested, BracesValue, Braces, Grammar, grammar_default; var init_grammar = __esm({ "node_modules/zeptomatch/dist/convert/grammar.js"() { init_dist19(); init_range(); init_utils10(); init_parser(); Escaped = match(/\\./, identity2); Escape = match(/[$.*+?^(){}[\]\|]/, (char) => `\\${char}`); Slash = match(/[\\/]/, "[\\\\/]"); Passthrough = match(/./, identity2); NegationOdd = match(/^(?:!!)*!(.*)$/, (_, glob) => `(?!^${parser_default(glob)}$).*?`); NegationEven = match(/^(!!)+/, ""); Negation = or([NegationOdd, NegationEven]); StarStarBetween = match(/\/(\*\*\/)+/, "(?:[\\\\/].+[\\\\/]|[\\\\/])"); StarStarStart = match(/^(\*\*\/)+/, "(?:^|.*[\\\\/])"); StarStarEnd = match(/\/(\*\*)$/, "(?:[\\\\/].*|$)"); StarStarNone = match(/\*\*/, ".*"); StarStar = or([StarStarBetween, StarStarStart, StarStarEnd, StarStarNone]); StarDouble = match(/\*\/(?!\*\*\/|\*$)/, "[^\\\\/]*[\\\\/]"); StarSingle = match(/\*/, "[^\\\\/]*"); Star = or([StarDouble, StarSingle]); Question = match("?", "[^\\\\/]"); ClassOpen = match("[", identity2); ClassClose = match("]", identity2); ClassNegation = match(/[!^]/, "^\\\\/"); ClassRange = match(/[a-z]-[a-z]|[0-9]-[0-9]/i, identity2); ClassEscape = match(/[$.*+?^(){}[\|]/, (char) => `\\${char}`); ClassPassthrough = match(/[^\]]/, identity2); ClassValue = or([Escaped, ClassEscape, ClassRange, ClassPassthrough]); Class = and([ClassOpen, optional(ClassNegation), star(ClassValue), ClassClose]); RangeOpen = match("{", "(?:"); RangeClose = match("}", ")"); RangeNumeric = match(/(\d+)\.\.(\d+)/, (_, $1, $2) => makeRangePaddedInt(+$1, +$2, Math.min($1.length, $2.length)).join("|")); RangeAlphaLower = match(/([a-z]+)\.\.([a-z]+)/, (_, $1, $2) => makeRangeAlpha($1, $2).join("|")); RangeAlphaUpper = match(/([A-Z]+)\.\.([A-Z]+)/, (_, $1, $2) => makeRangeAlpha($1.toLowerCase(), $2.toLowerCase()).join("|").toUpperCase()); RangeValue = or([RangeNumeric, RangeAlphaLower, RangeAlphaUpper]); Range = and([RangeOpen, RangeValue, RangeClose]); BracesOpen = match("{", "(?:"); BracesClose = match("}", ")"); BracesComma = match(",", "|"); BracesEscape = match(/[$.*+?^(){[\]\|]/, (char) => `\\${char}`); BracesPassthrough = match(/[^}]/, identity2); BracesNested = lazy(() => Braces); BracesValue = or([StarStar, Star, Question, Class, Range, BracesNested, Escaped, BracesEscape, BracesComma, BracesPassthrough]); Braces = and([BracesOpen, star(BracesValue), BracesClose]); Grammar = star(or([Negation, StarStar, Star, Question, Class, Range, Braces, Escaped, Escape, Slash, Passthrough])); grammar_default = Grammar; } }); // node_modules/zeptomatch/dist/convert/parser.js var parser, parser_default; var init_parser = __esm({ "node_modules/zeptomatch/dist/convert/parser.js"() { init_utils10(); init_grammar(); parser = makeParser(grammar_default); parser_default = parser; } }); // node_modules/zeptomatch/dist/normalize/grammar.js var Escaped2, Passthrough2, StarStarStar, StarStarNoLeft, StarStarNoRight, Grammar2, grammar_default2; var init_grammar2 = __esm({ "node_modules/zeptomatch/dist/normalize/grammar.js"() { init_dist19(); init_utils10(); Escaped2 = match(/\\./, identity2); Passthrough2 = match(/./, identity2); StarStarStar = match(/\*\*\*+/, "*"); StarStarNoLeft = match(/([^/{[(!])\*\*/, (_, $1) => `${$1}*`); StarStarNoRight = match(/(^|.)\*\*(?=[^*/)\]}])/, (_, $1) => `${$1}*`); Grammar2 = star(or([Escaped2, StarStarStar, StarStarNoLeft, StarStarNoRight, Passthrough2])); grammar_default2 = Grammar2; } }); // node_modules/zeptomatch/dist/normalize/parser.js var parser2, parser_default2; var init_parser2 = __esm({ "node_modules/zeptomatch/dist/normalize/parser.js"() { init_utils10(); init_grammar2(); parser2 = makeParser(grammar_default2); parser_default2 = parser2; } }); // node_modules/zeptomatch/dist/index.js var zeptomatch, dist_default18; var init_dist20 = __esm({ "node_modules/zeptomatch/dist/index.js"() { init_parser(); init_parser2(); init_utils10(); zeptomatch = (glob, path17) => { if (Array.isArray(glob)) { const res = glob.map(zeptomatch.compile); const isMatch = res.some((re) => re.test(path17)); return isMatch; } else { const re = zeptomatch.compile(glob); const isMatch = re.test(path17); return isMatch; } }; zeptomatch.compile = memoize3((glob) => { return new RegExp(`^${parser_default(parser_default2(glob))}[\\\\/]?$`, "s"); }); dist_default18 = zeptomatch; } }); // node_modules/zeptomatch-explode/dist/explode_start.js var SIMPLE_RE, explodeStart, explode_start_default; var init_explode_start = __esm({ "node_modules/zeptomatch-explode/dist/explode_start.js"() { SIMPLE_RE = /(\/?)([ a-zA-Z0-9._-]*)(?:\{([ a-zA-Z0-9._-]+(?:,[ a-zA-Z0-9._-]+)*)\})?([ a-zA-Z0-9._-]*)(\/(?=.))/gsy; explodeStart = (glob) => { let index = 0; let length = glob.length; let statics = []; while (index < length) { SIMPLE_RE.lastIndex = index; const match2 = SIMPLE_RE.exec(glob); if (!match2) break; const [_, slash, prefix, multiple, suffix] = match2; if (!prefix && !multiple && !suffix) break; const values = multiple ? multiple.split(",").map((value) => `${slash}${prefix}${value}${suffix}`) : [`${slash}${prefix}${suffix}`]; statics = statics.length ? statics.flatMap((prefix2) => values.map((value) => `${prefix2}/${value}`)) : values; index = SIMPLE_RE.lastIndex; } const dynamic = index ? glob.slice(index) : glob; return { statics, dynamic }; }; explode_start_default = explodeStart; } }); // node_modules/zeptomatch-explode/dist/explode_end.js var SIMPLE_RE2, explodeEnd, explode_end_default; var init_explode_end = __esm({ "node_modules/zeptomatch-explode/dist/explode_end.js"() { SIMPLE_RE2 = /(^|\/)(\*?)([ a-zA-Z0-9._-]*)(?:\{([ a-zA-Z0-9._-]+(?:,[ a-zA-Z0-9._-]+)*)\})?([ a-zA-Z0-9._-]*)(\*?)$/; explodeEnd = (glob) => { const match2 = SIMPLE_RE2.exec(glob); if (match2) { const [_, slash, starStart, prefix, multiple, suffix, starEnd] = match2; if (prefix || multiple || suffix) { const flexibleStart = !!starStart; const flexibleEnd = !!starEnd; const statics = multiple ? multiple.split(",").map((value) => `${prefix}${value}${suffix}`) : [`${prefix}${suffix}`]; const head = glob.slice(0, match2.index); const dynamic = head ? `${head}/*` : "*"; return { flexibleStart, flexibleEnd, statics, dynamic }; } else if (starStart || starEnd) { const flexibleStart = true; const flexibleEnd = true; const statics = []; const dynamic = glob; return { flexibleStart, flexibleEnd, statics, dynamic }; } } return { flexibleStart: false, flexibleEnd: false, statics: [], dynamic: glob }; }; explode_end_default = explodeEnd; } }); // node_modules/zeptomatch-explode/dist/index.js var init_dist21 = __esm({ "node_modules/zeptomatch-explode/dist/index.js"() { init_explode_start(); init_explode_end(); } }); // node_modules/zeptomatch-is-static/dist/index.js var isStatic, dist_default19; var init_dist22 = __esm({ "node_modules/zeptomatch-is-static/dist/index.js"() { isStatic = /* @__PURE__ */ (() => { const re = /^(?:\\$|\\.|[^*?!^{}[\]\\])*$/s; return (glob) => { return re.test(glob); }; })(); dist_default19 = isStatic; } }); // node_modules/zeptomatch-unescape/dist/index.js var unescape, dist_default20; var init_dist23 = __esm({ "node_modules/zeptomatch-unescape/dist/index.js"() { unescape = /* @__PURE__ */ (() => { const re = /\\(.)/gs; return (glob) => { return glob.replace(re, "$1"); }; })(); dist_default20 = unescape; } }); // node_modules/tiny-readdir-glob/dist/utils.js import path7 from "path"; var castArray4, globExplode, globsExplode, globCompile, globsCompile, globsPartition, ignoreCompile, intersection, isPathSep, isString2, uniq2, uniqFlat, uniqMergeConcat; var init_utils11 = __esm({ "node_modules/tiny-readdir-glob/dist/utils.js"() { init_dist20(); init_dist21(); init_dist22(); init_dist23(); castArray4 = (value) => { return Array.isArray(value) ? value : [value]; }; globExplode = (glob) => { if (dist_default19(glob)) { return [[dist_default20(glob)], "**/*"]; } else { const { statics, dynamic } = explode_start_default(glob); return [statics, dynamic]; } }; globsExplode = (globs) => { const results = []; for (const glob of globs) { const [paths, pathsGlob] = globExplode(glob); if (!paths.length) { paths.push(""); } for (const path17 of paths) { const existing = results.find((result) => result[0].includes(path17)); if (existing) { if (!existing[1].includes(pathsGlob)) { existing[1].push(pathsGlob); } } else { results.push([[path17], [pathsGlob]]); } } } return results; }; globCompile = (glob) => { if (!glob || glob === "**/*") { return () => true; } const { flexibleStart, flexibleEnd, statics, dynamic } = explode_end_default(glob); if (dynamic === "**/*" && statics.length && !flexibleEnd) { return (rootPath, targetPath) => { for (let i = 0, l = statics.length; i < l; i++) { const end = statics[i]; if (!targetPath.endsWith(end)) continue; if (flexibleStart) return true; if (targetPath.length === end.length) return true; if (isPathSep(targetPath[targetPath.length - end.length - 1])) return true; } return false; }; } else { const re = dist_default18.compile(glob); return (rootPath, targetPath) => { return re.test(path7.relative(rootPath, targetPath)); }; } }; globsCompile = (globs) => { const fns = globs.map(globCompile); return (rootPath, targetPath) => fns.some((fn) => fn(rootPath, targetPath)); }; globsPartition = (globs) => { const positives = []; const negatives = []; const bangsRe = /^!+/; if (globs.length) { for (const glob of globs) { const match2 = glob.match(bangsRe); if (match2) { const bangsNr = match2[0].length; const bucket = bangsNr % 2 === 0 ? positives : negatives; bucket.push(glob.slice(bangsNr)); } else { positives.push(glob); } } if (!positives.length) { positives.push("**"); } } return [positives, negatives]; }; ignoreCompile = (rootPath, ignore) => { if (!ignore) return; return castArray4(ignore).map((ignore2) => { if (!isString2(ignore2)) return ignore2; const fn = globCompile(ignore2); return (targetPath) => fn(rootPath, targetPath); }); }; intersection = (sets) => { if (sets.length === 1) return sets[0]; const result = /* @__PURE__ */ new Set(); for (let i = 0, l = sets.length; i < l; i++) { const set3 = sets[i]; for (const value of set3) { result.add(value); } } return result; }; isPathSep = (char) => { return char === "/" || char === "\\"; }; isString2 = (value) => { return typeof value === "string"; }; uniq2 = (values) => { if (values.length < 2) return values; return Array.from(new Set(values)); }; uniqFlat = (values) => { if (values.length === 1) return values[0]; return uniq2(values.flat()); }; uniqMergeConcat = (values) => { if (values.length === 1) return values[0]; const merged = {}; for (let i = 0, l = values.length; i < l; i++) { const value = values[i]; for (const key2 in value) { const prev = merged[key2]; const next = Array.isArray(prev) ? prev.concat(value[key2]) : value[key2]; merged[key2] = next; } } for (const key2 in merged) { merged[key2] = uniq2(merged[key2]); } return merged; }; } }); // node_modules/tiny-readdir-glob/dist/index.js import path8 from "path"; import process10 from "process"; var readdirGlob, dist_default21; var init_dist24 = __esm({ "node_modules/tiny-readdir-glob/dist/index.js"() { init_dist18(); init_utils11(); readdirGlob = async (glob, options) => { const [globsPositive, globsNegative] = globsPartition(castArray4(glob)); const cwd = (options == null ? void 0 : options.cwd) ?? process10.cwd(); const ignore = [...castArray4((options == null ? void 0 : options.ignore) ?? []), ...globsNegative]; const bucketDirectories = []; const bucketFiles = []; const bucketSymlinks = []; const bucketDirectoriesFound = []; const bucketFilesFound = []; const bucketSymlinksFound = []; const bucketDirectoriesFoundNames = []; const bucketFilesFoundNames = []; const bucketSymlinksFoundNames = []; const bucketDirectoriesFoundNamesToPaths = []; const bucketFilesFoundNamesToPaths = []; const bucketSymlinksFoundNamesToPaths = []; for (const [folders, foldersGlobs] of globsExplode(globsPositive)) { const isMatch = globsCompile(foldersGlobs); for (const folder of folders) { const rootPath = path8.join(cwd, folder).replace(/\/$/, ""); const isIgnored = ignoreCompile(rootPath, ignore); const isRelativeMatch = (targetPath) => isMatch(rootPath, targetPath); const result = await dist_default17(rootPath, { depth: options == null ? void 0 : options.depth, limit: options == null ? void 0 : options.limit, followSymlinks: options == null ? void 0 : options.followSymlinks, ignore: isIgnored, signal: options == null ? void 0 : options.signal, onDirents: options == null ? void 0 : options.onDirents }); bucketDirectories.push(result.directories.filter(isRelativeMatch)); bucketFiles.push(result.files.filter(isRelativeMatch)); bucketSymlinks.push(result.symlinks.filter(isRelativeMatch)); bucketDirectoriesFound.push(result.directories); bucketFilesFound.push(result.files); bucketSymlinksFound.push(result.symlinks); bucketDirectoriesFoundNames.push(result.directoriesNames); bucketFilesFoundNames.push(result.filesNames); bucketSymlinksFoundNames.push(result.symlinksNames); bucketDirectoriesFoundNamesToPaths.push(result.directoriesNamesToPaths); bucketFilesFoundNamesToPaths.push(result.filesNamesToPaths); bucketSymlinksFoundNamesToPaths.push(result.symlinksNamesToPaths); } } const directories = uniqFlat(bucketDirectories); const files = uniqFlat(bucketFiles); const symlinks = uniqFlat(bucketSymlinks); const directoriesFound = uniqFlat(bucketDirectoriesFound); const filesFound = uniqFlat(bucketFilesFound); const symlinksFound = uniqFlat(bucketSymlinksFound); const directoriesFoundNames = intersection(bucketDirectoriesFoundNames); const filesFoundNames = intersection(bucketFilesFoundNames); const symlinksFoundNames = intersection(bucketSymlinksFoundNames); const directoriesFoundNamesToPaths = uniqMergeConcat(bucketDirectoriesFoundNamesToPaths); const filesFoundNamesToPaths = uniqMergeConcat(bucketFilesFoundNamesToPaths); const symlinksFoundNamesToPaths = uniqMergeConcat(bucketSymlinksFoundNamesToPaths); return { directories, files, symlinks, directoriesFound, filesFound, symlinksFound, directoriesFoundNames, filesFoundNames, symlinksFoundNames, directoriesFoundNamesToPaths, filesFoundNamesToPaths, symlinksFoundNamesToPaths }; }; dist_default21 = readdirGlob; } }); // node_modules/zeptomatch-escape/dist/index.js var escape, dist_default22; var init_dist25 = __esm({ "node_modules/zeptomatch-escape/dist/index.js"() { escape = /* @__PURE__ */ (() => { const re = /(\\.)|([*?!^{}[\]])|(.)/gs; const replacer = (_, $1, $2, $3) => $1 || $3 || `\\${$2}`; return (value) => { return value.replace(re, replacer); }; })(); dist_default22 = escape; } }); // node_modules/@prettier/cli/dist/utils.js import crypto from "crypto"; import fs7 from "fs"; import path9 from "path"; import process11 from "process"; import { text as stream2text } from "stream/consumers"; import url from "url"; function castArray5(value) { return isArray3(value) ? value : [value]; } function fastJoinedPath(folderPath, fileName) { return `${folderPath}${path9.sep}${fileName}`; } function fastRelativePath(fromPath, toPath) { if (toPath.startsWith(fromPath)) { if (toPath[fromPath.length] === path9.sep) { return toPath.slice(fromPath.length + 1); } } return path9.relative(fromPath, toPath); } function fastRelativeChildPath(fromPath, toPath) { if (toPath.startsWith(fromPath)) { if (toPath[fromPath.length] === path9.sep) { return toPath.slice(fromPath.length + 1); } } } function findLastIndex(array, predicate) { for (let i = array.length - 1; i >= 0; i--) { if (predicate(array[i], i, array)) return i; } return -1; } function getCachePath(rootPath) { const nodeModulesPaths = path9.join(rootPath, "node_modules"); const cachePath = path9.join(nodeModulesPaths, ".cache", "prettier", ".prettier-caches"); return cachePath; } function getDirectoryPaths(rootPath, withNodeModules) { const ignoreGlob = `**/{.git,.sl,.svn,.hg,.DS_Store,Thumbs.db${withNodeModules ? "" : ",node_modules"}}`; const ignoreRe = dist_default18.compile(ignoreGlob); const ignore = (targetPath) => { return ignoreRe.test(path9.relative(rootPath, targetPath)); }; return dist_default17(rootPath, { followSymlinks: false, ignore }); } function getExpandedFoldersPaths(foldersPaths, untilPath = "/") { const knownPaths = new Set(foldersPaths); const expandedPaths = /* @__PURE__ */ new Set(); const extraPaths = /* @__PURE__ */ new Set(); for (let i = 0, l = foldersPaths.length; i < l; i++) { let folderPath = foldersPaths[i]; while (true) { if (expandedPaths.has(folderPath)) break; if (folderPath === untilPath) break; expandedPaths.add(folderPath); folderPath = path9.dirname(folderPath); if (!knownPaths.has(folderPath)) { extraPaths.add(folderPath); } } } return [[...expandedPaths], [...extraPaths]]; } async function getFolderChildrenPaths(folderPath) { const dirents = await fs7.promises.readdir(folderPath, { withFileTypes: true }); const childrenPaths = dirents.map((dirent) => fastJoinedPath(folderPath, dirent.name)); return childrenPaths; } async function getFoldersChildrenPaths(foldersPaths) { const childrensPaths = await Promise.all(foldersPaths.map(getFolderChildrenPaths)); const childrenPaths = childrensPaths.flat(); return childrenPaths; } function getGlobPaths(rootPath, globs, withNodeModules) { return dist_default21(globs, { cwd: rootPath, followSymlinks: false, ignore: `**/{.git,.sl,.svn,.hg,.DS_Store,Thumbs.db${withNodeModules ? "" : ",node_modules"}}` }); } async function getModule(modulePath) { const moduleExports = await import(url.pathToFileURL(modulePath).href); const module = moduleExports.default || moduleExports.exports || moduleExports; return module; } function getModulePath(name, rootPath) { const rootUrl = url.pathToFileURL(rootPath); const moduleUrl = moduleResolve(name, rootUrl); const modulePath = url.fileURLToPath(moduleUrl); return modulePath; } function identity3(value) { return value; } async function getPluginOrExit(name) { try { return await getPlugin(name); } catch { exit_default(`The plugin "${name}" could not be loaded`); } } function getPluginPath(name) { const rootPath = path9.join(process11.cwd(), "index.js"); try { return getModulePath(`./${name}`, rootPath); } catch { return getModulePath(name, rootPath); } } function getPluginVersion(name) { const pluginPath = getPluginPath(name); const parentPath = path9.dirname(pluginPath); const pkg = dist_default2("package.json", parentPath); if (!pkg || !pkg.content.version) { return null; } else { return pkg.content.version; } } function getPluginsVersions(names) { const pluginsVersions = names.map(getPluginVersion); return pluginsVersions; } function getProjectPath(rootPath) { function isProjectPath(folderPath) { const gitPath = path9.join(folderPath, ".git"); if (fs7.existsSync(gitPath)) return true; const hgPath = path9.join(folderPath, ".hg"); if (fs7.existsSync(hgPath)) return true; const svnPath = path9.join(folderPath, ".svn"); if (fs7.existsSync(svnPath)) return true; const slPath = path9.join(folderPath, ".sl"); if (fs7.existsSync(slPath)) return true; return false; } let currentPath = rootPath; while (true) { if (isProjectPath(currentPath)) { return currentPath; } else { const currentPathNext = path9.dirname(currentPath); if (currentPath === currentPathNext) { return rootPath; } else { currentPath = currentPathNext; } } } } function getStats(targetPath) { try { return fs7.statSync(targetPath); } catch { return; } } async function getTargetsPaths(rootPath, globs, withNodeModules) { const targetFiles = []; const targetFilesNames = []; const targetFilesNamesToPaths = {}; const targetDirectories = []; const targetGlobs = []; for (const glob of globs) { const filePath = path9.resolve(rootPath, glob); const fileStats = getStats(filePath); if (fileStats == null ? void 0 : fileStats.isFile()) { const fileName = path9.basename(filePath); targetFiles.push(filePath); targetFilesNames.push(fileName); targetFilesNamesToPaths.propertyIsEnumerable(fileName) || (targetFilesNamesToPaths[fileName] = []); targetFilesNamesToPaths[fileName].push(filePath); } else if (fileStats == null ? void 0 : fileStats.isDirectory()) { targetDirectories.push(filePath); } else { targetGlobs.push(glob); } } const globResult = await getGlobPaths(rootPath, targetGlobs, withNodeModules); const globResultFiles = globResult.files; const globResultFilesFoundNames = [...globResult.filesFoundNames]; const directoriesResults = await Promise.all(targetDirectories.map((targetPath) => getDirectoryPaths(targetPath, withNodeModules))); const directoriesResultsFiles = directoriesResults.map((result) => result.files); const directoriesResultsFilesFoundNames = directoriesResults.map((result) => [...result.filesNames]); const foundFiles = uniqChunks(globResultFiles, ...directoriesResultsFiles); const foundFilesNames = uniqChunks(globResultFilesFoundNames, ...directoriesResultsFilesFoundNames); const filesPaths = [...without2(targetFiles, foundFiles), ...foundFiles]; const filesNames = [...without2(targetFilesNames, foundFilesNames), ...foundFilesNames]; const filesNamesToPaths = globResult.filesFoundNamesToPaths; for (const fileName in targetFilesNamesToPaths) { const prev = filesNamesToPaths[fileName]; const next = Array.isArray(prev) ? prev.concat(targetFilesNamesToPaths[fileName]) : targetFilesNamesToPaths[fileName]; filesNamesToPaths[fileName] = uniq3(next); } const filesExplicitPaths = targetFiles; const globFilesFoundPaths = globResult.filesFound; const directoryFilesFoundPaths = directoriesResultsFiles.flat(); const filesFoundPaths = [...globFilesFoundPaths, ...directoryFilesFoundPaths]; const globFoldersFoundPaths = globResult.directoriesFound; const directoryFoldersFoundPaths = directoriesResults.flatMap((result) => result.directories); const foldersFoundPaths = [rootPath, ...globFoldersFoundPaths, ...directoryFoldersFoundPaths]; return [filesPaths, filesNames, filesNamesToPaths, filesExplicitPaths, filesFoundPaths, foldersFoundPaths]; } function isArray3(value) { return Array.isArray(value); } function isBoolean2(value) { return typeof value === "boolean"; } function isFunction3(value) { return typeof value === "function"; } function isInteger(value) { return Number.isInteger(value); } function isIntegerInRange(value, min = -Infinity, max = Infinity, step = 1) { return isInteger(value) && value >= min && value <= max && value % step === 0; } function isNull2(value) { return value === null; } function isNumber2(value) { return typeof value === "number"; } function isObject2(value) { if (value === null) return false; const type2 = typeof value; return type2 === "object" || type2 === "function"; } function isString3(value) { return typeof value === "string"; } function isTruthy(value) { return !!value; } function isUndefined4(value) { return typeof value === "undefined"; } function negate(fn) { return (...args) => { return !fn(...args); }; } function noop2() { return; } async function normalizeOptions(options, targets) { if (!isObject2(options)) exit_default("Invalid options object"); const targetsGlobs = targets.filter(isString3); const targetsStatic = "--" in options && Array.isArray(options["--"]) ? options["--"].filter(isString3).map(dist_default22) : []; const globs = [...targetsGlobs, ...targetsStatic]; const stdin = await getStdin(); if (!isString3(stdin) && !globs.length) exit_default("Expected at least one target file/dir/glob"); const check = "check" in options && !!options.check; const list = "listDifferent" in options && !!options.listDifferent; const write = "write" in options && !!options.write; const dump2 = !check && !list && !write; if (check && list) exit_default('The "--check" and "--list-different" flags cannot be used together'); if (check && write) exit_default('The "--check" and "--write" flags cannot be used together'); if (list && write) exit_default('The "--list-different" and "--write" flags cannot be used together'); const config = "config" in options ? !!options.config : true; const configPath = "configPath" in options && isString3(options.configPath) ? [options.configPath] : void 0; const editorConfig = "editorconfig" in options ? !!options.editorconfig : true; const ignore = "ignore" in options ? !!options.ignore : true; const ignorePath = "ignorePath" in options && isArray3(options.ignorePath) && options.ignorePath.every(isString3) ? options.ignorePath : void 0; const withNodeModules = "withNodeModules" in options ? !!options.withNodeModules : false; const cache3 = "cache" in options ? !!options.cache : true; const cacheLocation = "cacheLocation" in options && isString3(options.cacheLocation) ? options.cacheLocation : void 0; const errorOnUnmatchedPattern = "errorOnUnmatchedPattern" in options ? !!options.errorOnUnmatchedPattern : true; const ignoreUnknown = "ignoreUnknown" in options && isBoolean2(options.ignoreUnknown) ? !!options.ignoreUnknown : globs.some(dist_default19); const logLevel = "logLevel" in options ? options.logLevel || "log" : "log"; const parallel = "parallel" in options && !!options.parallel; const parallelWorkers = "parallelWorkers" in options && Math.round(Number(options.parallelWorkers)) || 0; const stdinFilepath = "stdinFilepath" in options && isString3(options.stdinFilepath) ? options.stdinFilepath : void 0; const contextOptions = normalizeContextOptions(options); const formatOptions = normalizeFormatOptions(options); return { globs, check, dump: dump2, list, write, config, configPath, editorConfig, ignore, ignorePath, withNodeModules, cache: cache3, cacheLocation, errorOnUnmatchedPattern, ignoreUnknown, logLevel, parallel, parallelWorkers, stdinFilepath, contextOptions, formatOptions }; } function normalizeContextOptions(options) { if (!isObject2(options)) exit_default("Invalid options object"); const contextOptions = {}; if ("cursorOffset" in options) { const value = Number(options.cursorOffset); if (isInteger(value) && value >= 0) { contextOptions.cursorOffset = value; } } if ("rangeEnd" in options) { const value = Number(options.rangeEnd); if (isInteger(value) && value >= 0) { contextOptions.rangeEnd = value; } } if ("rangeStart" in options) { const value = Number(options.rangeStart); if (isInteger(value) && value >= 0) { contextOptions.rangeStart = value; } } return contextOptions; } function normalizeFormatOptions(options) { if (!isObject2(options)) exit_default("Invalid options object"); const formatOptions = {}; if ("experimentalOperatorPosition" in options) { const value = options.experimentalOperatorPosition; if (value === "start" || value === "end") { formatOptions.experimentalOperatorPosition = value; } } if ("experimentalTernaries" in options) { const value = options.experimentalTernaries; if (isBoolean2(value)) { formatOptions.experimentalTernaries = value; } } if ("arrowParens" in options) { const value = options.arrowParens; if (value === "avoid" || value === "always") { formatOptions.arrowParens = value; } } if ("bracketSameLine" in options) { const value = options.bracketSameLine; if (isBoolean2(value)) { formatOptions.bracketSameLine = value; } } if ("bracketSpacing" in options) { const value = options.bracketSpacing; if (isBoolean2(value)) { formatOptions.bracketSpacing = value; } } if ("embeddedLanguageFormatting" in options) { const value = options.embeddedLanguageFormatting; if (value === "auto" || value === "off") { formatOptions.embeddedLanguageFormatting = value; } } if ("endOfLine" in options) { const value = options.endOfLine; if (value === "lf" || value === "crlf" || value === "cr" || value === "auto") { formatOptions.endOfLine = value; } } if ("htmlWhitespaceSensitivity" in options) { const value = options.htmlWhitespaceSensitivity; if (value === "css" || value === "strict" || value === "ignore") { formatOptions.htmlWhitespaceSensitivity = value; } } if ("insertPragma" in options) { const value = options.insertPragma; if (isBoolean2(value)) { formatOptions.insertPragma = value; } } if ("jsxSingleQuote" in options) { const value = options.jsxSingleQuote; if (isBoolean2(value)) { formatOptions.jsxSingleQuote = value; } } if ("objectWrap" in options) { const value = options.objectWrap; if (value === "preserve" || value === "collapse") { formatOptions.objectWrap = value; } } if ("parser" in options) { const value = options.parser; if (isString3(value)) { formatOptions.parser = value; } } if ("plugin" in options || "plugins" in options) { const value = options["plugin"] || options["plugins"]; if (isArray3(value) && value.every(isString3)) { formatOptions.plugins = value; } else if (isString3(value)) { formatOptions.plugins = [value]; } else if (!isUndefined4(value)) { exit_default("Non-string plugin specifiers are not supported yet"); } } if ("printWidth" in options) { const value = Number(options.printWidth); if (isInteger(value) && value >= 0) { formatOptions.printWidth = value; } } if ("proseWrap" in options) { const value = options.proseWrap; if (value === "always" || value === "never" || value === "preserve") { formatOptions.proseWrap = value; } } if ("quoteProps" in options) { const value = options.quoteProps; if (value === "as-needed" || value === "consistent" || value === "preserve") { formatOptions.quoteProps = value; } } if ("requirePragma" in options) { const value = options.requirePragma; if (isBoolean2(value)) { formatOptions.requirePragma = value; } } if ("semi" in options) { const value = options.semi; if (isBoolean2(value)) { formatOptions.semi = value; } } if ("singleAttributePerLine" in options) { const value = options.singleAttributePerLine; if (isBoolean2(value)) { formatOptions.singleAttributePerLine = value; } } if ("singleQuote" in options) { const value = options.singleQuote; if (isBoolean2(value)) { formatOptions.singleQuote = value; } } if ("tabWidth" in options) { const value = Number(options.tabWidth); if (isInteger(value) && value >= 0) { formatOptions.tabWidth = value; } } if ("trailingComma" in options) { const value = options.trailingComma; if (value === "all" || value === "es5" || value === "none") { formatOptions.trailingComma = value; } } if ("useTabs" in options) { const value = options.useTabs; if (isBoolean2(value)) { formatOptions.useTabs = value; } } if ("vueIndentScriptAndStyle" in options) { const value = options.vueIndentScriptAndStyle; if (isBoolean2(value)) { formatOptions.vueIndentScriptAndStyle = value; } } return formatOptions; } function normalizePluginOptions(options, names) { if (!isObject2(options)) exit_default("Invalid options object"); const config = {}; for (let i = 0, l = names.length; i < l; i++) { const name = names[i]; const value = options[name]; if (isUndefined4(value)) continue; config[name] = value; } return config; } function normalizePrettierOptions(options, folderPath) { if (!isObject2(options)) exit_default("Invalid options object"); const config = normalizeFormatOptions(options); if ("overrides" in options && isArray3(options.overrides)) { const overridesRaw = options.overrides; for (let i = 0, l = overridesRaw.length; i < l; i++) { const overrideRaw = overridesRaw[i]; if (!isObject2(overrideRaw)) continue; if (!("files" in overrideRaw)) continue; if (!isString3(overrideRaw.files) && (!isArray3(overrideRaw.files) || !overrideRaw.files.every(isString3))) continue; if (isArray3(overrideRaw.files) && !overrideRaw.files.length) continue; if (!("options" in overrideRaw)) continue; if (!isObject2(overrideRaw.options)) continue; const overrides = config.overrides || (config.overrides = []); const filesPositive = castArray5(overrideRaw.files); const filesNegative = "filesNegative" in overrideRaw && (isString3(overrideRaw.filesNegative) || isArray3(overrideRaw.filesNegative) && overrideRaw.filesNegative.every(isString3)) ? castArray5(overrideRaw.filesNegative) : []; const folder = folderPath; const options2 = normalizeFormatOptions(overrideRaw.options); overrides.push({ filesPositive, filesNegative, folder, options: options2 }); } } return config; } function omit(object, keys) { const clone = { ...object }; for (let i = 0, l = keys.length; i < l; i++) { delete clone[keys[i]]; } return clone; } function pluralize(value, length) { return `${value}${length === 1 ? "" : "s"}`; } function resolve2(value) { return isFunction3(value) ? value() : value; } function sha1hex(value) { return crypto.createHash("sha1").update(value).digest("hex"); } function sha1base64(value) { return crypto.createHash("sha1").update(value).digest("base64"); } function someOf(fns) { return (arg) => { return fns.some((fn) => fn(arg)); }; } function trimFinalNewline(value) { return value.replace(/(\r?\n|\r)$/, ""); } function uniq3(values) { if (values.length < 2) return values; return Array.from(new Set(values)); } function uniqChunks(...chunks) { const chunksNonEmpty = chunks.filter((chunk) => chunk.length); if (chunksNonEmpty.length === 0) { return []; } else if (chunksNonEmpty.length === 1) { return chunksNonEmpty[0]; } else { return uniq3(chunks.flat()); } } function without2(values, exclude) { if (!values.length) return values; if (!exclude.length) return values; const excludeSet = new Set(exclude); return values.filter((value) => !excludeSet.has(value)); } function zipObjectUnless(keys, values, unless) { const map2 = {}; for (let i = 0, l = keys.length; i < l; i++) { const value = values[i]; if (!unless(value)) { map2[keys[i]] = value; } } return map2; } var getPlugin, getStdin, normalizePathSeparatorsToPosix; var init_utils12 = __esm({ "node_modules/@prettier/cli/dist/utils.js"() { init_dist2(); init_dist13(); init_import_meta_resolve(); init_dist14(); init_dist15(); init_dist12(); init_dist18(); init_dist24(); init_dist20(); init_dist25(); init_dist22(); getPlugin = dist_default13((name) => { const pluginPath = getPluginPath(name); const plugin = getModule(pluginPath); return plugin; }); getStdin = dist_default12(async () => { if (!process11.stdin.isTTY) { const stdin = stream2text(process11.stdin); const fallback = dist_default14(1e3, void 0); return Promise.race([stdin, fallback]); } }); normalizePathSeparatorsToPosix = (() => { if (path9.sep === "\\") { return (filePath) => { return filePath.replaceAll("\\", "/"); }; } else { return identity3; } })(); } }); // node_modules/binary-extensions/binary-extensions.json var require_binary_extensions = __commonJS({ "node_modules/binary-extensions/binary-extensions.json"(exports, module) { module.exports = [ "3dm", "3ds", "3g2", "3gp", "7z", "a", "aac", "adp", "afdesign", "afphoto", "afpub", "ai", "aif", "aiff", "alz", "ape", "apk", "appimage", "ar", "arj", "asf", "au", "avi", "bak", "baml", "bh", "bin", "bk", "bmp", "btif", "bz2", "bzip2", "cab", "caf", "cgm", "class", "cmx", "cpio", "cr2", "cur", "dat", "dcm", "deb", "dex", "djvu", "dll", "dmg", "dng", "doc", "docm", "docx", "dot", "dotm", "dra", "DS_Store", "dsk", "dts", "dtshd", "dvb", "dwg", "dxf", "ecelp4800", "ecelp7470", "ecelp9600", "egg", "eol", "eot", "epub", "exe", "f4v", "fbs", "fh", "fla", "flac", "flatpak", "fli", "flv", "fpx", "fst", "fvt", "g3", "gh", "gif", "graffle", "gz", "gzip", "h261", "h263", "h264", "icns", "ico", "ief", "img", "ipa", "iso", "jar", "jpeg", "jpg", "jpgv", "jpm", "jxr", "key", "ktx", "lha", "lib", "lvp", "lz", "lzh", "lzma", "lzo", "m3u", "m4a", "m4v", "mar", "mdi", "mht", "mid", "midi", "mj2", "mka", "mkv", "mmr", "mng", "mobi", "mov", "movie", "mp3", "mp4", "mp4a", "mpeg", "mpg", "mpga", "mxu", "nef", "npx", "numbers", "nupkg", "o", "odp", "ods", "odt", "oga", "ogg", "ogv", "otf", "ott", "pages", "pbm", "pcx", "pdb", "pdf", "pea", "pgm", "pic", "png", "pnm", "pot", "potm", "potx", "ppa", "ppam", "ppm", "pps", "ppsm", "ppsx", "ppt", "pptm", "pptx", "psd", "pya", "pyc", "pyo", "pyv", "qt", "rar", "ras", "raw", "resources", "rgb", "rip", "rlc", "rmf", "rmvb", "rpm", "rtf", "rz", "s3m", "s7z", "scpt", "sgi", "shar", "snap", "sil", "sketch", "slk", "smv", "snk", "so", "stl", "suo", "sub", "swf", "tar", "tbz", "tbz2", "tga", "tgz", "thmx", "tif", "tiff", "tlz", "ttc", "ttf", "txz", "udf", "uvh", "uvi", "uvm", "uvp", "uvs", "uvu", "viv", "vob", "war", "wav", "wax", "wbmp", "wdp", "weba", "webm", "webp", "whl", "wim", "wm", "wma", "wmv", "wmx", "woff", "woff2", "wrm", "wvx", "xbm", "xif", "xla", "xlam", "xls", "xlsb", "xlsm", "xlsx", "xlt", "xltm", "xltx", "xm", "xmind", "xpi", "xpm", "xwd", "xz", "z", "zip", "zipx" ]; } }); // node_modules/binary-extensions/index.js var require_binary_extensions2 = __commonJS({ "node_modules/binary-extensions/index.js"(exports, module) { module.exports = require_binary_extensions(); } }); // node_modules/is-binary-path/index.js var require_is_binary_path = __commonJS({ "node_modules/is-binary-path/index.js"(exports, module) { "use strict"; var path17 = __require("path"); var binaryExtensions = require_binary_extensions2(); var extensions = new Set(binaryExtensions); module.exports = (filePath) => extensions.has(path17.extname(filePath).slice(1).toLowerCase()); } }); // node_modules/json-sorted-stringify/dist/index.js var stringify, dist_default23; var init_dist26 = __esm({ "node_modules/json-sorted-stringify/dist/index.js"() { stringify = (value) => { return JSON.stringify(value, (_, value2) => { if (typeof value2 === "object" && value2 !== null && !Array.isArray(value2)) { const keys = Object.keys(value2).sort(); const clone = {}; for (let i = 0, l = keys.length; i < l; i++) { const key2 = keys[i]; clone[key2] = value2[key2]; } return clone; } return value2; }); }; dist_default23 = stringify; } }); // node_modules/@prettier/cli/dist/cache.js import fs8 from "fs"; import path10 from "path"; var Cache, cache_default; var init_cache = __esm({ "node_modules/@prettier/cli/dist/cache.js"() { init_utils12(); Cache = class { constructor(version, rootPath, options, logger) { this.version = sha1hex(version); this.logger = logger; this.rootPath = rootPath; this.storePath = options.cacheLocation || path10.join(getCachePath(rootPath), `${sha1hex(rootPath)}.json`); this.store = this.read(); this.dirty = false; } cleanup(store) { for (const version in store) { if (version === this.version) continue; delete store[version]; this.dirty = true; } return store; } read() { try { const store = JSON.parse(fs8.readFileSync(this.storePath, "utf8")); if (!isObject2(store)) return {}; return this.cleanup(store); } catch (error) { this.logger.prefixed.debug(String(error)); return {}; } } write() { if (!this.dirty) return; try { const store = JSON.stringify(this.store); fs8.mkdirSync(path10.dirname(this.storePath), { recursive: true }); fs8.writeFileSync(this.storePath, store); } catch (error) { this.logger.prefixed.debug(String(error)); } } get(filePath) { var _a4, _b2; const fileRelativePath = fastRelativePath(this.rootPath, filePath); const save = this.set.bind(this, filePath, fileRelativePath); try { const file = (_b2 = (_a4 = this.store[this.version]) == null ? void 0 : _a4.files) == null ? void 0 : _b2[fileRelativePath]; if (!file || !isArray3(file) || file.length !== 2) return { save }; const [hash, formatted] = file; if (!isString3(hash) || !isBoolean2(formatted)) return { save }; const content = fs8.readFileSync(filePath); const fileHash = sha1base64(content); if (hash !== fileHash) return { content, save }; return { formatted, content, save }; } catch (error) { this.logger.prefixed.debug(String(error)); return { save }; } } set(filePath, fileRelativePath, fileFormatted, fileContentExpected) { var _a4, _b2; try { const version = (_a4 = this.store)[_b2 = this.version] || (_a4[_b2] = {}); const files = version.files || (version.files = {}); const hash = sha1base64(fileContentExpected); version.modified = Date.now(); files[fileRelativePath] = [hash, fileFormatted]; this.dirty = true; } catch (error) { this.logger.prefixed.debug(String(error)); } } async has(filePath, isIgnored) { var _a5, _b3; var _a4, _b2; const fileRelativePath = fastRelativePath(this.rootPath, filePath); const file = (_b3 = (_a5 = this.store[this.version]) == null ? void 0 : _a5.files) == null ? void 0 : _b3[fileRelativePath]; if (isUndefined4(file)) { const ignored = await isIgnored(); if (ignored) { const version = (_a4 = this.store)[_b2 = this.version] || (_a4[_b2] = {}); const files = version.files || (version.files = {}); files[fileRelativePath] = false; this.dirty = true; return false; } else { return true; } } else { return !!file; } } }; cache_default = Cache; } }); // node_modules/ini-simple-parser/dist/utils.js var inferBoolean, inferNull, inferNumber, inferString, isString4, stripComments; var init_utils13 = __esm({ "node_modules/ini-simple-parser/dist/utils.js"() { inferBoolean = (value) => { if (!isString4(value) || !value.length) return value; if (value === "true" || value === "TRUE") return true; if (value === "false" || value === "FALSE") return false; return value; }; inferNull = (value) => { if (!isString4(value) || !value.length) return value; if (value === "null" || value === "NULL") return null; return value; }; inferNumber = (value) => { if (!isString4(value) || !value.length) return value; const firstChar = value.charCodeAt(0); if (firstChar !== 43 && firstChar !== 45 && firstChar !== 46 && (firstChar < 48 || firstChar > 57)) return value; const number = Number(value); if (!Number.isNaN(number)) value = number; return value; }; inferString = (value) => { if (!isString4(value) || !value.length) return value; const firstChar = value[0]; const lastChar = value[value.length - 1]; if (firstChar === "'" && lastChar === "'") return value.slice(1, -1); if (firstChar === '"' && lastChar === '"') return value.slice(1, -1); return value; }; isString4 = (value) => { return typeof value === "string"; }; stripComments = (value) => { if (!isString4(value) || !value.length) return value; const comment1Index = value.indexOf("#"); const comment2Index = value.indexOf(";"); const commentIndex = comment1Index >= 0 ? comment2Index >= 0 ? Math.min(comment1Index, comment2Index) : comment1Index : comment2Index; if (commentIndex < 0) return value; value = value.slice(0, commentIndex).trimEnd(); return value; }; } }); // node_modules/ini-simple-parser/dist/index.js var parse2, dist_default24; var init_dist27 = __esm({ "node_modules/ini-simple-parser/dist/index.js"() { init_utils13(); parse2 = (input, options = {}) => { const COMMENT1 = 35; const COMMENT2 = 59; const SECTION_START = 91; const SECTION_END = 93; const INFER_BOOLEANS = !!options.inferBooleans; const INFER_NULLS = !!options.inferNulls; const INFER_NUMBERS = !!options.inferNumbers; const INFER_STRINGS = !!options.inferStrings; const INLINE_COMMENTS = !!options.inlineComments; const results = {}; const lines = input.split(/\r?\n|\r/g); let section = results; for (let i = 0, l = lines.length; i < l; i++) { const line2 = lines[i].trim(); if (!line2.length) continue; const firstChar = line2.charCodeAt(0); if (firstChar === COMMENT1 || firstChar === COMMENT2) continue; const lastChar = line2.charCodeAt(line2.length - 1); if (firstChar === SECTION_START) { if (lastChar === SECTION_END) { const key2 = line2.slice(1, -1); section = results[key2] = {}; continue; } else { throw new Error(`Unexpected unclosed section at line ${i + 1}`); } } const delimiterIndex = line2.indexOf("="); if (delimiterIndex >= 0) { let key2 = line2.slice(0, delimiterIndex).trim(); let value = line2.slice(delimiterIndex + 1).trim(); if (INLINE_COMMENTS) { value = stripComments(value); } if (INFER_BOOLEANS) { value = inferBoolean(value); } if (INFER_NULLS) { value = inferNull(value); } if (INFER_NUMBERS) { value = inferNumber(value); } if (INFER_STRINGS) { key2 = inferString(key2); value = inferString(value); } section[`${key2}`] = value; continue; } throw new Error(`Unexpected characters at line ${i + 1}`); } return results; }; dist_default24 = parse2; } }); // node_modules/tiny-editorconfig/dist/utils.js var isBoolean3, isInteger2, isObject3, isObjectEmpty, isString5, isUndefined5; var init_utils14 = __esm({ "node_modules/tiny-editorconfig/dist/utils.js"() { isBoolean3 = (value) => { return typeof value === "boolean"; }; isInteger2 = (value) => { return Number.isInteger(value); }; isObject3 = (value) => { if (value === null) return false; const type2 = typeof value; return type2 === "object" || type2 === "function"; }; isObjectEmpty = (value) => { for (const _ in value) return false; return true; }; isString5 = (value) => { return typeof value === "string"; }; isUndefined5 = (value) => { return typeof value === "undefined"; }; } }); // node_modules/tiny-editorconfig/dist/cast.js var CHARSETS, END_OF_LINES, INDENT_STYLES, isCharset, isEndOfLine, isIndentStyle, cast, cast_default; var init_cast = __esm({ "node_modules/tiny-editorconfig/dist/cast.js"() { init_utils14(); CHARSETS = /* @__PURE__ */ new Set(["latin1", "utf-8", "utf-8-bom", "utf-16be", "utf-16le"]); END_OF_LINES = /* @__PURE__ */ new Set(["cr", "lf", "crlf"]); INDENT_STYLES = /* @__PURE__ */ new Set(["space", "tab"]); isCharset = (value) => { return CHARSETS.has(value); }; isEndOfLine = (value) => { return END_OF_LINES.has(value); }; isIndentStyle = (value) => { return INDENT_STYLES.has(value); }; cast = (results, config = {}, includeOverrides = true) => { var _a4; for (const prop in results) { let value = results[prop]; if (isString5(value)) { value = value.toLowerCase(); if (prop === "charset") { if (!isCharset(value)) continue; config.charset = value; } else if (prop === "end_of_line") { if (!isEndOfLine(value)) continue; config.endOfLine = value; } else if (prop === "indent_style") { if (!isIndentStyle(value)) continue; config.indentStyle = value; } } else if (isBoolean3(value)) { if (prop === "insert_final_newline") { config.insertFinalNewline = value; } else if (prop === "root") { config.root = value; } else if (prop === "trim_trailing_whitespace") { config.trimTrailingWhitespace = value; } } else if (isInteger2(value)) { if (value >= 0) { if (prop === "indent_size") { config.indentSize = value; } else if (prop === "tab_width") { config.tabWidth = value; } } } else if (isObject3(value)) { if (includeOverrides) { config.overrides || (config.overrides = {}); const override = (_a4 = config.overrides)[prop] || (_a4[prop] = {}); cast(value, override, false); if (isObjectEmpty(override)) { delete config.overrides[prop]; if (isObjectEmpty(config.overrides)) { delete config.overrides; } } } } } return config; }; cast_default = cast; } }); // node_modules/tiny-editorconfig/dist/parse.js var parse3, parse_default; var init_parse = __esm({ "node_modules/tiny-editorconfig/dist/parse.js"() { init_dist27(); init_cast(); parse3 = (input) => { return cast_default(dist_default24(input, { inferBooleans: true, inferNumbers: true, inferStrings: true, inlineComments: true })); }; parse_default = parse3; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/range.js var ALPHABET2, int2alpha2, alpha2int2, makeRangeInt2, makeRangePaddedInt2, makeRangeAlpha2; var init_range2 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/range.js"() { ALPHABET2 = "abcdefghijklmnopqrstuvwxyz"; int2alpha2 = (int2) => { let alpha = ""; while (int2 > 0) { const reminder = (int2 - 1) % 26; alpha = ALPHABET2[reminder] + alpha; int2 = Math.floor((int2 - 1) / 26); } return alpha; }; alpha2int2 = (str2) => { let int2 = 0; for (let i = 0, l = str2.length; i < l; i++) { int2 = int2 * 26 + ALPHABET2.indexOf(str2[i]) + 1; } return int2; }; makeRangeInt2 = (start, end) => { if (end < start) return makeRangeInt2(end, start); const range = []; while (start <= end) { range.push(start++); } return range; }; makeRangePaddedInt2 = (start, end, paddingLength) => { return makeRangeInt2(start, end).map((int2) => String(int2).padStart(paddingLength, "0")); }; makeRangeAlpha2 = (start, end) => { return makeRangeInt2(alpha2int2(start), alpha2int2(end)).map(int2alpha2); }; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/utils.js var identity4, makeParser2, memoize4; var init_utils15 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/utils.js"() { init_dist19(); identity4 = (value) => { return value; }; makeParser2 = (grammar) => { return memoize4((input) => { return parse(input, grammar, { memoization: false }).join(""); }); }; memoize4 = (fn) => { const cache3 = {}; return (arg) => { return cache3[arg] ?? (cache3[arg] = fn(arg)); }; }; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/convert/grammar.js var FastPathAll, FastPathSimple, FastPathSimples, Escaped3, Escape2, Passthrough3, NegationOdd2, NegationEven2, Negation2, StarStarBetween2, StarStarStart2, StarStarEnd2, StarStarNone2, StarStar2, StarDouble2, StarSingle2, Star2, Question2, ClassOpen2, ClassClose2, ClassNegation2, ClassRange2, ClassEscape2, ClassPassthrough2, ClassValue2, Class2, RangeOpen2, RangeClose2, RangeNumeric2, RangeAlphaLower2, RangeAlphaUpper2, RangeValue2, Range2, BracesOpen2, BracesClose2, BracesComma2, BracesEscape2, BracesPassthrough2, BracesNested2, BracesValue2, Braces2, Grammar3, grammar_default3; var init_grammar3 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/convert/grammar.js"() { init_dist19(); init_parser3(); init_range2(); init_utils15(); FastPathAll = match(/^\*\*\/\*$/, ".*"); FastPathSimple = match(/^\*\*\/(\*)?([ a-zA-Z0-9._-]+)$/, (_, $1, $2) => `.*${$1 ? "" : "(?:^|/)"}${$2.replaceAll(".", "\\.")}`); FastPathSimples = match(/^\*\*\/(\*)?([ a-zA-Z0-9._-]*)\{([ a-zA-Z0-9._-]+(?:,[ a-zA-Z0-9._-]+)*)\}$/, (_, $1, $2, $3) => `.*${$1 ? "" : "(?:^|/)"}${$2.replaceAll(".", "\\.")}(?:${$3.replaceAll(",", "|").replaceAll(".", "\\.")})`); Escaped3 = match(/\\./, identity4); Escape2 = match(/[$.*+?^(){}[\]\|]/, (char) => `\\${char}`); Passthrough3 = match(/./, identity4); NegationOdd2 = match(/^(?:!!)*!(.*)$/, (_, glob) => `(?!^${parser_default3(glob)}$).*?`); NegationEven2 = match(/^(!!)+/, ""); Negation2 = or([NegationOdd2, NegationEven2]); StarStarBetween2 = match(/\/(\*\*\/)+/, "(?:/.+/|/)"); StarStarStart2 = match(/^(\*\*\/)+/, "(?:^|.*/)"); StarStarEnd2 = match(/\/(\*\*)$/, "(?:/.*|$)"); StarStarNone2 = match(/\*\*/, ".*"); StarStar2 = or([StarStarBetween2, StarStarStart2, StarStarEnd2, StarStarNone2]); StarDouble2 = match(/\*\/(?!\*\*\/)/, "[^/]*/"); StarSingle2 = match(/\*/, "[^/]*"); Star2 = or([StarDouble2, StarSingle2]); Question2 = match("?", "[^/]"); ClassOpen2 = match("[", identity4); ClassClose2 = match("]", identity4); ClassNegation2 = match(/[!^]/, "^/"); ClassRange2 = match(/[a-z]-[a-z]|[0-9]-[0-9]/i, identity4); ClassEscape2 = match(/[$.*+?^(){}[\|]/, (char) => `\\${char}`); ClassPassthrough2 = match(/[^\]]/, identity4); ClassValue2 = or([Escaped3, ClassEscape2, ClassRange2, ClassPassthrough2]); Class2 = and([ClassOpen2, optional(ClassNegation2), star(ClassValue2), ClassClose2]); RangeOpen2 = match("{", "(?:"); RangeClose2 = match("}", ")"); RangeNumeric2 = match(/(\d+)\.\.(\d+)/, (_, $1, $2) => makeRangePaddedInt2(+$1, +$2, Math.min($1.length, $2.length)).join("|")); RangeAlphaLower2 = match(/([a-z]+)\.\.([a-z]+)/, (_, $1, $2) => makeRangeAlpha2($1, $2).join("|")); RangeAlphaUpper2 = match(/([A-Z]+)\.\.([A-Z]+)/, (_, $1, $2) => makeRangeAlpha2($1.toLowerCase(), $2.toLowerCase()).join("|").toUpperCase()); RangeValue2 = or([RangeNumeric2, RangeAlphaLower2, RangeAlphaUpper2]); Range2 = and([RangeOpen2, RangeValue2, RangeClose2]); BracesOpen2 = match("{", "(?:"); BracesClose2 = match("}", ")"); BracesComma2 = match(",", "|"); BracesEscape2 = match(/[$.*+?^(){[\]\|]/, (char) => `\\${char}`); BracesPassthrough2 = match(/[^}]/, identity4); BracesNested2 = lazy(() => Braces2); BracesValue2 = or([StarStar2, Star2, Question2, Class2, Range2, BracesNested2, Escaped3, BracesEscape2, BracesComma2, BracesPassthrough2]); Braces2 = and([BracesOpen2, star(BracesValue2), BracesClose2]); Grammar3 = star(or([FastPathAll, FastPathSimple, FastPathSimples, Negation2, StarStar2, Star2, Question2, Class2, Range2, Braces2, Escaped3, Escape2, Passthrough3])); grammar_default3 = Grammar3; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/convert/parser.js var parser3, parser_default3; var init_parser3 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/convert/parser.js"() { init_grammar3(); init_utils15(); parser3 = makeParser2(grammar_default3); parser_default3 = parser3; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/normalize/grammar.js var Escaped4, Passthrough4, StarStarStar2, StarStarNoLeft2, StarStarNoRight2, Grammar4, grammar_default4; var init_grammar4 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/normalize/grammar.js"() { init_dist19(); init_utils15(); Escaped4 = match(/\\./, identity4); Passthrough4 = match(/./, identity4); StarStarStar2 = match(/\*\*\*+/, "*"); StarStarNoLeft2 = match(/([^/{[(!])\*\*/, (_, $1) => `${$1}*`); StarStarNoRight2 = match(/(^|.)\*\*(?=[^*/)\]}])/, (_, $1) => `${$1}*`); Grammar4 = star(or([Escaped4, StarStarStar2, StarStarNoLeft2, StarStarNoRight2, Passthrough4])); grammar_default4 = Grammar4; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/normalize/parser.js var parser4, parser_default4; var init_parser4 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/normalize/parser.js"() { init_grammar4(); init_utils15(); parser4 = makeParser2(grammar_default4); parser_default4 = parser4; } }); // node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/index.js var zeptomatch2, dist_default25; var init_dist28 = __esm({ "node_modules/tiny-editorconfig/node_modules/zeptomatch/dist/index.js"() { init_parser3(); init_parser4(); zeptomatch2 = (glob, path17) => { const globs = Array.isArray(glob) ? glob : [glob]; if (!globs.length) return false; const res = globs.map(zeptomatch2.compile); const isTrailing = globs.every((glob2) => /(\/(?:\*\*)?|\[\/\])$/.test(glob2)); const normpath = path17.replace(/[\\\/]+/g, "/").replace(/\/$/, isTrailing ? "/" : ""); const isMatch = res.some((re) => re.test(normpath)); return isMatch; }; zeptomatch2.compile = (glob) => { return new RegExp(`^${parser_default3(parser_default4(glob))}$`, "s"); }; zeptomatch2.escape = (glob) => { return glob.replace(/(\\.)|([$.*+?!^(){}[\]\|])|(.)/gs, (_, $1, $2, $3) => $1 || $3 || `\\${$2}`); }; dist_default25 = zeptomatch2; } }); // node_modules/tiny-editorconfig/dist/extend.js var extend, extend_default; var init_extend = __esm({ "node_modules/tiny-editorconfig/dist/extend.js"() { init_utils14(); extend = (target, source2) => { for (const prop in source2) { if (prop === "overrides") continue; const value = source2[prop]; if (isUndefined5(value)) continue; target[prop] = value; } return target; }; extend_default = extend; } }); // node_modules/tiny-editorconfig/dist/resolve.js var resolve3, resolve_default; var init_resolve2 = __esm({ "node_modules/tiny-editorconfig/dist/resolve.js"() { init_dist28(); init_extend(); resolve3 = (configs, filePath) => { const resolved = {}; for (let i = 0, l = configs.length; i < l; i++) { const config = configs[i]; extend_default(resolved, config); const overrides = config.overrides; for (const override in overrides) { const glob = `**/${override}`; if (override !== "*" && !dist_default25(glob, filePath)) continue; extend_default(resolved, overrides[override]); } } return resolved; }; resolve_default = resolve3; } }); // node_modules/tiny-editorconfig/dist/index.js var init_dist29 = __esm({ "node_modules/tiny-editorconfig/dist/index.js"() { init_parse(); init_resolve2(); } }); // node_modules/@prettier/cli/dist/known.js var Known, known_default; var init_known = __esm({ "node_modules/@prettier/cli/dist/known.js"() { Known = class { constructor() { this.filesPaths = /* @__PURE__ */ new Set(); this.filesNames = /* @__PURE__ */ new Set(); this.addFilesPaths = (filesPaths) => { if (!this.filesPaths.size) { this.filesPaths = new Set(filesPaths); } else { for (const filePath of filesPaths) { this.filesPaths.add(filePath); } } }; this.addFilesNames = (filesNames) => { if (!this.filesNames.size) { this.filesNames = new Set(filesNames); } else { for (const fileName of filesNames) { this.filesNames.add(fileName); } } }; this.hasFilePath = (filePath) => { return this.filesPaths.has(filePath); }; this.hasFileName = (fileName) => { return this.filesNames.has(fileName); }; this.reset = () => { this.filesPaths = /* @__PURE__ */ new Set(); this.filesNames = /* @__PURE__ */ new Set(); }; } }; known_default = new Known(); } }); // node_modules/@prettier/cli/dist/config_editorconfig.js import fs9 from "fs/promises"; import path11 from "path"; var getEditorConfig, getEditorConfigsMap, getEditorConfigsUp, getEditorConfigResolved, getEditorConfigFormatOptions; var init_config_editorconfig = __esm({ "node_modules/@prettier/cli/dist/config_editorconfig.js"() { init_dist29(); init_known(); init_utils12(); getEditorConfig = dist_default13((folderPath, filesNames) => { for (let i = 0, l = filesNames.length; i < l; i++) { const fileName = filesNames[i]; const filePath = fastJoinedPath(folderPath, fileName); if (!known_default.hasFilePath(filePath)) continue; return fs9.readFile(filePath, "utf8").then(parse_default).catch(noop2); } }); getEditorConfigsMap = async (foldersPaths, filesNames) => { const configs = await Promise.all(foldersPaths.map((folderPath) => getEditorConfig(folderPath, filesNames))); const map2 = zipObjectUnless(foldersPaths, configs, isUndefined4); return map2; }; getEditorConfigsUp = dist_default13(async (folderPath, filesNames) => { const config = await getEditorConfig(folderPath, filesNames); const folderPathUp = path11.dirname(folderPath); const configsUp = folderPath !== folderPathUp ? await getEditorConfigsUp(folderPathUp, filesNames) : []; const configs = config ? [...configsUp, config] : configsUp; const lastRootIndex = findLastIndex(configs, (config2) => config2.root); return lastRootIndex > 0 ? configs.slice(lastRootIndex) : configs; }); getEditorConfigResolved = async (filePath, filesNames) => { const folderPath = path11.dirname(filePath); const configs = await getEditorConfigsUp(folderPath, filesNames); const config = resolve_default(configs, filePath); return config; }; getEditorConfigFormatOptions = (config) => { const formatOptions = {}; if ("endOfLine" in config) { formatOptions.endOfLine = config.endOfLine; } if ("indentSize" in config || "tabWidth" in config) { formatOptions.tabWidth = config.indentSize ?? config.tabWidth; } if ("indentStyle" in config) { formatOptions.useTabs = config.indentStyle === "tab"; } return formatOptions; }; } }); // node_modules/string-escape-regex/dist/index.js var unescapedRe, escape2, dist_default26; var init_dist30 = __esm({ "node_modules/string-escape-regex/dist/index.js"() { unescapedRe = /[\\^$.*+?()[\]{}|]/g; escape2 = (str2) => { return str2.replace(unescapedRe, (char) => `\\${char}`); }; dist_default26 = escape2; } }); // node_modules/fast-ignore/dist/glob/grammar.js var escape3, passthrough, Escaped5, Escape3, Passthrough5, Star3, Question3, ClassOpen3, ClassClose3, ClassNegation3, ClassRange3, ClassEscape3, ClassPassthrough3, ClassValue3, Class3, Grammar5, grammar_default5; var init_grammar5 = __esm({ "node_modules/fast-ignore/dist/glob/grammar.js"() { init_dist19(); escape3 = (char) => `\\${char}`; passthrough = (match2) => match2; Escaped5 = match(/\\./, passthrough); Escape3 = match(/[$.*+?^(){}[\]\|]/, escape3); Passthrough5 = match(/./, passthrough); Star3 = match(/\*+/, ".*"); Question3 = match("?", ".?"); ClassOpen3 = match("[", passthrough); ClassClose3 = match("]", passthrough); ClassNegation3 = match(/[!^]/, "^"); ClassRange3 = match(/[0-9a-z]-[0-9a-z]/i, passthrough); ClassEscape3 = match(/[$.*+?^(){}[\|]/, escape3); ClassPassthrough3 = match(/[^\]]/, passthrough); ClassValue3 = or([Escaped5, ClassEscape3, ClassRange3, ClassPassthrough3]); Class3 = and([ClassOpen3, optional(ClassNegation3), star(ClassValue3), ClassClose3]); Grammar5 = star(or([Star3, Question3, Class3, Escaped5, Escape3, Passthrough5])); grammar_default5 = Grammar5; } }); // node_modules/fast-ignore/dist/glob/parse.js var _parse, parse_default2; var init_parse2 = __esm({ "node_modules/fast-ignore/dist/glob/parse.js"() { init_dist19(); init_grammar5(); _parse = (glob, caseSensitive) => { const source2 = parse(glob, grammar_default5, { memoization: false }).join(""); const flags = caseSensitive ? "" : "i"; const re = new RegExp(`^${source2}$`, flags); return re; }; parse_default2 = _parse; } }); // node_modules/fast-ignore/dist/glob/matcher.js var STAR_RE, STATIC_RE, FLEXIBLE_START_RE, FLEXIBLE_END_RE, matcher, matcher_default; var init_matcher = __esm({ "node_modules/fast-ignore/dist/glob/matcher.js"() { init_dist30(); init_parse2(); STAR_RE = /^\*+$/; STATIC_RE = /^[ a-zA-Z0-9/._-]*$/; FLEXIBLE_START_RE = /^\*+([ a-zA-Z0-9/._-]*)$/; FLEXIBLE_END_RE = /^([ a-zA-Z0-9/._-]*)\*+$/; matcher = (glob, caseSensitive) => { var _a4, _b2; if (STAR_RE.test(glob)) { return () => true; } if (STATIC_RE.test(glob)) { if (caseSensitive) { return (segment) => segment === glob; } else { const globLowerCase = glob.toLowerCase(); const globLength = globLowerCase.length; return (segment) => segment.length === globLength && segment.toLowerCase() === globLowerCase; } } const end = (_a4 = FLEXIBLE_START_RE.exec(glob)) == null ? void 0 : _a4[1]; if (end) { if (caseSensitive) { return (segment) => segment.endsWith(end); } else { const re2 = new RegExp(`${dist_default26(end)}$`, "i"); return (segment) => re2.test(segment); } } const start = (_b2 = FLEXIBLE_END_RE.exec(glob)) == null ? void 0 : _b2[1]; if (start) { if (caseSensitive) { return (segment) => segment.startsWith(start); } else { const re2 = new RegExp(`^${dist_default26(start)}`, "i"); return (segment) => re2.test(segment); } } const re = parse_default2(glob, caseSensitive); return (segment) => re.test(segment); }; matcher_default = matcher; } }); // node_modules/fast-ignore/dist/ignore/compile.js var compile, compile_default; var init_compile = __esm({ "node_modules/fast-ignore/dist/ignore/compile.js"() { init_matcher(); compile = (tiers, options) => { const caseSensitive = options.caseSensitive ?? false; const root2 = { id: "", globstar: false, negative: false, strength: -1, tier: -1, match: () => false, children: [] }; let scounter = 0; for (let ti = 0, tl = tiers.length; ti < tl; ti++) { const globs = tiers[ti]; const tier = ti; for (let gi = 0, gl = globs.length; gi < gl; gi++) { let content = globs[gi].content; let parent = root2; content = content.replace(/\/$/, ""); content = content.replace(/(^|\/)\*\*\/(?:\*\*(\/|$))+/g, "$1**$2"); content = content.startsWith("/") ? content.slice(1) : content.startsWith("**/") || content.slice(0, -1).includes("/") ? content : `**/${content}`; const segments = content.split("/"); for (let si = 0, sl = segments.length; si < sl; si++) { const id = segments[si]; const globstar = id === "**"; const terminal = si === sl - 1; const negative = globs[gi].negative; const strength = terminal ? scounter++ : -1; const match2 = matcher_default(id, caseSensitive); const children = []; const node = { id, globstar, negative, strength, tier, match: match2, children }; const nodeExisting = parent.children.find((node2) => node2.id === id); if (nodeExisting) { if (tier === nodeExisting.tier && strength >= nodeExisting.strength || tier > nodeExisting.tier && (nodeExisting.strength < 0 || nodeExisting.negative)) { nodeExisting.negative = negative; nodeExisting.strength = strength; nodeExisting.tier = tier; } parent = nodeExisting; } else { parent.children.push(node); parent = node; } } } } return root2; }; compile_default = compile; } }); // node_modules/fast-ignore/dist/ignore/parse.js var parse4, parse_default3; var init_parse3 = __esm({ "node_modules/fast-ignore/dist/ignore/parse.js"() { parse4 = (ignore) => { const lines = ignore.split(/\r?\n|\r/g); const globs = []; for (let i = 0, l = lines.length; i < l; i++) { let content = lines[i]; if (!content.trim()) continue; if (content.startsWith("#")) continue; const negative = content.startsWith("!"); content = content.replace(/^\\(!|#)/, "$1"); content = content.replace(/((?:\\\s)*)\s*$/, ($0, $1) => $1.replaceAll("\\", "")); content = negative ? content.slice(1) : content; const glob = { content, negative }; globs.push(glob); } return globs; }; parse_default3 = parse4; } }); // node_modules/fast-ignore/dist/ignore/tick.js var tick, tick_default; var init_tick = __esm({ "node_modules/fast-ignore/dist/ignore/tick.js"() { tick = (nodes, segment) => { const nodesCurr = nodes.slice(); const nodesNext = []; let negative = false; let strength = -1; for (let ni = 0; ni < nodesCurr.length; ni++) { const node = nodesCurr[ni]; const { children } = node; for (let ci = 0, cl = children.length; ci < cl; ci++) { const nodeNext = children[ci]; if (!nodeNext.match(segment)) continue; if (nodeNext.strength >= strength) { negative = nodeNext.negative; strength = nodeNext.strength; } if (nodeNext.children.length) { if (nodeNext.globstar) { nodesCurr.push(nodeNext); } else { nodesNext.push(nodeNext); } } } if (node.globstar) { if (node.strength >= strength) { negative = node.negative; strength = node.strength; } nodesNext.push(node); } } return [nodesNext, negative, strength]; }; tick_default = tick; } }); // node_modules/fast-ignore/dist/ignore/matcher.js var matcher2, matcher_default2; var init_matcher2 = __esm({ "node_modules/fast-ignore/dist/ignore/matcher.js"() { init_compile(); init_parse3(); init_tick(); matcher2 = (ignore, options = {}) => { const ignores = Array.isArray(ignore) ? ignore : [ignore]; const tiers = ignores.map(parse_default3).filter((tier) => !!tier.length); if (!tiers.length) return () => false; const root2 = compile_default(tiers, options); const cache3 = []; return (fileRelativePath) => { const sep = fileRelativePath.includes("/") ? "/" : "\\"; const length = fileRelativePath.length; let nodes = [root2]; let cacheable = true; let segmentIndex = 0; let segmentIndexNext = 0; let segmentNth = -1; let segment = ""; while (segmentIndex < length) { segmentIndexNext = fileRelativePath.indexOf(sep, segmentIndex); segmentIndexNext = segmentIndexNext === -1 ? length : segmentIndexNext; segment = fileRelativePath.slice(segmentIndex, segmentIndexNext); segmentIndex = segmentIndexNext + 1; if (!segment.length) continue; segmentNth += 1; const cached = segmentNth < cache3.length - 1 ? cache3[segmentNth] : void 0; const cachedResult = cacheable && cached && cached[0] === segment ? cached[1] : void 0; const result = cachedResult || tick_default(nodes, segment); cacheable = !!cachedResult; if (!cachedResult) { if (cached) { cached[0] = segment; cached[1] = result; } else { cache3[segmentNth] = [segment, result]; } } if (result[2] >= 0 && !result[1]) return true; nodes = result[0]; if (!nodes.length) return false; } return false; }; }; matcher_default2 = matcher2; } }); // node_modules/fast-ignore/dist/index.js var dist_default27; var init_dist31 = __esm({ "node_modules/fast-ignore/dist/index.js"() { init_matcher2(); dist_default27 = matcher_default2; } }); // node_modules/@prettier/cli/dist/config_ignore.js import fs10 from "fs/promises"; import path12 from "path"; var getIgnoreContent, getIgnoresContent, getIgnoresContentMap, getIgnoreBy, getIgnoreBys, getIgnores, getIgnoresUp, getIgnoreResolved; var init_config_ignore = __esm({ "node_modules/@prettier/cli/dist/config_ignore.js"() { init_dist31(); init_known(); init_utils12(); getIgnoreContent = (folderPath, fileName) => { const filePath = fastJoinedPath(folderPath, fileName); if (!known_default.hasFilePath(filePath)) return; return fs10.readFile(filePath, "utf8").catch(noop2); }; getIgnoresContent = dist_default13(async (folderPath, filesNames) => { const contentsRaw = await Promise.all(filesNames.map((fileName) => getIgnoreContent(folderPath, fileName))); const contents = contentsRaw.filter(isString3); if (!contents.length) return; return contents; }); getIgnoresContentMap = async (foldersPaths, filesNames) => { const contents = await Promise.all(foldersPaths.map((folderPath) => getIgnoresContent(folderPath, filesNames))); const map2 = zipObjectUnless(foldersPaths, contents, isUndefined4); return map2; }; getIgnoreBy = (folderPath, filesContents) => { const ignore = dist_default27(filesContents); return (filePath) => { const fileRelativePath = fastRelativeChildPath(folderPath, filePath); return !!fileRelativePath && ignore(fileRelativePath); }; }; getIgnoreBys = (foldersPaths, filesContents) => { if (!foldersPaths.length) return; const ignores = foldersPaths.map((folderPath, index) => getIgnoreBy(folderPath, filesContents[index])); const ignore = someOf(ignores); return ignore; }; getIgnores = dist_default13(async (folderPath, filesNames) => { const contents = await getIgnoresContent(folderPath, filesNames); if (!(contents == null ? void 0 : contents.length)) return; const ignore = getIgnoreBy(folderPath, contents); return ignore; }); getIgnoresUp = dist_default13(async (folderPath, filesNames) => { const ignore = await getIgnores(folderPath, filesNames); const folderPathUp = path12.dirname(folderPath); const ignoreUp = folderPath !== folderPathUp ? await getIgnoresUp(folderPathUp, filesNames) : void 0; const ignores = ignore ? ignoreUp ? [ignore, ignoreUp] : [ignore] : ignoreUp ? [ignoreUp] : []; if (!ignores.length) return; const ignoreAll = someOf(ignores); return ignoreAll; }); getIgnoreResolved = async (filePath, filesNames) => { const folderPath = path12.dirname(filePath); const ignore = await getIgnoresUp(folderPath, filesNames); const ignored = !!(ignore == null ? void 0 : ignore(filePath)); return ignored; }; } }); // node_modules/json5/dist/index.mjs var dist_exports2 = {}; __export(dist_exports2, { default: () => dist_default28 }); function internalize(holder, name, reviver) { const value = holder[name]; if (value != null && typeof value === "object") { if (Array.isArray(value)) { for (let i = 0; i < value.length; i++) { const key2 = String(i); const replacement = internalize(value, key2, reviver); if (replacement === void 0) { delete value[key2]; } else { Object.defineProperty(value, key2, { value: replacement, writable: true, enumerable: true, configurable: true }); } } } else { for (const key2 in value) { const replacement = internalize(value, key2, reviver); if (replacement === void 0) { delete value[key2]; } else { Object.defineProperty(value, key2, { value: replacement, writable: true, enumerable: true, configurable: true }); } } } } return reviver.call(holder, name, value); } function lex() { lexState = "default"; buffer = ""; doubleQuote = false; sign = 1; for (; ; ) { c = peek(); const token2 = lexStates[lexState](); if (token2) { return token2; } } } function peek() { if (source[pos]) { return String.fromCodePoint(source.codePointAt(pos)); } } function read2() { const c2 = peek(); if (c2 === "\n") { line++; column = 0; } else if (c2) { column += c2.length; } else { column++; } if (c2) { pos += c2.length; } return c2; } function newToken(type2, value) { return { type: type2, value, line, column }; } function literal(s) { for (const c2 of s) { const p = peek(); if (p !== c2) { throw invalidChar(read2()); } read2(); } } function escape4() { const c2 = peek(); switch (c2) { case "b": read2(); return "\b"; case "f": read2(); return "\f"; case "n": read2(); return "\n"; case "r": read2(); return "\r"; case "t": read2(); return " "; case "v": read2(); return "\v"; case "0": read2(); if (util.isDigit(peek())) { throw invalidChar(read2()); } return "\0"; case "x": read2(); return hexEscape(); case "u": read2(); return unicodeEscape(); case "\n": case "\u2028": case "\u2029": read2(); return ""; case "\r": read2(); if (peek() === "\n") { read2(); } return ""; case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": throw invalidChar(read2()); case void 0: throw invalidChar(read2()); } return read2(); } function hexEscape() { let buffer2 = ""; let c2 = peek(); if (!util.isHexDigit(c2)) { throw invalidChar(read2()); } buffer2 += read2(); c2 = peek(); if (!util.isHexDigit(c2)) { throw invalidChar(read2()); } buffer2 += read2(); return String.fromCodePoint(parseInt(buffer2, 16)); } function unicodeEscape() { let buffer2 = ""; let count = 4; while (count-- > 0) { const c2 = peek(); if (!util.isHexDigit(c2)) { throw invalidChar(read2()); } buffer2 += read2(); } return String.fromCodePoint(parseInt(buffer2, 16)); } function push() { let value; switch (token.type) { case "punctuator": switch (token.value) { case "{": value = {}; break; case "[": value = []; break; } break; case "null": case "boolean": case "numeric": case "string": value = token.value; break; } if (root === void 0) { root = value; } else { const parent = stack[stack.length - 1]; if (Array.isArray(parent)) { parent.push(value); } else { Object.defineProperty(parent, key, { value, writable: true, enumerable: true, configurable: true }); } } if (value !== null && typeof value === "object") { stack.push(value); if (Array.isArray(value)) { parseState = "beforeArrayValue"; } else { parseState = "beforePropertyName"; } } else { const current = stack[stack.length - 1]; if (current == null) { parseState = "end"; } else if (Array.isArray(current)) { parseState = "afterArrayValue"; } else { parseState = "afterPropertyValue"; } } } function pop() { stack.pop(); const current = stack[stack.length - 1]; if (current == null) { parseState = "end"; } else if (Array.isArray(current)) { parseState = "afterArrayValue"; } else { parseState = "afterPropertyValue"; } } function invalidChar(c2) { if (c2 === void 0) { return syntaxError(`JSON5: invalid end of input at ${line}:${column}`); } return syntaxError(`JSON5: invalid character '${formatChar(c2)}' at ${line}:${column}`); } function invalidEOF() { return syntaxError(`JSON5: invalid end of input at ${line}:${column}`); } function invalidIdentifier() { column -= 5; return syntaxError(`JSON5: invalid identifier character at ${line}:${column}`); } function separatorChar(c2) { console.warn(`JSON5: '${formatChar(c2)}' in strings is not valid ECMAScript; consider escaping`); } function formatChar(c2) { const replacements = { "'": "\\'", '"': '\\"', "\\": "\\\\", "\b": "\\b", "\f": "\\f", "\n": "\\n", "\r": "\\r", " ": "\\t", "\v": "\\v", "\0": "\\0", "\u2028": "\\u2028", "\u2029": "\\u2029" }; if (replacements[c2]) { return replacements[c2]; } if (c2 < " ") { const hexString = c2.charCodeAt(0).toString(16); return "\\x" + ("00" + hexString).substring(hexString.length); } return c2; } function syntaxError(message) { const err = new SyntaxError(message); err.lineNumber = line; err.columnNumber = column; return err; } var Space_Separator, ID_Start, ID_Continue, unicode, util, source, parseState, stack, pos, line, column, token, key, root, parse5, lexState, buffer, doubleQuote, sign, c, lexStates, parseStates, stringify2, JSON5, lib, dist_default28; var init_dist32 = __esm({ "node_modules/json5/dist/index.mjs"() { Space_Separator = /[\u1680\u2000-\u200A\u202F\u205F\u3000]/; ID_Start = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/; ID_Continue = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/; unicode = { Space_Separator, ID_Start, ID_Continue }; util = { isSpaceSeparator(c2) { return typeof c2 === "string" && unicode.Space_Separator.test(c2); }, isIdStartChar(c2) { return typeof c2 === "string" && (c2 >= "a" && c2 <= "z" || c2 >= "A" && c2 <= "Z" || c2 === "$" || c2 === "_" || unicode.ID_Start.test(c2)); }, isIdContinueChar(c2) { return typeof c2 === "string" && (c2 >= "a" && c2 <= "z" || c2 >= "A" && c2 <= "Z" || c2 >= "0" && c2 <= "9" || c2 === "$" || c2 === "_" || c2 === "\u200C" || c2 === "\u200D" || unicode.ID_Continue.test(c2)); }, isDigit(c2) { return typeof c2 === "string" && /[0-9]/.test(c2); }, isHexDigit(c2) { return typeof c2 === "string" && /[0-9A-Fa-f]/.test(c2); } }; parse5 = function parse6(text, reviver) { source = String(text); parseState = "start"; stack = []; pos = 0; line = 1; column = 0; token = void 0; key = void 0; root = void 0; do { token = lex(); parseStates[parseState](); } while (token.type !== "eof"); if (typeof reviver === "function") { return internalize({ "": root }, "", reviver); } return root; }; lexStates = { default() { switch (c) { case " ": case "\v": case "\f": case " ": case "\xA0": case "\uFEFF": case "\n": case "\r": case "\u2028": case "\u2029": read2(); return; case "/": read2(); lexState = "comment"; return; case void 0: read2(); return newToken("eof"); } if (util.isSpaceSeparator(c)) { read2(); return; } return lexStates[parseState](); }, comment() { switch (c) { case "*": read2(); lexState = "multiLineComment"; return; case "/": read2(); lexState = "singleLineComment"; return; } throw invalidChar(read2()); }, multiLineComment() { switch (c) { case "*": read2(); lexState = "multiLineCommentAsterisk"; return; case void 0: throw invalidChar(read2()); } read2(); }, multiLineCommentAsterisk() { switch (c) { case "*": read2(); return; case "/": read2(); lexState = "default"; return; case void 0: throw invalidChar(read2()); } read2(); lexState = "multiLineComment"; }, singleLineComment() { switch (c) { case "\n": case "\r": case "\u2028": case "\u2029": read2(); lexState = "default"; return; case void 0: read2(); return newToken("eof"); } read2(); }, value() { switch (c) { case "{": case "[": return newToken("punctuator", read2()); case "n": read2(); literal("ull"); return newToken("null", null); case "t": read2(); literal("rue"); return newToken("boolean", true); case "f": read2(); literal("alse"); return newToken("boolean", false); case "-": case "+": if (read2() === "-") { sign = -1; } lexState = "sign"; return; case ".": buffer = read2(); lexState = "decimalPointLeading"; return; case "0": buffer = read2(); lexState = "zero"; return; case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": buffer = read2(); lexState = "decimalInteger"; return; case "I": read2(); literal("nfinity"); return newToken("numeric", Infinity); case "N": read2(); literal("aN"); return newToken("numeric", NaN); case '"': case "'": doubleQuote = read2() === '"'; buffer = ""; lexState = "string"; return; } throw invalidChar(read2()); }, identifierNameStartEscape() { if (c !== "u") { throw invalidChar(read2()); } read2(); const u = unicodeEscape(); switch (u) { case "$": case "_": break; default: if (!util.isIdStartChar(u)) { throw invalidIdentifier(); } break; } buffer += u; lexState = "identifierName"; }, identifierName() { switch (c) { case "$": case "_": case "\u200C": case "\u200D": buffer += read2(); return; case "\\": read2(); lexState = "identifierNameEscape"; return; } if (util.isIdContinueChar(c)) { buffer += read2(); return; } return newToken("identifier", buffer); }, identifierNameEscape() { if (c !== "u") { throw invalidChar(read2()); } read2(); const u = unicodeEscape(); switch (u) { case "$": case "_": case "\u200C": case "\u200D": break; default: if (!util.isIdContinueChar(u)) { throw invalidIdentifier(); } break; } buffer += u; lexState = "identifierName"; }, sign() { switch (c) { case ".": buffer = read2(); lexState = "decimalPointLeading"; return; case "0": buffer = read2(); lexState = "zero"; return; case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": buffer = read2(); lexState = "decimalInteger"; return; case "I": read2(); literal("nfinity"); return newToken("numeric", sign * Infinity); case "N": read2(); literal("aN"); return newToken("numeric", NaN); } throw invalidChar(read2()); }, zero() { switch (c) { case ".": buffer += read2(); lexState = "decimalPoint"; return; case "e": case "E": buffer += read2(); lexState = "decimalExponent"; return; case "x": case "X": buffer += read2(); lexState = "hexadecimal"; return; } return newToken("numeric", sign * 0); }, decimalInteger() { switch (c) { case ".": buffer += read2(); lexState = "decimalPoint"; return; case "e": case "E": buffer += read2(); lexState = "decimalExponent"; return; } if (util.isDigit(c)) { buffer += read2(); return; } return newToken("numeric", sign * Number(buffer)); }, decimalPointLeading() { if (util.isDigit(c)) { buffer += read2(); lexState = "decimalFraction"; return; } throw invalidChar(read2()); }, decimalPoint() { switch (c) { case "e": case "E": buffer += read2(); lexState = "decimalExponent"; return; } if (util.isDigit(c)) { buffer += read2(); lexState = "decimalFraction"; return; } return newToken("numeric", sign * Number(buffer)); }, decimalFraction() { switch (c) { case "e": case "E": buffer += read2(); lexState = "decimalExponent"; return; } if (util.isDigit(c)) { buffer += read2(); return; } return newToken("numeric", sign * Number(buffer)); }, decimalExponent() { switch (c) { case "+": case "-": buffer += read2(); lexState = "decimalExponentSign"; return; } if (util.isDigit(c)) { buffer += read2(); lexState = "decimalExponentInteger"; return; } throw invalidChar(read2()); }, decimalExponentSign() { if (util.isDigit(c)) { buffer += read2(); lexState = "decimalExponentInteger"; return; } throw invalidChar(read2()); }, decimalExponentInteger() { if (util.isDigit(c)) { buffer += read2(); return; } return newToken("numeric", sign * Number(buffer)); }, hexadecimal() { if (util.isHexDigit(c)) { buffer += read2(); lexState = "hexadecimalInteger"; return; } throw invalidChar(read2()); }, hexadecimalInteger() { if (util.isHexDigit(c)) { buffer += read2(); return; } return newToken("numeric", sign * Number(buffer)); }, string() { switch (c) { case "\\": read2(); buffer += escape4(); return; case '"': if (doubleQuote) { read2(); return newToken("string", buffer); } buffer += read2(); return; case "'": if (!doubleQuote) { read2(); return newToken("string", buffer); } buffer += read2(); return; case "\n": case "\r": throw invalidChar(read2()); case "\u2028": case "\u2029": separatorChar(c); break; case void 0: throw invalidChar(read2()); } buffer += read2(); }, start() { switch (c) { case "{": case "[": return newToken("punctuator", read2()); } lexState = "value"; }, beforePropertyName() { switch (c) { case "$": case "_": buffer = read2(); lexState = "identifierName"; return; case "\\": read2(); lexState = "identifierNameStartEscape"; return; case "}": return newToken("punctuator", read2()); case '"': case "'": doubleQuote = read2() === '"'; lexState = "string"; return; } if (util.isIdStartChar(c)) { buffer += read2(); lexState = "identifierName"; return; } throw invalidChar(read2()); }, afterPropertyName() { if (c === ":") { return newToken("punctuator", read2()); } throw invalidChar(read2()); }, beforePropertyValue() { lexState = "value"; }, afterPropertyValue() { switch (c) { case ",": case "}": return newToken("punctuator", read2()); } throw invalidChar(read2()); }, beforeArrayValue() { if (c === "]") { return newToken("punctuator", read2()); } lexState = "value"; }, afterArrayValue() { switch (c) { case ",": case "]": return newToken("punctuator", read2()); } throw invalidChar(read2()); }, end() { throw invalidChar(read2()); } }; parseStates = { start() { if (token.type === "eof") { throw invalidEOF(); } push(); }, beforePropertyName() { switch (token.type) { case "identifier": case "string": key = token.value; parseState = "afterPropertyName"; return; case "punctuator": pop(); return; case "eof": throw invalidEOF(); } }, afterPropertyName() { if (token.type === "eof") { throw invalidEOF(); } parseState = "beforePropertyValue"; }, beforePropertyValue() { if (token.type === "eof") { throw invalidEOF(); } push(); }, beforeArrayValue() { if (token.type === "eof") { throw invalidEOF(); } if (token.type === "punctuator" && token.value === "]") { pop(); return; } push(); }, afterPropertyValue() { if (token.type === "eof") { throw invalidEOF(); } switch (token.value) { case ",": parseState = "beforePropertyName"; return; case "}": pop(); } }, afterArrayValue() { if (token.type === "eof") { throw invalidEOF(); } switch (token.value) { case ",": parseState = "beforeArrayValue"; return; case "]": pop(); } }, end() { } }; stringify2 = function stringify3(value, replacer, space) { const stack2 = []; let indent = ""; let propertyList; let replacerFunc; let gap = ""; let quote; if (replacer != null && typeof replacer === "object" && !Array.isArray(replacer)) { space = replacer.space; quote = replacer.quote; replacer = replacer.replacer; } if (typeof replacer === "function") { replacerFunc = replacer; } else if (Array.isArray(replacer)) { propertyList = []; for (const v of replacer) { let item; if (typeof v === "string") { item = v; } else if (typeof v === "number" || v instanceof String || v instanceof Number) { item = String(v); } if (item !== void 0 && propertyList.indexOf(item) < 0) { propertyList.push(item); } } } if (space instanceof Number) { space = Number(space); } else if (space instanceof String) { space = String(space); } if (typeof space === "number") { if (space > 0) { space = Math.min(10, Math.floor(space)); gap = " ".substr(0, space); } } else if (typeof space === "string") { gap = space.substr(0, 10); } return serializeProperty("", { "": value }); function serializeProperty(key2, holder) { let value2 = holder[key2]; if (value2 != null) { if (typeof value2.toJSON5 === "function") { value2 = value2.toJSON5(key2); } else if (typeof value2.toJSON === "function") { value2 = value2.toJSON(key2); } } if (replacerFunc) { value2 = replacerFunc.call(holder, key2, value2); } if (value2 instanceof Number) { value2 = Number(value2); } else if (value2 instanceof String) { value2 = String(value2); } else if (value2 instanceof Boolean) { value2 = value2.valueOf(); } switch (value2) { case null: return "null"; case true: return "true"; case false: return "false"; } if (typeof value2 === "string") { return quoteString(value2, false); } if (typeof value2 === "number") { return String(value2); } if (typeof value2 === "object") { return Array.isArray(value2) ? serializeArray(value2) : serializeObject(value2); } return void 0; } function quoteString(value2) { const quotes = { "'": 0.1, '"': 0.2 }; const replacements = { "'": "\\'", '"': '\\"', "\\": "\\\\", "\b": "\\b", "\f": "\\f", "\n": "\\n", "\r": "\\r", " ": "\\t", "\v": "\\v", "\0": "\\0", "\u2028": "\\u2028", "\u2029": "\\u2029" }; let product = ""; for (let i = 0; i < value2.length; i++) { const c2 = value2[i]; switch (c2) { case "'": case '"': quotes[c2]++; product += c2; continue; case "\0": if (util.isDigit(value2[i + 1])) { product += "\\x00"; continue; } } if (replacements[c2]) { product += replacements[c2]; continue; } if (c2 < " ") { let hexString = c2.charCodeAt(0).toString(16); product += "\\x" + ("00" + hexString).substring(hexString.length); continue; } product += c2; } const quoteChar = quote || Object.keys(quotes).reduce((a, b) => quotes[a] < quotes[b] ? a : b); product = product.replace(new RegExp(quoteChar, "g"), replacements[quoteChar]); return quoteChar + product + quoteChar; } function serializeObject(value2) { if (stack2.indexOf(value2) >= 0) { throw TypeError("Converting circular structure to JSON5"); } stack2.push(value2); let stepback = indent; indent = indent + gap; let keys = propertyList || Object.keys(value2); let partial = []; for (const key2 of keys) { const propertyString = serializeProperty(key2, value2); if (propertyString !== void 0) { let member = serializeKey(key2) + ":"; if (gap !== "") { member += " "; } member += propertyString; partial.push(member); } } let final; if (partial.length === 0) { final = "{}"; } else { let properties; if (gap === "") { properties = partial.join(","); final = "{" + properties + "}"; } else { let separator = ",\n" + indent; properties = partial.join(separator); final = "{\n" + indent + properties + ",\n" + stepback + "}"; } } stack2.pop(); indent = stepback; return final; } function serializeKey(key2) { if (key2.length === 0) { return quoteString(key2, true); } const firstChar = String.fromCodePoint(key2.codePointAt(0)); if (!util.isIdStartChar(firstChar)) { return quoteString(key2, true); } for (let i = firstChar.length; i < key2.length; i++) { if (!util.isIdContinueChar(String.fromCodePoint(key2.codePointAt(i)))) { return quoteString(key2, true); } } return key2; } function serializeArray(value2) { if (stack2.indexOf(value2) >= 0) { throw TypeError("Converting circular structure to JSON5"); } stack2.push(value2); let stepback = indent; indent = indent + gap; let partial = []; for (let i = 0; i < value2.length; i++) { const propertyString = serializeProperty(String(i), value2); partial.push(propertyString !== void 0 ? propertyString : "null"); } let final; if (partial.length === 0) { final = "[]"; } else { if (gap === "") { let properties = partial.join(","); final = "[" + properties + "]"; } else { let separator = ",\n" + indent; let properties = partial.join(separator); final = "[\n" + indent + properties + ",\n" + stepback + "]"; } } stack2.pop(); indent = stepback; return final; } }; JSON5 = { parse: parse5, stringify: stringify2 }; lib = JSON5; dist_default28 = lib; } }); // node_modules/smol-toml/dist/error.js function getLineColFromPtr(string2, ptr) { let lines = string2.slice(0, ptr).split(/\r\n|\n|\r/g); return [lines.length, lines.pop().length + 1]; } function makeCodeBlock(string2, line2, column2) { let lines = string2.split(/\r\n|\n|\r/g); let codeblock = ""; let numberLen = (Math.log10(line2 + 1) | 0) + 1; for (let i = line2 - 1; i <= line2 + 1; i++) { let l = lines[i - 1]; if (!l) continue; codeblock += i.toString().padEnd(numberLen, " "); codeblock += ": "; codeblock += l; codeblock += "\n"; if (i === line2) { codeblock += " ".repeat(numberLen + column2 + 2); codeblock += "^\n"; } } return codeblock; } var TomlError; var init_error = __esm({ "node_modules/smol-toml/dist/error.js"() { TomlError = class extends Error { line; column; codeblock; constructor(message, options) { const [line2, column2] = getLineColFromPtr(options.toml, options.ptr); const codeblock = makeCodeBlock(options.toml, line2, column2); super(`Invalid TOML document: ${message} ${codeblock}`, options); this.line = line2; this.column = column2; this.codeblock = codeblock; } }; } }); // node_modules/smol-toml/dist/util.js function indexOfNewline(str2, start = 0, end = str2.length) { let idx = str2.indexOf("\n", start); if (str2[idx - 1] === "\r") idx--; return idx <= end ? idx : -1; } function skipComment(str2, ptr) { for (let i = ptr; i < str2.length; i++) { let c2 = str2[i]; if (c2 === "\n") return i; if (c2 === "\r" && str2[i + 1] === "\n") return i + 1; if (c2 < " " && c2 !== " " || c2 === "\x7F") { throw new TomlError("control characters are not allowed in comments", { toml: str2, ptr }); } } return str2.length; } function skipVoid(str2, ptr, banNewLines, banComments) { let c2; while ((c2 = str2[ptr]) === " " || c2 === " " || !banNewLines && (c2 === "\n" || c2 === "\r" && str2[ptr + 1] === "\n")) ptr++; return banComments || c2 !== "#" ? ptr : skipVoid(str2, skipComment(str2, ptr), banNewLines); } function skipUntil(str2, ptr, sep, end, banNewLines = false) { if (!end) { ptr = indexOfNewline(str2, ptr); return ptr < 0 ? str2.length : ptr; } for (let i = ptr; i < str2.length; i++) { let c2 = str2[i]; if (c2 === "#") { i = indexOfNewline(str2, i); } else if (c2 === sep) { return i + 1; } else if (c2 === end || banNewLines && (c2 === "\n" || c2 === "\r" && str2[i + 1] === "\n")) { return i; } } throw new TomlError("cannot find end of structure", { toml: str2, ptr }); } function getStringEnd(str2, seek) { let first = str2[seek]; let target = first === str2[seek + 1] && str2[seek + 1] === str2[seek + 2] ? str2.slice(seek, seek + 3) : first; seek += target.length - 1; do seek = str2.indexOf(target, ++seek); while (seek > -1 && first !== "'" && str2[seek - 1] === "\\" && (str2[seek - 2] !== "\\" || str2[seek - 3] === "\\")); if (seek > -1) { seek += target.length; if (target.length > 1) { if (str2[seek] === first) seek++; if (str2[seek] === first) seek++; } } return seek; } var init_util = __esm({ "node_modules/smol-toml/dist/util.js"() { init_error(); } }); // node_modules/smol-toml/dist/date.js var DATE_TIME_RE, _hasDate, _hasTime, _offset, _TomlDate, TomlDate; var init_date = __esm({ "node_modules/smol-toml/dist/date.js"() { DATE_TIME_RE = /^(\d{4}-\d{2}-\d{2})?[T ]?(?:(\d{2}):\d{2}:\d{2}(?:\.\d+)?)?(Z|[-+]\d{2}:\d{2})?$/i; _TomlDate = class _TomlDate extends Date { constructor(date) { let hasDate = true; let hasTime = true; let offset = "Z"; if (typeof date === "string") { let match2 = date.match(DATE_TIME_RE); if (match2) { if (!match2[1]) { hasDate = false; date = `0000-01-01T${date}`; } hasTime = !!match2[2]; hasTime && date[10] === " " && (date = date.replace(" ", "T")); if (match2[2] && +match2[2] > 23) { date = ""; } else { offset = match2[3] || null; date = date.toUpperCase(); if (!offset && hasTime) date += "Z"; } } else { date = ""; } } super(date); __privateAdd(this, _hasDate, false); __privateAdd(this, _hasTime, false); __privateAdd(this, _offset, null); if (!isNaN(this.getTime())) { __privateSet(this, _hasDate, hasDate); __privateSet(this, _hasTime, hasTime); __privateSet(this, _offset, offset); } } isDateTime() { return __privateGet(this, _hasDate) && __privateGet(this, _hasTime); } isLocal() { return !__privateGet(this, _hasDate) || !__privateGet(this, _hasTime) || !__privateGet(this, _offset); } isDate() { return __privateGet(this, _hasDate) && !__privateGet(this, _hasTime); } isTime() { return __privateGet(this, _hasTime) && !__privateGet(this, _hasDate); } isValid() { return __privateGet(this, _hasDate) || __privateGet(this, _hasTime); } toISOString() { let iso = super.toISOString(); if (this.isDate()) return iso.slice(0, 10); if (this.isTime()) return iso.slice(11, 23); if (__privateGet(this, _offset) === null) return iso.slice(0, -1); if (__privateGet(this, _offset) === "Z") return iso; let offset = +__privateGet(this, _offset).slice(1, 3) * 60 + +__privateGet(this, _offset).slice(4, 6); offset = __privateGet(this, _offset)[0] === "-" ? offset : -offset; let offsetDate = new Date(this.getTime() - offset * 6e4); return offsetDate.toISOString().slice(0, -1) + __privateGet(this, _offset); } static wrapAsOffsetDateTime(jsDate, offset = "Z") { let date = new _TomlDate(jsDate); __privateSet(date, _offset, offset); return date; } static wrapAsLocalDateTime(jsDate) { let date = new _TomlDate(jsDate); __privateSet(date, _offset, null); return date; } static wrapAsLocalDate(jsDate) { let date = new _TomlDate(jsDate); __privateSet(date, _hasTime, false); __privateSet(date, _offset, null); return date; } static wrapAsLocalTime(jsDate) { let date = new _TomlDate(jsDate); __privateSet(date, _hasDate, false); __privateSet(date, _offset, null); return date; } }; _hasDate = new WeakMap(); _hasTime = new WeakMap(); _offset = new WeakMap(); TomlDate = _TomlDate; } }); // node_modules/smol-toml/dist/primitive.js function parseString(str2, ptr = 0, endPtr = str2.length) { let isLiteral = str2[ptr] === "'"; let isMultiline = str2[ptr++] === str2[ptr] && str2[ptr] === str2[ptr + 1]; if (isMultiline) { endPtr -= 2; if (str2[ptr += 2] === "\r") ptr++; if (str2[ptr] === "\n") ptr++; } let tmp = 0; let isEscape; let parsed = ""; let sliceStart = ptr; while (ptr < endPtr - 1) { let c2 = str2[ptr++]; if (c2 === "\n" || c2 === "\r" && str2[ptr] === "\n") { if (!isMultiline) { throw new TomlError("newlines are not allowed in strings", { toml: str2, ptr: ptr - 1 }); } } else if (c2 < " " && c2 !== " " || c2 === "\x7F") { throw new TomlError("control characters are not allowed in strings", { toml: str2, ptr: ptr - 1 }); } if (isEscape) { isEscape = false; if (c2 === "u" || c2 === "U") { let code = str2.slice(ptr, ptr += c2 === "u" ? 4 : 8); if (!ESCAPE_REGEX.test(code)) { throw new TomlError("invalid unicode escape", { toml: str2, ptr: tmp }); } try { parsed += String.fromCodePoint(parseInt(code, 16)); } catch { throw new TomlError("invalid unicode escape", { toml: str2, ptr: tmp }); } } else if (isMultiline && (c2 === "\n" || c2 === " " || c2 === " " || c2 === "\r")) { ptr = skipVoid(str2, ptr - 1, true); if (str2[ptr] !== "\n" && str2[ptr] !== "\r") { throw new TomlError("invalid escape: only line-ending whitespace may be escaped", { toml: str2, ptr: tmp }); } ptr = skipVoid(str2, ptr); } else if (c2 in ESC_MAP) { parsed += ESC_MAP[c2]; } else { throw new TomlError("unrecognized escape sequence", { toml: str2, ptr: tmp }); } sliceStart = ptr; } else if (!isLiteral && c2 === "\\") { tmp = ptr - 1; isEscape = true; parsed += str2.slice(sliceStart, tmp); } } return parsed + str2.slice(sliceStart, endPtr - 1); } function parseValue2(value, toml, ptr) { if (value === "true") return true; if (value === "false") return false; if (value === "-inf") return -Infinity; if (value === "inf" || value === "+inf") return Infinity; if (value === "nan" || value === "+nan" || value === "-nan") return NaN; if (value === "-0") return 0; let isInt; if ((isInt = INT_REGEX.test(value)) || FLOAT_REGEX.test(value)) { if (LEADING_ZERO.test(value)) { throw new TomlError("leading zeroes are not allowed", { toml, ptr }); } let numeric = +value.replace(/_/g, ""); if (isNaN(numeric)) { throw new TomlError("invalid number", { toml, ptr }); } if (isInt && !Number.isSafeInteger(numeric)) { throw new TomlError("integer value cannot be represented losslessly", { toml, ptr }); } return numeric; } let date = new TomlDate(value); if (!date.isValid()) { throw new TomlError("invalid value", { toml, ptr }); } return date; } var INT_REGEX, FLOAT_REGEX, LEADING_ZERO, ESCAPE_REGEX, ESC_MAP; var init_primitive = __esm({ "node_modules/smol-toml/dist/primitive.js"() { init_util(); init_date(); init_error(); INT_REGEX = /^((0x[0-9a-fA-F](_?[0-9a-fA-F])*)|(([+-]|0[ob])?\d(_?\d)*))$/; FLOAT_REGEX = /^[+-]?\d(_?\d)*(\.\d(_?\d)*)?([eE][+-]?\d(_?\d)*)?$/; LEADING_ZERO = /^[+-]?0[0-9_]/; ESCAPE_REGEX = /^[0-9a-f]{4,8}$/i; ESC_MAP = { b: "\b", t: " ", n: "\n", f: "\f", r: "\r", '"': '"', "\\": "\\" }; } }); // node_modules/smol-toml/dist/extract.js function sliceAndTrimEndOf(str2, startPtr, endPtr, allowNewLines) { let value = str2.slice(startPtr, endPtr); let commentIdx = value.indexOf("#"); if (commentIdx > -1) { skipComment(str2, commentIdx); value = value.slice(0, commentIdx); } let trimmed = value.trimEnd(); if (!allowNewLines) { let newlineIdx = value.indexOf("\n", trimmed.length); if (newlineIdx > -1) { throw new TomlError("newlines are not allowed in inline tables", { toml: str2, ptr: startPtr + newlineIdx }); } } return [trimmed, commentIdx]; } function extractValue(str2, ptr, end, depth = -1) { if (depth === 0) { throw new TomlError("document contains excessively nested structures. aborting.", { toml: str2, ptr }); } let c2 = str2[ptr]; if (c2 === "[" || c2 === "{") { let [value, endPtr2] = c2 === "[" ? parseArray(str2, ptr, depth) : parseInlineTable(str2, ptr, depth); let newPtr = end ? skipUntil(str2, endPtr2, ",", end) : endPtr2; if (endPtr2 - newPtr && end === "}") { let nextNewLine = indexOfNewline(str2, endPtr2, newPtr); if (nextNewLine > -1) { throw new TomlError("newlines are not allowed in inline tables", { toml: str2, ptr: nextNewLine }); } } return [value, newPtr]; } let endPtr; if (c2 === '"' || c2 === "'") { endPtr = getStringEnd(str2, ptr); let parsed = parseString(str2, ptr, endPtr); if (end) { endPtr = skipVoid(str2, endPtr, end !== "]"); if (str2[endPtr] && str2[endPtr] !== "," && str2[endPtr] !== end && str2[endPtr] !== "\n" && str2[endPtr] !== "\r") { throw new TomlError("unexpected character encountered", { toml: str2, ptr: endPtr }); } endPtr += +(str2[endPtr] === ","); } return [parsed, endPtr]; } endPtr = skipUntil(str2, ptr, ",", end); let slice = sliceAndTrimEndOf(str2, ptr, endPtr - +(str2[endPtr - 1] === ","), end === "]"); if (!slice[0]) { throw new TomlError("incomplete key-value declaration: no value specified", { toml: str2, ptr }); } if (end && slice[1] > -1) { endPtr = skipVoid(str2, ptr + slice[1]); endPtr += +(str2[endPtr] === ","); } return [ parseValue2(slice[0], str2, ptr), endPtr ]; } var init_extract = __esm({ "node_modules/smol-toml/dist/extract.js"() { init_primitive(); init_struct(); init_util(); init_error(); } }); // node_modules/smol-toml/dist/struct.js function parseKey(str2, ptr, end = "=") { let dot = ptr - 1; let parsed = []; let endPtr = str2.indexOf(end, ptr); if (endPtr < 0) { throw new TomlError("incomplete key-value: cannot find end of key", { toml: str2, ptr }); } do { let c2 = str2[ptr = ++dot]; if (c2 !== " " && c2 !== " ") { if (c2 === '"' || c2 === "'") { if (c2 === str2[ptr + 1] && c2 === str2[ptr + 2]) { throw new TomlError("multiline strings are not allowed in keys", { toml: str2, ptr }); } let eos = getStringEnd(str2, ptr); if (eos < 0) { throw new TomlError("unfinished string encountered", { toml: str2, ptr }); } dot = str2.indexOf(".", eos); let strEnd = str2.slice(eos, dot < 0 || dot > endPtr ? endPtr : dot); let newLine = indexOfNewline(strEnd); if (newLine > -1) { throw new TomlError("newlines are not allowed in keys", { toml: str2, ptr: ptr + dot + newLine }); } if (strEnd.trimStart()) { throw new TomlError("found extra tokens after the string part", { toml: str2, ptr: eos }); } if (endPtr < eos) { endPtr = str2.indexOf(end, eos); if (endPtr < 0) { throw new TomlError("incomplete key-value: cannot find end of key", { toml: str2, ptr }); } } parsed.push(parseString(str2, ptr, eos)); } else { dot = str2.indexOf(".", ptr); let part = str2.slice(ptr, dot < 0 || dot > endPtr ? endPtr : dot); if (!KEY_PART_RE.test(part)) { throw new TomlError("only letter, numbers, dashes and underscores are allowed in keys", { toml: str2, ptr }); } parsed.push(part.trimEnd()); } } } while (dot + 1 && dot < endPtr); return [parsed, skipVoid(str2, endPtr + 1, true, true)]; } function parseInlineTable(str2, ptr, depth = -1) { let res = {}; let seen = /* @__PURE__ */ new Set(); let c2; let comma = 0; ptr++; while ((c2 = str2[ptr++]) !== "}" && c2) { if (c2 === "\n") { throw new TomlError("newlines are not allowed in inline tables", { toml: str2, ptr: ptr - 1 }); } else if (c2 === "#") { throw new TomlError("inline tables cannot contain comments", { toml: str2, ptr: ptr - 1 }); } else if (c2 === ",") { throw new TomlError("expected key-value, found comma", { toml: str2, ptr: ptr - 1 }); } else if (c2 !== " " && c2 !== " ") { let k; let t = res; let hasOwn = false; let [key2, keyEndPtr] = parseKey(str2, ptr - 1); for (let i = 0; i < key2.length; i++) { if (i) t = hasOwn ? t[k] : t[k] = {}; k = key2[i]; if ((hasOwn = Object.hasOwn(t, k)) && (typeof t[k] !== "object" || seen.has(t[k]))) { throw new TomlError("trying to redefine an already defined value", { toml: str2, ptr }); } if (!hasOwn && k === "__proto__") { Object.defineProperty(t, k, { enumerable: true, configurable: true, writable: true }); } } if (hasOwn) { throw new TomlError("trying to redefine an already defined value", { toml: str2, ptr }); } let [value, valueEndPtr] = extractValue(str2, keyEndPtr, "}", depth - 1); seen.add(value); t[k] = value; ptr = valueEndPtr; comma = str2[ptr - 1] === "," ? ptr - 1 : 0; } } if (comma) { throw new TomlError("trailing commas are not allowed in inline tables", { toml: str2, ptr: comma }); } if (!c2) { throw new TomlError("unfinished table encountered", { toml: str2, ptr }); } return [res, ptr]; } function parseArray(str2, ptr, depth = -1) { let res = []; let c2; ptr++; while ((c2 = str2[ptr++]) !== "]" && c2) { if (c2 === ",") { throw new TomlError("expected value, found comma", { toml: str2, ptr: ptr - 1 }); } else if (c2 === "#") ptr = skipComment(str2, ptr); else if (c2 !== " " && c2 !== " " && c2 !== "\n" && c2 !== "\r") { let e = extractValue(str2, ptr - 1, "]", depth - 1); res.push(e[0]); ptr = e[1]; } } if (!c2) { throw new TomlError("unfinished array encountered", { toml: str2, ptr }); } return [res, ptr]; } var KEY_PART_RE; var init_struct = __esm({ "node_modules/smol-toml/dist/struct.js"() { init_primitive(); init_extract(); init_util(); init_error(); KEY_PART_RE = /^[a-zA-Z0-9-_]+[ \t]*$/; } }); // node_modules/smol-toml/dist/parse.js function peekTable(key2, table, meta, type2) { var _a4, _b2; let t = table; let m = meta; let k; let hasOwn = false; let state; for (let i = 0; i < key2.length; i++) { if (i) { t = hasOwn ? t[k] : t[k] = {}; m = (state = m[k]).c; if (type2 === 0 && (state.t === 1 || state.t === 2)) { return null; } if (state.t === 2) { let l = t.length - 1; t = t[l]; m = m[l].c; } } k = key2[i]; if ((hasOwn = Object.hasOwn(t, k)) && ((_a4 = m[k]) == null ? void 0 : _a4.t) === 0 && ((_b2 = m[k]) == null ? void 0 : _b2.d)) { return null; } if (!hasOwn) { if (k === "__proto__") { Object.defineProperty(t, k, { enumerable: true, configurable: true, writable: true }); Object.defineProperty(m, k, { enumerable: true, configurable: true, writable: true }); } m[k] = { t: i < key2.length - 1 && type2 === 2 ? 3 : type2, d: false, i: 0, c: {} }; } } state = m[k]; if (state.t !== type2 && !(type2 === 1 && state.t === 3)) { return null; } if (type2 === 2) { if (!state.d) { state.d = true; t[k] = []; } t[k].push(t = {}); state.c[state.i++] = state = { t: 1, d: false, i: 0, c: {} }; } if (state.d) { return null; } state.d = true; if (type2 === 1) { t = hasOwn ? t[k] : t[k] = {}; } else if (type2 === 0 && hasOwn) { return null; } return [k, t, state.c]; } function parse7(toml, opts) { let maxDepth = (opts == null ? void 0 : opts.maxDepth) ?? 1e3; let res = {}; let meta = {}; let tbl = res; let m = meta; for (let ptr = skipVoid(toml, 0); ptr < toml.length; ) { if (toml[ptr] === "[") { let isTableArray = toml[++ptr] === "["; let k = parseKey(toml, ptr += +isTableArray, "]"); if (isTableArray) { if (toml[k[1] - 1] !== "]") { throw new TomlError("expected end of table declaration", { toml, ptr: k[1] - 1 }); } k[1]++; } let p = peekTable( k[0], res, meta, isTableArray ? 2 : 1 /* Type.EXPLICIT */ ); if (!p) { throw new TomlError("trying to redefine an already defined table or value", { toml, ptr }); } m = p[2]; tbl = p[1]; ptr = k[1]; } else { let k = parseKey(toml, ptr); let p = peekTable( k[0], tbl, m, 0 /* Type.DOTTED */ ); if (!p) { throw new TomlError("trying to redefine an already defined table or value", { toml, ptr }); } let v = extractValue(toml, k[1], void 0, maxDepth); p[1][p[0]] = v[0]; ptr = v[1]; } ptr = skipVoid(toml, ptr, true); if (toml[ptr] && toml[ptr] !== "\n" && toml[ptr] !== "\r") { throw new TomlError("each key-value declaration must be followed by an end-of-line", { toml, ptr }); } ptr = skipVoid(toml, ptr); } return res; } var init_parse4 = __esm({ "node_modules/smol-toml/dist/parse.js"() { init_struct(); init_extract(); init_util(); init_error(); } }); // node_modules/smol-toml/dist/stringify.js function extendedTypeOf(obj) { let type2 = typeof obj; if (type2 === "object") { if (Array.isArray(obj)) return "array"; if (obj instanceof Date) return "date"; } return type2; } function isArrayOfTables(obj) { for (let i = 0; i < obj.length; i++) { if (extendedTypeOf(obj[i]) !== "object") return false; } return obj.length != 0; } function formatString(s) { return JSON.stringify(s).replace(/\x7f/g, "\\u007f"); } function stringifyValue(val, type2, depth) { if (depth === 0) { throw new Error("Could not stringify the object: maximum object depth exceeded"); } if (type2 === "number") { if (isNaN(val)) return "nan"; if (val === Infinity) return "inf"; if (val === -Infinity) return "-inf"; return val.toString(); } if (type2 === "bigint" || type2 === "boolean") { return val.toString(); } if (type2 === "string") { return formatString(val); } if (type2 === "date") { if (isNaN(val.getTime())) { throw new TypeError("cannot serialize invalid date"); } return val.toISOString(); } if (type2 === "object") { return stringifyInlineTable(val, depth); } if (type2 === "array") { return stringifyArray(val, depth); } } function stringifyInlineTable(obj, depth) { let keys = Object.keys(obj); if (keys.length === 0) return "{}"; let res = "{ "; for (let i = 0; i < keys.length; i++) { let k = keys[i]; if (i) res += ", "; res += BARE_KEY.test(k) ? k : formatString(k); res += " = "; res += stringifyValue(obj[k], extendedTypeOf(obj[k]), depth - 1); } return res + " }"; } function stringifyArray(array, depth) { if (array.length === 0) return "[]"; let res = "[ "; for (let i = 0; i < array.length; i++) { if (i) res += ", "; if (array[i] === null || array[i] === void 0) { throw new TypeError("arrays cannot contain null or undefined values"); } res += stringifyValue(array[i], extendedTypeOf(array[i]), depth - 1); } return res + " ]"; } function stringifyArrayTable(array, key2, depth) { if (depth === 0) { throw new Error("Could not stringify the object: maximum object depth exceeded"); } let res = ""; for (let i = 0; i < array.length; i++) { res += `[[${key2}]] `; res += stringifyTable(array[i], key2, depth); res += "\n\n"; } return res; } function stringifyTable(obj, prefix, depth) { if (depth === 0) { throw new Error("Could not stringify the object: maximum object depth exceeded"); } let preamble = ""; let tables = ""; let keys = Object.keys(obj); for (let i = 0; i < keys.length; i++) { let k = keys[i]; if (obj[k] !== null && obj[k] !== void 0) { let type2 = extendedTypeOf(obj[k]); if (type2 === "symbol" || type2 === "function") { throw new TypeError(`cannot serialize values of type '${type2}'`); } let key2 = BARE_KEY.test(k) ? k : formatString(k); if (type2 === "array" && isArrayOfTables(obj[k])) { tables += stringifyArrayTable(obj[k], prefix ? `${prefix}.${key2}` : key2, depth - 1); } else if (type2 === "object") { let tblKey = prefix ? `${prefix}.${key2}` : key2; tables += `[${tblKey}] `; tables += stringifyTable(obj[k], tblKey, depth - 1); tables += "\n\n"; } else { preamble += key2; preamble += " = "; preamble += stringifyValue(obj[k], type2, depth); preamble += "\n"; } } } return `${preamble} ${tables}`.trim(); } function stringify4(obj, opts) { if (extendedTypeOf(obj) !== "object") { throw new TypeError("stringify can only be called with an object"); } let maxDepth = (opts == null ? void 0 : opts.maxDepth) ?? 1e3; return stringifyTable(obj, "", maxDepth); } var BARE_KEY; var init_stringify = __esm({ "node_modules/smol-toml/dist/stringify.js"() { BARE_KEY = /^[a-z0-9-_]+$/i; } }); // node_modules/smol-toml/dist/index.js var dist_exports3 = {}; __export(dist_exports3, { TomlDate: () => TomlDate, TomlError: () => TomlError, default: () => dist_default29, parse: () => parse7, stringify: () => stringify4 }); var dist_default29; var init_dist33 = __esm({ "node_modules/smol-toml/dist/index.js"() { init_parse4(); init_stringify(); init_date(); init_error(); dist_default29 = { parse: parse7, stringify: stringify4, TomlDate, TomlError }; } }); // node_modules/js-yaml/dist/js-yaml.mjs var js_yaml_exports = {}; __export(js_yaml_exports, { CORE_SCHEMA: () => CORE_SCHEMA, DEFAULT_SCHEMA: () => DEFAULT_SCHEMA, FAILSAFE_SCHEMA: () => FAILSAFE_SCHEMA, JSON_SCHEMA: () => JSON_SCHEMA, Schema: () => Schema, Type: () => Type, YAMLException: () => YAMLException, default: () => js_yaml_default, dump: () => dump, load: () => load, loadAll: () => loadAll, safeDump: () => safeDump, safeLoad: () => safeLoad, safeLoadAll: () => safeLoadAll, types: () => types }); function isNothing(subject) { return typeof subject === "undefined" || subject === null; } function isObject4(subject) { return typeof subject === "object" && subject !== null; } function toArray(sequence) { if (Array.isArray(sequence)) return sequence; else if (isNothing(sequence)) return []; return [sequence]; } function extend2(target, source2) { var index, length, key2, sourceKeys; if (source2) { sourceKeys = Object.keys(source2); for (index = 0, length = sourceKeys.length; index < length; index += 1) { key2 = sourceKeys[index]; target[key2] = source2[key2]; } } return target; } function repeat2(string2, count) { var result = "", cycle; for (cycle = 0; cycle < count; cycle += 1) { result += string2; } return result; } function isNegativeZero(number) { return number === 0 && Number.NEGATIVE_INFINITY === 1 / number; } function formatError(exception2, compact) { var where = "", message = exception2.reason || "(unknown reason)"; if (!exception2.mark) return message; if (exception2.mark.name) { where += 'in "' + exception2.mark.name + '" '; } where += "(" + (exception2.mark.line + 1) + ":" + (exception2.mark.column + 1) + ")"; if (!compact && exception2.mark.snippet) { where += "\n\n" + exception2.mark.snippet; } return message + " " + where; } function YAMLException$1(reason, mark) { Error.call(this); this.name = "YAMLException"; this.reason = reason; this.mark = mark; this.message = formatError(this, false); if (Error.captureStackTrace) { Error.captureStackTrace(this, this.constructor); } else { this.stack = new Error().stack || ""; } } function getLine(buffer2, lineStart, lineEnd, position, maxLineLength) { var head = ""; var tail = ""; var maxHalfLength = Math.floor(maxLineLength / 2) - 1; if (position - lineStart > maxHalfLength) { head = " ... "; lineStart = position - maxHalfLength + head.length; } if (lineEnd - position > maxHalfLength) { tail = " ..."; lineEnd = position + maxHalfLength - tail.length; } return { str: head + buffer2.slice(lineStart, lineEnd).replace(/\t/g, "\u2192") + tail, pos: position - lineStart + head.length // relative position }; } function padStart(string2, max) { return common.repeat(" ", max - string2.length) + string2; } function makeSnippet(mark, options) { options = Object.create(options || null); if (!mark.buffer) return null; if (!options.maxLength) options.maxLength = 79; if (typeof options.indent !== "number") options.indent = 1; if (typeof options.linesBefore !== "number") options.linesBefore = 3; if (typeof options.linesAfter !== "number") options.linesAfter = 2; var re = /\r?\n|\r|\0/g; var lineStarts = [0]; var lineEnds = []; var match2; var foundLineNo = -1; while (match2 = re.exec(mark.buffer)) { lineEnds.push(match2.index); lineStarts.push(match2.index + match2[0].length); if (mark.position <= match2.index && foundLineNo < 0) { foundLineNo = lineStarts.length - 2; } } if (foundLineNo < 0) foundLineNo = lineStarts.length - 1; var result = "", i, line2; var lineNoLength = Math.min(mark.line + options.linesAfter, lineEnds.length).toString().length; var maxLineLength = options.maxLength - (options.indent + lineNoLength + 3); for (i = 1; i <= options.linesBefore; i++) { if (foundLineNo - i < 0) break; line2 = getLine( mark.buffer, lineStarts[foundLineNo - i], lineEnds[foundLineNo - i], mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo - i]), maxLineLength ); result = common.repeat(" ", options.indent) + padStart((mark.line - i + 1).toString(), lineNoLength) + " | " + line2.str + "\n" + result; } line2 = getLine(mark.buffer, lineStarts[foundLineNo], lineEnds[foundLineNo], mark.position, maxLineLength); result += common.repeat(" ", options.indent) + padStart((mark.line + 1).toString(), lineNoLength) + " | " + line2.str + "\n"; result += common.repeat("-", options.indent + lineNoLength + 3 + line2.pos) + "^\n"; for (i = 1; i <= options.linesAfter; i++) { if (foundLineNo + i >= lineEnds.length) break; line2 = getLine( mark.buffer, lineStarts[foundLineNo + i], lineEnds[foundLineNo + i], mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo + i]), maxLineLength ); result += common.repeat(" ", options.indent) + padStart((mark.line + i + 1).toString(), lineNoLength) + " | " + line2.str + "\n"; } return result.replace(/\n$/, ""); } function compileStyleAliases(map2) { var result = {}; if (map2 !== null) { Object.keys(map2).forEach(function(style) { map2[style].forEach(function(alias) { result[String(alias)] = style; }); }); } return result; } function Type$1(tag, options) { options = options || {}; Object.keys(options).forEach(function(name) { if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) { throw new exception('Unknown option "' + name + '" is met in definition of "' + tag + '" YAML type.'); } }); this.options = options; this.tag = tag; this.kind = options["kind"] || null; this.resolve = options["resolve"] || function() { return true; }; this.construct = options["construct"] || function(data) { return data; }; this.instanceOf = options["instanceOf"] || null; this.predicate = options["predicate"] || null; this.represent = options["represent"] || null; this.representName = options["representName"] || null; this.defaultStyle = options["defaultStyle"] || null; this.multi = options["multi"] || false; this.styleAliases = compileStyleAliases(options["styleAliases"] || null); if (YAML_NODE_KINDS.indexOf(this.kind) === -1) { throw new exception('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.'); } } function compileList(schema2, name) { var result = []; schema2[name].forEach(function(currentType) { var newIndex = result.length; result.forEach(function(previousType, previousIndex) { if (previousType.tag === currentType.tag && previousType.kind === currentType.kind && previousType.multi === currentType.multi) { newIndex = previousIndex; } }); result[newIndex] = currentType; }); return result; } function compileMap() { var result = { scalar: {}, sequence: {}, mapping: {}, fallback: {}, multi: { scalar: [], sequence: [], mapping: [], fallback: [] } }, index, length; function collectType(type2) { if (type2.multi) { result.multi[type2.kind].push(type2); result.multi["fallback"].push(type2); } else { result[type2.kind][type2.tag] = result["fallback"][type2.tag] = type2; } } for (index = 0, length = arguments.length; index < length; index += 1) { arguments[index].forEach(collectType); } return result; } function Schema$1(definition) { return this.extend(definition); } function resolveYamlNull(data) { if (data === null) return true; var max = data.length; return max === 1 && data === "~" || max === 4 && (data === "null" || data === "Null" || data === "NULL"); } function constructYamlNull() { return null; } function isNull3(object) { return object === null; } function resolveYamlBoolean(data) { if (data === null) return false; var max = data.length; return max === 4 && (data === "true" || data === "True" || data === "TRUE") || max === 5 && (data === "false" || data === "False" || data === "FALSE"); } function constructYamlBoolean(data) { return data === "true" || data === "True" || data === "TRUE"; } function isBoolean4(object) { return Object.prototype.toString.call(object) === "[object Boolean]"; } function isHexCode(c2) { return 48 <= c2 && c2 <= 57 || 65 <= c2 && c2 <= 70 || 97 <= c2 && c2 <= 102; } function isOctCode(c2) { return 48 <= c2 && c2 <= 55; } function isDecCode(c2) { return 48 <= c2 && c2 <= 57; } function resolveYamlInteger(data) { if (data === null) return false; var max = data.length, index = 0, hasDigits = false, ch; if (!max) return false; ch = data[index]; if (ch === "-" || ch === "+") { ch = data[++index]; } if (ch === "0") { if (index + 1 === max) return true; ch = data[++index]; if (ch === "b") { index++; for (; index < max; index++) { ch = data[index]; if (ch === "_") continue; if (ch !== "0" && ch !== "1") return false; hasDigits = true; } return hasDigits && ch !== "_"; } if (ch === "x") { index++; for (; index < max; index++) { ch = data[index]; if (ch === "_") continue; if (!isHexCode(data.charCodeAt(index))) return false; hasDigits = true; } return hasDigits && ch !== "_"; } if (ch === "o") { index++; for (; index < max; index++) { ch = data[index]; if (ch === "_") continue; if (!isOctCode(data.charCodeAt(index))) return false; hasDigits = true; } return hasDigits && ch !== "_"; } } if (ch === "_") return false; for (; index < max; index++) { ch = data[index]; if (ch === "_") continue; if (!isDecCode(data.charCodeAt(index))) { return false; } hasDigits = true; } if (!hasDigits || ch === "_") return false; return true; } function constructYamlInteger(data) { var value = data, sign2 = 1, ch; if (value.indexOf("_") !== -1) { value = value.replace(/_/g, ""); } ch = value[0]; if (ch === "-" || ch === "+") { if (ch === "-") sign2 = -1; value = value.slice(1); ch = value[0]; } if (value === "0") return 0; if (ch === "0") { if (value[1] === "b") return sign2 * parseInt(value.slice(2), 2); if (value[1] === "x") return sign2 * parseInt(value.slice(2), 16); if (value[1] === "o") return sign2 * parseInt(value.slice(2), 8); } return sign2 * parseInt(value, 10); } function isInteger3(object) { return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 === 0 && !common.isNegativeZero(object)); } function resolveYamlFloat(data) { if (data === null) return false; if (!YAML_FLOAT_PATTERN.test(data) || // Quick hack to not allow integers end with `_` // Probably should update regexp & check speed data[data.length - 1] === "_") { return false; } return true; } function constructYamlFloat(data) { var value, sign2; value = data.replace(/_/g, "").toLowerCase(); sign2 = value[0] === "-" ? -1 : 1; if ("+-".indexOf(value[0]) >= 0) { value = value.slice(1); } if (value === ".inf") { return sign2 === 1 ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY; } else if (value === ".nan") { return NaN; } return sign2 * parseFloat(value, 10); } function representYamlFloat(object, style) { var res; if (isNaN(object)) { switch (style) { case "lowercase": return ".nan"; case "uppercase": return ".NAN"; case "camelcase": return ".NaN"; } } else if (Number.POSITIVE_INFINITY === object) { switch (style) { case "lowercase": return ".inf"; case "uppercase": return ".INF"; case "camelcase": return ".Inf"; } } else if (Number.NEGATIVE_INFINITY === object) { switch (style) { case "lowercase": return "-.inf"; case "uppercase": return "-.INF"; case "camelcase": return "-.Inf"; } } else if (common.isNegativeZero(object)) { return "-0.0"; } res = object.toString(10); return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace("e", ".e") : res; } function isFloat(object) { return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 !== 0 || common.isNegativeZero(object)); } function resolveYamlTimestamp(data) { if (data === null) return false; if (YAML_DATE_REGEXP.exec(data) !== null) return true; if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true; return false; } function constructYamlTimestamp(data) { var match2, year, month, day, hour, minute, second, fraction = 0, delta = null, tz_hour, tz_minute, date; match2 = YAML_DATE_REGEXP.exec(data); if (match2 === null) match2 = YAML_TIMESTAMP_REGEXP.exec(data); if (match2 === null) throw new Error("Date resolve error"); year = +match2[1]; month = +match2[2] - 1; day = +match2[3]; if (!match2[4]) { return new Date(Date.UTC(year, month, day)); } hour = +match2[4]; minute = +match2[5]; second = +match2[6]; if (match2[7]) { fraction = match2[7].slice(0, 3); while (fraction.length < 3) { fraction += "0"; } fraction = +fraction; } if (match2[9]) { tz_hour = +match2[10]; tz_minute = +(match2[11] || 0); delta = (tz_hour * 60 + tz_minute) * 6e4; if (match2[9] === "-") delta = -delta; } date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction)); if (delta) date.setTime(date.getTime() - delta); return date; } function representYamlTimestamp(object) { return object.toISOString(); } function resolveYamlMerge(data) { return data === "<<" || data === null; } function resolveYamlBinary(data) { if (data === null) return false; var code, idx, bitlen = 0, max = data.length, map2 = BASE64_MAP; for (idx = 0; idx < max; idx++) { code = map2.indexOf(data.charAt(idx)); if (code > 64) continue; if (code < 0) return false; bitlen += 6; } return bitlen % 8 === 0; } function constructYamlBinary(data) { var idx, tailbits, input = data.replace(/[\r\n=]/g, ""), max = input.length, map2 = BASE64_MAP, bits = 0, result = []; for (idx = 0; idx < max; idx++) { if (idx % 4 === 0 && idx) { result.push(bits >> 16 & 255); result.push(bits >> 8 & 255); result.push(bits & 255); } bits = bits << 6 | map2.indexOf(input.charAt(idx)); } tailbits = max % 4 * 6; if (tailbits === 0) { result.push(bits >> 16 & 255); result.push(bits >> 8 & 255); result.push(bits & 255); } else if (tailbits === 18) { result.push(bits >> 10 & 255); result.push(bits >> 2 & 255); } else if (tailbits === 12) { result.push(bits >> 4 & 255); } return new Uint8Array(result); } function representYamlBinary(object) { var result = "", bits = 0, idx, tail, max = object.length, map2 = BASE64_MAP; for (idx = 0; idx < max; idx++) { if (idx % 3 === 0 && idx) { result += map2[bits >> 18 & 63]; result += map2[bits >> 12 & 63]; result += map2[bits >> 6 & 63]; result += map2[bits & 63]; } bits = (bits << 8) + object[idx]; } tail = max % 3; if (tail === 0) { result += map2[bits >> 18 & 63]; result += map2[bits >> 12 & 63]; result += map2[bits >> 6 & 63]; result += map2[bits & 63]; } else if (tail === 2) { result += map2[bits >> 10 & 63]; result += map2[bits >> 4 & 63]; result += map2[bits << 2 & 63]; result += map2[64]; } else if (tail === 1) { result += map2[bits >> 2 & 63]; result += map2[bits << 4 & 63]; result += map2[64]; result += map2[64]; } return result; } function isBinary(obj) { return Object.prototype.toString.call(obj) === "[object Uint8Array]"; } function resolveYamlOmap(data) { if (data === null) return true; var objectKeys = [], index, length, pair, pairKey, pairHasKey, object = data; for (index = 0, length = object.length; index < length; index += 1) { pair = object[index]; pairHasKey = false; if (_toString$2.call(pair) !== "[object Object]") return false; for (pairKey in pair) { if (_hasOwnProperty$3.call(pair, pairKey)) { if (!pairHasKey) pairHasKey = true; else return false; } } if (!pairHasKey) return false; if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey); else return false; } return true; } function constructYamlOmap(data) { return data !== null ? data : []; } function resolveYamlPairs(data) { if (data === null) return true; var index, length, pair, keys, result, object = data; result = new Array(object.length); for (index = 0, length = object.length; index < length; index += 1) { pair = object[index]; if (_toString$1.call(pair) !== "[object Object]") return false; keys = Object.keys(pair); if (keys.length !== 1) return false; result[index] = [keys[0], pair[keys[0]]]; } return true; } function constructYamlPairs(data) { if (data === null) return []; var index, length, pair, keys, result, object = data; result = new Array(object.length); for (index = 0, length = object.length; index < length; index += 1) { pair = object[index]; keys = Object.keys(pair); result[index] = [keys[0], pair[keys[0]]]; } return result; } function resolveYamlSet(data) { if (data === null) return true; var key2, object = data; for (key2 in object) { if (_hasOwnProperty$2.call(object, key2)) { if (object[key2] !== null) return false; } } return true; } function constructYamlSet(data) { return data !== null ? data : {}; } function _class(obj) { return Object.prototype.toString.call(obj); } function is_EOL(c2) { return c2 === 10 || c2 === 13; } function is_WHITE_SPACE(c2) { return c2 === 9 || c2 === 32; } function is_WS_OR_EOL(c2) { return c2 === 9 || c2 === 32 || c2 === 10 || c2 === 13; } function is_FLOW_INDICATOR(c2) { return c2 === 44 || c2 === 91 || c2 === 93 || c2 === 123 || c2 === 125; } function fromHexCode(c2) { var lc; if (48 <= c2 && c2 <= 57) { return c2 - 48; } lc = c2 | 32; if (97 <= lc && lc <= 102) { return lc - 97 + 10; } return -1; } function escapedHexLen(c2) { if (c2 === 120) { return 2; } if (c2 === 117) { return 4; } if (c2 === 85) { return 8; } return 0; } function fromDecimalCode(c2) { if (48 <= c2 && c2 <= 57) { return c2 - 48; } return -1; } function simpleEscapeSequence(c2) { return c2 === 48 ? "\0" : c2 === 97 ? "\x07" : c2 === 98 ? "\b" : c2 === 116 ? " " : c2 === 9 ? " " : c2 === 110 ? "\n" : c2 === 118 ? "\v" : c2 === 102 ? "\f" : c2 === 114 ? "\r" : c2 === 101 ? "\x1B" : c2 === 32 ? " " : c2 === 34 ? '"' : c2 === 47 ? "/" : c2 === 92 ? "\\" : c2 === 78 ? "\x85" : c2 === 95 ? "\xA0" : c2 === 76 ? "\u2028" : c2 === 80 ? "\u2029" : ""; } function charFromCodepoint(c2) { if (c2 <= 65535) { return String.fromCharCode(c2); } return String.fromCharCode( (c2 - 65536 >> 10) + 55296, (c2 - 65536 & 1023) + 56320 ); } function State$1(input, options) { this.input = input; this.filename = options["filename"] || null; this.schema = options["schema"] || _default; this.onWarning = options["onWarning"] || null; this.legacy = options["legacy"] || false; this.json = options["json"] || false; this.listener = options["listener"] || null; this.implicitTypes = this.schema.compiledImplicit; this.typeMap = this.schema.compiledTypeMap; this.length = input.length; this.position = 0; this.line = 0; this.lineStart = 0; this.lineIndent = 0; this.firstTabInLine = -1; this.documents = []; } function generateError(state, message) { var mark = { name: state.filename, buffer: state.input.slice(0, -1), // omit trailing \0 position: state.position, line: state.line, column: state.position - state.lineStart }; mark.snippet = snippet(mark); return new exception(message, mark); } function throwError(state, message) { throw generateError(state, message); } function throwWarning(state, message) { if (state.onWarning) { state.onWarning.call(null, generateError(state, message)); } } function captureSegment(state, start, end, checkJson) { var _position, _length, _character, _result; if (start < end) { _result = state.input.slice(start, end); if (checkJson) { for (_position = 0, _length = _result.length; _position < _length; _position += 1) { _character = _result.charCodeAt(_position); if (!(_character === 9 || 32 <= _character && _character <= 1114111)) { throwError(state, "expected valid JSON character"); } } } else if (PATTERN_NON_PRINTABLE.test(_result)) { throwError(state, "the stream contains non-printable characters"); } state.result += _result; } } function mergeMappings(state, destination, source2, overridableKeys) { var sourceKeys, key2, index, quantity; if (!common.isObject(source2)) { throwError(state, "cannot merge mappings; the provided source object is unacceptable"); } sourceKeys = Object.keys(source2); for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) { key2 = sourceKeys[index]; if (!_hasOwnProperty$1.call(destination, key2)) { destination[key2] = source2[key2]; overridableKeys[key2] = true; } } } function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, startLine, startLineStart, startPos) { var index, quantity; if (Array.isArray(keyNode)) { keyNode = Array.prototype.slice.call(keyNode); for (index = 0, quantity = keyNode.length; index < quantity; index += 1) { if (Array.isArray(keyNode[index])) { throwError(state, "nested arrays are not supported inside keys"); } if (typeof keyNode === "object" && _class(keyNode[index]) === "[object Object]") { keyNode[index] = "[object Object]"; } } } if (typeof keyNode === "object" && _class(keyNode) === "[object Object]") { keyNode = "[object Object]"; } keyNode = String(keyNode); if (_result === null) { _result = {}; } if (keyTag === "tag:yaml.org,2002:merge") { if (Array.isArray(valueNode)) { for (index = 0, quantity = valueNode.length; index < quantity; index += 1) { mergeMappings(state, _result, valueNode[index], overridableKeys); } } else { mergeMappings(state, _result, valueNode, overridableKeys); } } else { if (!state.json && !_hasOwnProperty$1.call(overridableKeys, keyNode) && _hasOwnProperty$1.call(_result, keyNode)) { state.line = startLine || state.line; state.lineStart = startLineStart || state.lineStart; state.position = startPos || state.position; throwError(state, "duplicated mapping key"); } if (keyNode === "__proto__") { Object.defineProperty(_result, keyNode, { configurable: true, enumerable: true, writable: true, value: valueNode }); } else { _result[keyNode] = valueNode; } delete overridableKeys[keyNode]; } return _result; } function readLineBreak(state) { var ch; ch = state.input.charCodeAt(state.position); if (ch === 10) { state.position++; } else if (ch === 13) { state.position++; if (state.input.charCodeAt(state.position) === 10) { state.position++; } } else { throwError(state, "a line break is expected"); } state.line += 1; state.lineStart = state.position; state.firstTabInLine = -1; } function skipSeparationSpace(state, allowComments, checkIndent) { var lineBreaks = 0, ch = state.input.charCodeAt(state.position); while (ch !== 0) { while (is_WHITE_SPACE(ch)) { if (ch === 9 && state.firstTabInLine === -1) { state.firstTabInLine = state.position; } ch = state.input.charCodeAt(++state.position); } if (allowComments && ch === 35) { do { ch = state.input.charCodeAt(++state.position); } while (ch !== 10 && ch !== 13 && ch !== 0); } if (is_EOL(ch)) { readLineBreak(state); ch = state.input.charCodeAt(state.position); lineBreaks++; state.lineIndent = 0; while (ch === 32) { state.lineIndent++; ch = state.input.charCodeAt(++state.position); } } else { break; } } if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) { throwWarning(state, "deficient indentation"); } return lineBreaks; } function testDocumentSeparator(state) { var _position = state.position, ch; ch = state.input.charCodeAt(_position); if ((ch === 45 || ch === 46) && ch === state.input.charCodeAt(_position + 1) && ch === state.input.charCodeAt(_position + 2)) { _position += 3; ch = state.input.charCodeAt(_position); if (ch === 0 || is_WS_OR_EOL(ch)) { return true; } } return false; } function writeFoldedLines(state, count) { if (count === 1) { state.result += " "; } else if (count > 1) { state.result += common.repeat("\n", count - 1); } } function readPlainScalar(state, nodeIndent, withinFlowCollection) { var preceding, following, captureStart, captureEnd, hasPendingContent, _line, _lineStart, _lineIndent, _kind = state.kind, _result = state.result, ch; ch = state.input.charCodeAt(state.position); if (is_WS_OR_EOL(ch) || is_FLOW_INDICATOR(ch) || ch === 35 || ch === 38 || ch === 42 || ch === 33 || ch === 124 || ch === 62 || ch === 39 || ch === 34 || ch === 37 || ch === 64 || ch === 96) { return false; } if (ch === 63 || ch === 45) { following = state.input.charCodeAt(state.position + 1); if (is_WS_OR_EOL(following) || withinFlowCollection && is_FLOW_INDICATOR(following)) { return false; } } state.kind = "scalar"; state.result = ""; captureStart = captureEnd = state.position; hasPendingContent = false; while (ch !== 0) { if (ch === 58) { following = state.input.charCodeAt(state.position + 1); if (is_WS_OR_EOL(following) || withinFlowCollection && is_FLOW_INDICATOR(following)) { break; } } else if (ch === 35) { preceding = state.input.charCodeAt(state.position - 1); if (is_WS_OR_EOL(preceding)) { break; } } else if (state.position === state.lineStart && testDocumentSeparator(state) || withinFlowCollection && is_FLOW_INDICATOR(ch)) { break; } else if (is_EOL(ch)) { _line = state.line; _lineStart = state.lineStart; _lineIndent = state.lineIndent; skipSeparationSpace(state, false, -1); if (state.lineIndent >= nodeIndent) { hasPendingContent = true; ch = state.input.charCodeAt(state.position); continue; } else { state.position = captureEnd; state.line = _line; state.lineStart = _lineStart; state.lineIndent = _lineIndent; break; } } if (hasPendingContent) { captureSegment(state, captureStart, captureEnd, false); writeFoldedLines(state, state.line - _line); captureStart = captureEnd = state.position; hasPendingContent = false; } if (!is_WHITE_SPACE(ch)) { captureEnd = state.position + 1; } ch = state.input.charCodeAt(++state.position); } captureSegment(state, captureStart, captureEnd, false); if (state.result) { return true; } state.kind = _kind; state.result = _result; return false; } function readSingleQuotedScalar(state, nodeIndent) { var ch, captureStart, captureEnd; ch = state.input.charCodeAt(state.position); if (ch !== 39) { return false; } state.kind = "scalar"; state.result = ""; state.position++; captureStart = captureEnd = state.position; while ((ch = state.input.charCodeAt(state.position)) !== 0) { if (ch === 39) { captureSegment(state, captureStart, state.position, true); ch = state.input.charCodeAt(++state.position); if (ch === 39) { captureStart = state.position; state.position++; captureEnd = state.position; } else { return true; } } else if (is_EOL(ch)) { captureSegment(state, captureStart, captureEnd, true); writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); captureStart = captureEnd = state.position; } else if (state.position === state.lineStart && testDocumentSeparator(state)) { throwError(state, "unexpected end of the document within a single quoted scalar"); } else { state.position++; captureEnd = state.position; } } throwError(state, "unexpected end of the stream within a single quoted scalar"); } function readDoubleQuotedScalar(state, nodeIndent) { var captureStart, captureEnd, hexLength, hexResult, tmp, ch; ch = state.input.charCodeAt(state.position); if (ch !== 34) { return false; } state.kind = "scalar"; state.result = ""; state.position++; captureStart = captureEnd = state.position; while ((ch = state.input.charCodeAt(state.position)) !== 0) { if (ch === 34) { captureSegment(state, captureStart, state.position, true); state.position++; return true; } else if (ch === 92) { captureSegment(state, captureStart, state.position, true); ch = state.input.charCodeAt(++state.position); if (is_EOL(ch)) { skipSeparationSpace(state, false, nodeIndent); } else if (ch < 256 && simpleEscapeCheck[ch]) { state.result += simpleEscapeMap[ch]; state.position++; } else if ((tmp = escapedHexLen(ch)) > 0) { hexLength = tmp; hexResult = 0; for (; hexLength > 0; hexLength--) { ch = state.input.charCodeAt(++state.position); if ((tmp = fromHexCode(ch)) >= 0) { hexResult = (hexResult << 4) + tmp; } else { throwError(state, "expected hexadecimal character"); } } state.result += charFromCodepoint(hexResult); state.position++; } else { throwError(state, "unknown escape sequence"); } captureStart = captureEnd = state.position; } else if (is_EOL(ch)) { captureSegment(state, captureStart, captureEnd, true); writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); captureStart = captureEnd = state.position; } else if (state.position === state.lineStart && testDocumentSeparator(state)) { throwError(state, "unexpected end of the document within a double quoted scalar"); } else { state.position++; captureEnd = state.position; } } throwError(state, "unexpected end of the stream within a double quoted scalar"); } function readFlowCollection(state, nodeIndent) { var readNext = true, _line, _lineStart, _pos, _tag = state.tag, _result, _anchor = state.anchor, following, terminator, isPair, isExplicitPair, isMapping, overridableKeys = /* @__PURE__ */ Object.create(null), keyNode, keyTag, valueNode, ch; ch = state.input.charCodeAt(state.position); if (ch === 91) { terminator = 93; isMapping = false; _result = []; } else if (ch === 123) { terminator = 125; isMapping = true; _result = {}; } else { return false; } if (state.anchor !== null) { state.anchorMap[state.anchor] = _result; } ch = state.input.charCodeAt(++state.position); while (ch !== 0) { skipSeparationSpace(state, true, nodeIndent); ch = state.input.charCodeAt(state.position); if (ch === terminator) { state.position++; state.tag = _tag; state.anchor = _anchor; state.kind = isMapping ? "mapping" : "sequence"; state.result = _result; return true; } else if (!readNext) { throwError(state, "missed comma between flow collection entries"); } else if (ch === 44) { throwError(state, "expected the node content, but found ','"); } keyTag = keyNode = valueNode = null; isPair = isExplicitPair = false; if (ch === 63) { following = state.input.charCodeAt(state.position + 1); if (is_WS_OR_EOL(following)) { isPair = isExplicitPair = true; state.position++; skipSeparationSpace(state, true, nodeIndent); } } _line = state.line; _lineStart = state.lineStart; _pos = state.position; composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); keyTag = state.tag; keyNode = state.result; skipSeparationSpace(state, true, nodeIndent); ch = state.input.charCodeAt(state.position); if ((isExplicitPair || state.line === _line) && ch === 58) { isPair = true; ch = state.input.charCodeAt(++state.position); skipSeparationSpace(state, true, nodeIndent); composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); valueNode = state.result; } if (isMapping) { storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos); } else if (isPair) { _result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos)); } else { _result.push(keyNode); } skipSeparationSpace(state, true, nodeIndent); ch = state.input.charCodeAt(state.position); if (ch === 44) { readNext = true; ch = state.input.charCodeAt(++state.position); } else { readNext = false; } } throwError(state, "unexpected end of the stream within a flow collection"); } function readBlockScalar(state, nodeIndent) { var captureStart, folding, chomping = CHOMPING_CLIP, didReadContent = false, detectedIndent = false, textIndent = nodeIndent, emptyLines = 0, atMoreIndented = false, tmp, ch; ch = state.input.charCodeAt(state.position); if (ch === 124) { folding = false; } else if (ch === 62) { folding = true; } else { return false; } state.kind = "scalar"; state.result = ""; while (ch !== 0) { ch = state.input.charCodeAt(++state.position); if (ch === 43 || ch === 45) { if (CHOMPING_CLIP === chomping) { chomping = ch === 43 ? CHOMPING_KEEP : CHOMPING_STRIP; } else { throwError(state, "repeat of a chomping mode identifier"); } } else if ((tmp = fromDecimalCode(ch)) >= 0) { if (tmp === 0) { throwError(state, "bad explicit indentation width of a block scalar; it cannot be less than one"); } else if (!detectedIndent) { textIndent = nodeIndent + tmp - 1; detectedIndent = true; } else { throwError(state, "repeat of an indentation width identifier"); } } else { break; } } if (is_WHITE_SPACE(ch)) { do { ch = state.input.charCodeAt(++state.position); } while (is_WHITE_SPACE(ch)); if (ch === 35) { do { ch = state.input.charCodeAt(++state.position); } while (!is_EOL(ch) && ch !== 0); } } while (ch !== 0) { readLineBreak(state); state.lineIndent = 0; ch = state.input.charCodeAt(state.position); while ((!detectedIndent || state.lineIndent < textIndent) && ch === 32) { state.lineIndent++; ch = state.input.charCodeAt(++state.position); } if (!detectedIndent && state.lineIndent > textIndent) { textIndent = state.lineIndent; } if (is_EOL(ch)) { emptyLines++; continue; } if (state.lineIndent < textIndent) { if (chomping === CHOMPING_KEEP) { state.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines); } else if (chomping === CHOMPING_CLIP) { if (didReadContent) { state.result += "\n"; } } break; } if (folding) { if (is_WHITE_SPACE(ch)) { atMoreIndented = true; state.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines); } else if (atMoreIndented) { atMoreIndented = false; state.result += common.repeat("\n", emptyLines + 1); } else if (emptyLines === 0) { if (didReadContent) { state.result += " "; } } else { state.result += common.repeat("\n", emptyLines); } } else { state.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines); } didReadContent = true; detectedIndent = true; emptyLines = 0; captureStart = state.position; while (!is_EOL(ch) && ch !== 0) { ch = state.input.charCodeAt(++state.position); } captureSegment(state, captureStart, state.position, false); } return true; } function readBlockSequence(state, nodeIndent) { var _line, _tag = state.tag, _anchor = state.anchor, _result = [], following, detected = false, ch; if (state.firstTabInLine !== -1) return false; if (state.anchor !== null) { state.anchorMap[state.anchor] = _result; } ch = state.input.charCodeAt(state.position); while (ch !== 0) { if (state.firstTabInLine !== -1) { state.position = state.firstTabInLine; throwError(state, "tab characters must not be used in indentation"); } if (ch !== 45) { break; } following = state.input.charCodeAt(state.position + 1); if (!is_WS_OR_EOL(following)) { break; } detected = true; state.position++; if (skipSeparationSpace(state, true, -1)) { if (state.lineIndent <= nodeIndent) { _result.push(null); ch = state.input.charCodeAt(state.position); continue; } } _line = state.line; composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true); _result.push(state.result); skipSeparationSpace(state, true, -1); ch = state.input.charCodeAt(state.position); if ((state.line === _line || state.lineIndent > nodeIndent) && ch !== 0) { throwError(state, "bad indentation of a sequence entry"); } else if (state.lineIndent < nodeIndent) { break; } } if (detected) { state.tag = _tag; state.anchor = _anchor; state.kind = "sequence"; state.result = _result; return true; } return false; } function readBlockMapping(state, nodeIndent, flowIndent) { var following, allowCompact, _line, _keyLine, _keyLineStart, _keyPos, _tag = state.tag, _anchor = state.anchor, _result = {}, overridableKeys = /* @__PURE__ */ Object.create(null), keyTag = null, keyNode = null, valueNode = null, atExplicitKey = false, detected = false, ch; if (state.firstTabInLine !== -1) return false; if (state.anchor !== null) { state.anchorMap[state.anchor] = _result; } ch = state.input.charCodeAt(state.position); while (ch !== 0) { if (!atExplicitKey && state.firstTabInLine !== -1) { state.position = state.firstTabInLine; throwError(state, "tab characters must not be used in indentation"); } following = state.input.charCodeAt(state.position + 1); _line = state.line; if ((ch === 63 || ch === 58) && is_WS_OR_EOL(following)) { if (ch === 63) { if (atExplicitKey) { storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos); keyTag = keyNode = valueNode = null; } detected = true; atExplicitKey = true; allowCompact = true; } else if (atExplicitKey) { atExplicitKey = false; allowCompact = true; } else { throwError(state, "incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"); } state.position += 1; ch = following; } else { _keyLine = state.line; _keyLineStart = state.lineStart; _keyPos = state.position; if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) { break; } if (state.line === _line) { ch = state.input.charCodeAt(state.position); while (is_WHITE_SPACE(ch)) { ch = state.input.charCodeAt(++state.position); } if (ch === 58) { ch = state.input.charCodeAt(++state.position); if (!is_WS_OR_EOL(ch)) { throwError(state, "a whitespace character is expected after the key-value separator within a block mapping"); } if (atExplicitKey) { storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos); keyTag = keyNode = valueNode = null; } detected = true; atExplicitKey = false; allowCompact = false; keyTag = state.tag; keyNode = state.result; } else if (detected) { throwError(state, "can not read an implicit mapping pair; a colon is missed"); } else { state.tag = _tag; state.anchor = _anchor; return true; } } else if (detected) { throwError(state, "can not read a block mapping entry; a multiline key may not be an implicit key"); } else { state.tag = _tag; state.anchor = _anchor; return true; } } if (state.line === _line || state.lineIndent > nodeIndent) { if (atExplicitKey) { _keyLine = state.line; _keyLineStart = state.lineStart; _keyPos = state.position; } if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) { if (atExplicitKey) { keyNode = state.result; } else { valueNode = state.result; } } if (!atExplicitKey) { storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos); keyTag = keyNode = valueNode = null; } skipSeparationSpace(state, true, -1); ch = state.input.charCodeAt(state.position); } if ((state.line === _line || state.lineIndent > nodeIndent) && ch !== 0) { throwError(state, "bad indentation of a mapping entry"); } else if (state.lineIndent < nodeIndent) { break; } } if (atExplicitKey) { storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos); } if (detected) { state.tag = _tag; state.anchor = _anchor; state.kind = "mapping"; state.result = _result; } return detected; } function readTagProperty(state) { var _position, isVerbatim = false, isNamed = false, tagHandle, tagName, ch; ch = state.input.charCodeAt(state.position); if (ch !== 33) return false; if (state.tag !== null) { throwError(state, "duplication of a tag property"); } ch = state.input.charCodeAt(++state.position); if (ch === 60) { isVerbatim = true; ch = state.input.charCodeAt(++state.position); } else if (ch === 33) { isNamed = true; tagHandle = "!!"; ch = state.input.charCodeAt(++state.position); } else { tagHandle = "!"; } _position = state.position; if (isVerbatim) { do { ch = state.input.charCodeAt(++state.position); } while (ch !== 0 && ch !== 62); if (state.position < state.length) { tagName = state.input.slice(_position, state.position); ch = state.input.charCodeAt(++state.position); } else { throwError(state, "unexpected end of the stream within a verbatim tag"); } } else { while (ch !== 0 && !is_WS_OR_EOL(ch)) { if (ch === 33) { if (!isNamed) { tagHandle = state.input.slice(_position - 1, state.position + 1); if (!PATTERN_TAG_HANDLE.test(tagHandle)) { throwError(state, "named tag handle cannot contain such characters"); } isNamed = true; _position = state.position + 1; } else { throwError(state, "tag suffix cannot contain exclamation marks"); } } ch = state.input.charCodeAt(++state.position); } tagName = state.input.slice(_position, state.position); if (PATTERN_FLOW_INDICATORS.test(tagName)) { throwError(state, "tag suffix cannot contain flow indicator characters"); } } if (tagName && !PATTERN_TAG_URI.test(tagName)) { throwError(state, "tag name cannot contain such characters: " + tagName); } try { tagName = decodeURIComponent(tagName); } catch (err) { throwError(state, "tag name is malformed: " + tagName); } if (isVerbatim) { state.tag = tagName; } else if (_hasOwnProperty$1.call(state.tagMap, tagHandle)) { state.tag = state.tagMap[tagHandle] + tagName; } else if (tagHandle === "!") { state.tag = "!" + tagName; } else if (tagHandle === "!!") { state.tag = "tag:yaml.org,2002:" + tagName; } else { throwError(state, 'undeclared tag handle "' + tagHandle + '"'); } return true; } function readAnchorProperty(state) { var _position, ch; ch = state.input.charCodeAt(state.position); if (ch !== 38) return false; if (state.anchor !== null) { throwError(state, "duplication of an anchor property"); } ch = state.input.charCodeAt(++state.position); _position = state.position; while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { ch = state.input.charCodeAt(++state.position); } if (state.position === _position) { throwError(state, "name of an anchor node must contain at least one character"); } state.anchor = state.input.slice(_position, state.position); return true; } function readAlias(state) { var _position, alias, ch; ch = state.input.charCodeAt(state.position); if (ch !== 42) return false; ch = state.input.charCodeAt(++state.position); _position = state.position; while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { ch = state.input.charCodeAt(++state.position); } if (state.position === _position) { throwError(state, "name of an alias node must contain at least one character"); } alias = state.input.slice(_position, state.position); if (!_hasOwnProperty$1.call(state.anchorMap, alias)) { throwError(state, 'unidentified alias "' + alias + '"'); } state.result = state.anchorMap[alias]; skipSeparationSpace(state, true, -1); return true; } function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) { var allowBlockStyles, allowBlockScalars, allowBlockCollections, indentStatus = 1, atNewLine = false, hasContent = false, typeIndex, typeQuantity, typeList, type2, flowIndent, blockIndent; if (state.listener !== null) { state.listener("open", state); } state.tag = null; state.anchor = null; state.kind = null; state.result = null; allowBlockStyles = allowBlockScalars = allowBlockCollections = CONTEXT_BLOCK_OUT === nodeContext || CONTEXT_BLOCK_IN === nodeContext; if (allowToSeek) { if (skipSeparationSpace(state, true, -1)) { atNewLine = true; if (state.lineIndent > parentIndent) { indentStatus = 1; } else if (state.lineIndent === parentIndent) { indentStatus = 0; } else if (state.lineIndent < parentIndent) { indentStatus = -1; } } } if (indentStatus === 1) { while (readTagProperty(state) || readAnchorProperty(state)) { if (skipSeparationSpace(state, true, -1)) { atNewLine = true; allowBlockCollections = allowBlockStyles; if (state.lineIndent > parentIndent) { indentStatus = 1; } else if (state.lineIndent === parentIndent) { indentStatus = 0; } else if (state.lineIndent < parentIndent) { indentStatus = -1; } } else { allowBlockCollections = false; } } } if (allowBlockCollections) { allowBlockCollections = atNewLine || allowCompact; } if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) { if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) { flowIndent = parentIndent; } else { flowIndent = parentIndent + 1; } blockIndent = state.position - state.lineStart; if (indentStatus === 1) { if (allowBlockCollections && (readBlockSequence(state, blockIndent) || readBlockMapping(state, blockIndent, flowIndent)) || readFlowCollection(state, flowIndent)) { hasContent = true; } else { if (allowBlockScalars && readBlockScalar(state, flowIndent) || readSingleQuotedScalar(state, flowIndent) || readDoubleQuotedScalar(state, flowIndent)) { hasContent = true; } else if (readAlias(state)) { hasContent = true; if (state.tag !== null || state.anchor !== null) { throwError(state, "alias node should not have any properties"); } } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) { hasContent = true; if (state.tag === null) { state.tag = "?"; } } if (state.anchor !== null) { state.anchorMap[state.anchor] = state.result; } } } else if (indentStatus === 0) { hasContent = allowBlockCollections && readBlockSequence(state, blockIndent); } } if (state.tag === null) { if (state.anchor !== null) { state.anchorMap[state.anchor] = state.result; } } else if (state.tag === "?") { if (state.result !== null && state.kind !== "scalar") { throwError(state, 'unacceptable node kind for ! tag; it should be "scalar", not "' + state.kind + '"'); } for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) { type2 = state.implicitTypes[typeIndex]; if (type2.resolve(state.result)) { state.result = type2.construct(state.result); state.tag = type2.tag; if (state.anchor !== null) { state.anchorMap[state.anchor] = state.result; } break; } } } else if (state.tag !== "!") { if (_hasOwnProperty$1.call(state.typeMap[state.kind || "fallback"], state.tag)) { type2 = state.typeMap[state.kind || "fallback"][state.tag]; } else { type2 = null; typeList = state.typeMap.multi[state.kind || "fallback"]; for (typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) { if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) { type2 = typeList[typeIndex]; break; } } } if (!type2) { throwError(state, "unknown tag !<" + state.tag + ">"); } if (state.result !== null && type2.kind !== state.kind) { throwError(state, "unacceptable node kind for !<" + state.tag + '> tag; it should be "' + type2.kind + '", not "' + state.kind + '"'); } if (!type2.resolve(state.result, state.tag)) { throwError(state, "cannot resolve a node with !<" + state.tag + "> explicit tag"); } else { state.result = type2.construct(state.result, state.tag); if (state.anchor !== null) { state.anchorMap[state.anchor] = state.result; } } } if (state.listener !== null) { state.listener("close", state); } return state.tag !== null || state.anchor !== null || hasContent; } function readDocument(state) { var documentStart = state.position, _position, directiveName, directiveArgs, hasDirectives = false, ch; state.version = null; state.checkLineBreaks = state.legacy; state.tagMap = /* @__PURE__ */ Object.create(null); state.anchorMap = /* @__PURE__ */ Object.create(null); while ((ch = state.input.charCodeAt(state.position)) !== 0) { skipSeparationSpace(state, true, -1); ch = state.input.charCodeAt(state.position); if (state.lineIndent > 0 || ch !== 37) { break; } hasDirectives = true; ch = state.input.charCodeAt(++state.position); _position = state.position; while (ch !== 0 && !is_WS_OR_EOL(ch)) { ch = state.input.charCodeAt(++state.position); } directiveName = state.input.slice(_position, state.position); directiveArgs = []; if (directiveName.length < 1) { throwError(state, "directive name must not be less than one character in length"); } while (ch !== 0) { while (is_WHITE_SPACE(ch)) { ch = state.input.charCodeAt(++state.position); } if (ch === 35) { do { ch = state.input.charCodeAt(++state.position); } while (ch !== 0 && !is_EOL(ch)); break; } if (is_EOL(ch)) break; _position = state.position; while (ch !== 0 && !is_WS_OR_EOL(ch)) { ch = state.input.charCodeAt(++state.position); } directiveArgs.push(state.input.slice(_position, state.position)); } if (ch !== 0) readLineBreak(state); if (_hasOwnProperty$1.call(directiveHandlers, directiveName)) { directiveHandlers[directiveName](state, directiveName, directiveArgs); } else { throwWarning(state, 'unknown document directive "' + directiveName + '"'); } } skipSeparationSpace(state, true, -1); if (state.lineIndent === 0 && state.input.charCodeAt(state.position) === 45 && state.input.charCodeAt(state.position + 1) === 45 && state.input.charCodeAt(state.position + 2) === 45) { state.position += 3; skipSeparationSpace(state, true, -1); } else if (hasDirectives) { throwError(state, "directives end mark is expected"); } composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true); skipSeparationSpace(state, true, -1); if (state.checkLineBreaks && PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) { throwWarning(state, "non-ASCII line breaks are interpreted as content"); } state.documents.push(state.result); if (state.position === state.lineStart && testDocumentSeparator(state)) { if (state.input.charCodeAt(state.position) === 46) { state.position += 3; skipSeparationSpace(state, true, -1); } return; } if (state.position < state.length - 1) { throwError(state, "end of the stream or a document separator is expected"); } else { return; } } function loadDocuments(input, options) { input = String(input); options = options || {}; if (input.length !== 0) { if (input.charCodeAt(input.length - 1) !== 10 && input.charCodeAt(input.length - 1) !== 13) { input += "\n"; } if (input.charCodeAt(0) === 65279) { input = input.slice(1); } } var state = new State$1(input, options); var nullpos = input.indexOf("\0"); if (nullpos !== -1) { state.position = nullpos; throwError(state, "null byte is not allowed in input"); } state.input += "\0"; while (state.input.charCodeAt(state.position) === 32) { state.lineIndent += 1; state.position += 1; } while (state.position < state.length - 1) { readDocument(state); } return state.documents; } function loadAll$1(input, iterator, options) { if (iterator !== null && typeof iterator === "object" && typeof options === "undefined") { options = iterator; iterator = null; } var documents = loadDocuments(input, options); if (typeof iterator !== "function") { return documents; } for (var index = 0, length = documents.length; index < length; index += 1) { iterator(documents[index]); } } function load$1(input, options) { var documents = loadDocuments(input, options); if (documents.length === 0) { return void 0; } else if (documents.length === 1) { return documents[0]; } throw new exception("expected a single document in the stream, but found more"); } function compileStyleMap(schema2, map2) { var result, keys, index, length, tag, style, type2; if (map2 === null) return {}; result = {}; keys = Object.keys(map2); for (index = 0, length = keys.length; index < length; index += 1) { tag = keys[index]; style = String(map2[tag]); if (tag.slice(0, 2) === "!!") { tag = "tag:yaml.org,2002:" + tag.slice(2); } type2 = schema2.compiledTypeMap["fallback"][tag]; if (type2 && _hasOwnProperty.call(type2.styleAliases, style)) { style = type2.styleAliases[style]; } result[tag] = style; } return result; } function encodeHex(character) { var string2, handle, length; string2 = character.toString(16).toUpperCase(); if (character <= 255) { handle = "x"; length = 2; } else if (character <= 65535) { handle = "u"; length = 4; } else if (character <= 4294967295) { handle = "U"; length = 8; } else { throw new exception("code point within a string may not be greater than 0xFFFFFFFF"); } return "\\" + handle + common.repeat("0", length - string2.length) + string2; } function State(options) { this.schema = options["schema"] || _default; this.indent = Math.max(1, options["indent"] || 2); this.noArrayIndent = options["noArrayIndent"] || false; this.skipInvalid = options["skipInvalid"] || false; this.flowLevel = common.isNothing(options["flowLevel"]) ? -1 : options["flowLevel"]; this.styleMap = compileStyleMap(this.schema, options["styles"] || null); this.sortKeys = options["sortKeys"] || false; this.lineWidth = options["lineWidth"] || 80; this.noRefs = options["noRefs"] || false; this.noCompatMode = options["noCompatMode"] || false; this.condenseFlow = options["condenseFlow"] || false; this.quotingType = options["quotingType"] === '"' ? QUOTING_TYPE_DOUBLE : QUOTING_TYPE_SINGLE; this.forceQuotes = options["forceQuotes"] || false; this.replacer = typeof options["replacer"] === "function" ? options["replacer"] : null; this.implicitTypes = this.schema.compiledImplicit; this.explicitTypes = this.schema.compiledExplicit; this.tag = null; this.result = ""; this.duplicates = []; this.usedDuplicates = null; } function indentString(string2, spaces) { var ind = common.repeat(" ", spaces), position = 0, next = -1, result = "", line2, length = string2.length; while (position < length) { next = string2.indexOf("\n", position); if (next === -1) { line2 = string2.slice(position); position = length; } else { line2 = string2.slice(position, next + 1); position = next + 1; } if (line2.length && line2 !== "\n") result += ind; result += line2; } return result; } function generateNextLine(state, level) { return "\n" + common.repeat(" ", state.indent * level); } function testImplicitResolving(state, str2) { var index, length, type2; for (index = 0, length = state.implicitTypes.length; index < length; index += 1) { type2 = state.implicitTypes[index]; if (type2.resolve(str2)) { return true; } } return false; } function isWhitespace(c2) { return c2 === CHAR_SPACE || c2 === CHAR_TAB; } function isPrintable(c2) { return 32 <= c2 && c2 <= 126 || 161 <= c2 && c2 <= 55295 && c2 !== 8232 && c2 !== 8233 || 57344 <= c2 && c2 <= 65533 && c2 !== CHAR_BOM || 65536 <= c2 && c2 <= 1114111; } function isNsCharOrWhitespace(c2) { return isPrintable(c2) && c2 !== CHAR_BOM && c2 !== CHAR_CARRIAGE_RETURN && c2 !== CHAR_LINE_FEED; } function isPlainSafe(c2, prev, inblock) { var cIsNsCharOrWhitespace = isNsCharOrWhitespace(c2); var cIsNsChar = cIsNsCharOrWhitespace && !isWhitespace(c2); return ( // ns-plain-safe (inblock ? ( // c = flow-in cIsNsCharOrWhitespace ) : cIsNsCharOrWhitespace && c2 !== CHAR_COMMA && c2 !== CHAR_LEFT_SQUARE_BRACKET && c2 !== CHAR_RIGHT_SQUARE_BRACKET && c2 !== CHAR_LEFT_CURLY_BRACKET && c2 !== CHAR_RIGHT_CURLY_BRACKET) && c2 !== CHAR_SHARP && !(prev === CHAR_COLON && !cIsNsChar) || isNsCharOrWhitespace(prev) && !isWhitespace(prev) && c2 === CHAR_SHARP || prev === CHAR_COLON && cIsNsChar ); } function isPlainSafeFirst(c2) { return isPrintable(c2) && c2 !== CHAR_BOM && !isWhitespace(c2) && c2 !== CHAR_MINUS && c2 !== CHAR_QUESTION && c2 !== CHAR_COLON && c2 !== CHAR_COMMA && c2 !== CHAR_LEFT_SQUARE_BRACKET && c2 !== CHAR_RIGHT_SQUARE_BRACKET && c2 !== CHAR_LEFT_CURLY_BRACKET && c2 !== CHAR_RIGHT_CURLY_BRACKET && c2 !== CHAR_SHARP && c2 !== CHAR_AMPERSAND && c2 !== CHAR_ASTERISK && c2 !== CHAR_EXCLAMATION && c2 !== CHAR_VERTICAL_LINE && c2 !== CHAR_EQUALS && c2 !== CHAR_GREATER_THAN && c2 !== CHAR_SINGLE_QUOTE && c2 !== CHAR_DOUBLE_QUOTE && c2 !== CHAR_PERCENT && c2 !== CHAR_COMMERCIAL_AT && c2 !== CHAR_GRAVE_ACCENT; } function isPlainSafeLast(c2) { return !isWhitespace(c2) && c2 !== CHAR_COLON; } function codePointAt(string2, pos2) { var first = string2.charCodeAt(pos2), second; if (first >= 55296 && first <= 56319 && pos2 + 1 < string2.length) { second = string2.charCodeAt(pos2 + 1); if (second >= 56320 && second <= 57343) { return (first - 55296) * 1024 + second - 56320 + 65536; } } return first; } function needIndentIndicator(string2) { var leadingSpaceRe = /^\n* /; return leadingSpaceRe.test(string2); } function chooseScalarStyle(string2, singleLineOnly, indentPerLevel, lineWidth, testAmbiguousType, quotingType, forceQuotes, inblock) { var i; var char = 0; var prevChar = null; var hasLineBreak = false; var hasFoldableLine = false; var shouldTrackWidth = lineWidth !== -1; var previousLineBreak = -1; var plain = isPlainSafeFirst(codePointAt(string2, 0)) && isPlainSafeLast(codePointAt(string2, string2.length - 1)); if (singleLineOnly || forceQuotes) { for (i = 0; i < string2.length; char >= 65536 ? i += 2 : i++) { char = codePointAt(string2, i); if (!isPrintable(char)) { return STYLE_DOUBLE; } plain = plain && isPlainSafe(char, prevChar, inblock); prevChar = char; } } else { for (i = 0; i < string2.length; char >= 65536 ? i += 2 : i++) { char = codePointAt(string2, i); if (char === CHAR_LINE_FEED) { hasLineBreak = true; if (shouldTrackWidth) { hasFoldableLine = hasFoldableLine || // Foldable line = too long, and not more-indented. i - previousLineBreak - 1 > lineWidth && string2[previousLineBreak + 1] !== " "; previousLineBreak = i; } } else if (!isPrintable(char)) { return STYLE_DOUBLE; } plain = plain && isPlainSafe(char, prevChar, inblock); prevChar = char; } hasFoldableLine = hasFoldableLine || shouldTrackWidth && (i - previousLineBreak - 1 > lineWidth && string2[previousLineBreak + 1] !== " "); } if (!hasLineBreak && !hasFoldableLine) { if (plain && !forceQuotes && !testAmbiguousType(string2)) { return STYLE_PLAIN; } return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE; } if (indentPerLevel > 9 && needIndentIndicator(string2)) { return STYLE_DOUBLE; } if (!forceQuotes) { return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL; } return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE; } function writeScalar(state, string2, level, iskey, inblock) { state.dump = function() { if (string2.length === 0) { return state.quotingType === QUOTING_TYPE_DOUBLE ? '""' : "''"; } if (!state.noCompatMode) { if (DEPRECATED_BOOLEANS_SYNTAX.indexOf(string2) !== -1 || DEPRECATED_BASE60_SYNTAX.test(string2)) { return state.quotingType === QUOTING_TYPE_DOUBLE ? '"' + string2 + '"' : "'" + string2 + "'"; } } var indent = state.indent * Math.max(1, level); var lineWidth = state.lineWidth === -1 ? -1 : Math.max(Math.min(state.lineWidth, 40), state.lineWidth - indent); var singleLineOnly = iskey || state.flowLevel > -1 && level >= state.flowLevel; function testAmbiguity(string3) { return testImplicitResolving(state, string3); } switch (chooseScalarStyle( string2, singleLineOnly, state.indent, lineWidth, testAmbiguity, state.quotingType, state.forceQuotes && !iskey, inblock )) { case STYLE_PLAIN: return string2; case STYLE_SINGLE: return "'" + string2.replace(/'/g, "''") + "'"; case STYLE_LITERAL: return "|" + blockHeader(string2, state.indent) + dropEndingNewline(indentString(string2, indent)); case STYLE_FOLDED: return ">" + blockHeader(string2, state.indent) + dropEndingNewline(indentString(foldString(string2, lineWidth), indent)); case STYLE_DOUBLE: return '"' + escapeString(string2) + '"'; default: throw new exception("impossible error: invalid scalar style"); } }(); } function blockHeader(string2, indentPerLevel) { var indentIndicator = needIndentIndicator(string2) ? String(indentPerLevel) : ""; var clip = string2[string2.length - 1] === "\n"; var keep = clip && (string2[string2.length - 2] === "\n" || string2 === "\n"); var chomp = keep ? "+" : clip ? "" : "-"; return indentIndicator + chomp + "\n"; } function dropEndingNewline(string2) { return string2[string2.length - 1] === "\n" ? string2.slice(0, -1) : string2; } function foldString(string2, width) { var lineRe = /(\n+)([^\n]*)/g; var result = function() { var nextLF = string2.indexOf("\n"); nextLF = nextLF !== -1 ? nextLF : string2.length; lineRe.lastIndex = nextLF; return foldLine(string2.slice(0, nextLF), width); }(); var prevMoreIndented = string2[0] === "\n" || string2[0] === " "; var moreIndented; var match2; while (match2 = lineRe.exec(string2)) { var prefix = match2[1], line2 = match2[2]; moreIndented = line2[0] === " "; result += prefix + (!prevMoreIndented && !moreIndented && line2 !== "" ? "\n" : "") + foldLine(line2, width); prevMoreIndented = moreIndented; } return result; } function foldLine(line2, width) { if (line2 === "" || line2[0] === " ") return line2; var breakRe = / [^ ]/g; var match2; var start = 0, end, curr = 0, next = 0; var result = ""; while (match2 = breakRe.exec(line2)) { next = match2.index; if (next - start > width) { end = curr > start ? curr : next; result += "\n" + line2.slice(start, end); start = end + 1; } curr = next; } result += "\n"; if (line2.length - start > width && curr > start) { result += line2.slice(start, curr) + "\n" + line2.slice(curr + 1); } else { result += line2.slice(start); } return result.slice(1); } function escapeString(string2) { var result = ""; var char = 0; var escapeSeq; for (var i = 0; i < string2.length; char >= 65536 ? i += 2 : i++) { char = codePointAt(string2, i); escapeSeq = ESCAPE_SEQUENCES[char]; if (!escapeSeq && isPrintable(char)) { result += string2[i]; if (char >= 65536) result += string2[i + 1]; } else { result += escapeSeq || encodeHex(char); } } return result; } function writeFlowSequence(state, level, object) { var _result = "", _tag = state.tag, index, length, value; for (index = 0, length = object.length; index < length; index += 1) { value = object[index]; if (state.replacer) { value = state.replacer.call(object, String(index), value); } if (writeNode(state, level, value, false, false) || typeof value === "undefined" && writeNode(state, level, null, false, false)) { if (_result !== "") _result += "," + (!state.condenseFlow ? " " : ""); _result += state.dump; } } state.tag = _tag; state.dump = "[" + _result + "]"; } function writeBlockSequence(state, level, object, compact) { var _result = "", _tag = state.tag, index, length, value; for (index = 0, length = object.length; index < length; index += 1) { value = object[index]; if (state.replacer) { value = state.replacer.call(object, String(index), value); } if (writeNode(state, level + 1, value, true, true, false, true) || typeof value === "undefined" && writeNode(state, level + 1, null, true, true, false, true)) { if (!compact || _result !== "") { _result += generateNextLine(state, level); } if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { _result += "-"; } else { _result += "- "; } _result += state.dump; } } state.tag = _tag; state.dump = _result || "[]"; } function writeFlowMapping(state, level, object) { var _result = "", _tag = state.tag, objectKeyList = Object.keys(object), index, length, objectKey, objectValue, pairBuffer; for (index = 0, length = objectKeyList.length; index < length; index += 1) { pairBuffer = ""; if (_result !== "") pairBuffer += ", "; if (state.condenseFlow) pairBuffer += '"'; objectKey = objectKeyList[index]; objectValue = object[objectKey]; if (state.replacer) { objectValue = state.replacer.call(object, objectKey, objectValue); } if (!writeNode(state, level, objectKey, false, false)) { continue; } if (state.dump.length > 1024) pairBuffer += "? "; pairBuffer += state.dump + (state.condenseFlow ? '"' : "") + ":" + (state.condenseFlow ? "" : " "); if (!writeNode(state, level, objectValue, false, false)) { continue; } pairBuffer += state.dump; _result += pairBuffer; } state.tag = _tag; state.dump = "{" + _result + "}"; } function writeBlockMapping(state, level, object, compact) { var _result = "", _tag = state.tag, objectKeyList = Object.keys(object), index, length, objectKey, objectValue, explicitPair, pairBuffer; if (state.sortKeys === true) { objectKeyList.sort(); } else if (typeof state.sortKeys === "function") { objectKeyList.sort(state.sortKeys); } else if (state.sortKeys) { throw new exception("sortKeys must be a boolean or a function"); } for (index = 0, length = objectKeyList.length; index < length; index += 1) { pairBuffer = ""; if (!compact || _result !== "") { pairBuffer += generateNextLine(state, level); } objectKey = objectKeyList[index]; objectValue = object[objectKey]; if (state.replacer) { objectValue = state.replacer.call(object, objectKey, objectValue); } if (!writeNode(state, level + 1, objectKey, true, true, true)) { continue; } explicitPair = state.tag !== null && state.tag !== "?" || state.dump && state.dump.length > 1024; if (explicitPair) { if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { pairBuffer += "?"; } else { pairBuffer += "? "; } } pairBuffer += state.dump; if (explicitPair) { pairBuffer += generateNextLine(state, level); } if (!writeNode(state, level + 1, objectValue, true, explicitPair)) { continue; } if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { pairBuffer += ":"; } else { pairBuffer += ": "; } pairBuffer += state.dump; _result += pairBuffer; } state.tag = _tag; state.dump = _result || "{}"; } function detectType(state, object, explicit) { var _result, typeList, index, length, type2, style; typeList = explicit ? state.explicitTypes : state.implicitTypes; for (index = 0, length = typeList.length; index < length; index += 1) { type2 = typeList[index]; if ((type2.instanceOf || type2.predicate) && (!type2.instanceOf || typeof object === "object" && object instanceof type2.instanceOf) && (!type2.predicate || type2.predicate(object))) { if (explicit) { if (type2.multi && type2.representName) { state.tag = type2.representName(object); } else { state.tag = type2.tag; } } else { state.tag = "?"; } if (type2.represent) { style = state.styleMap[type2.tag] || type2.defaultStyle; if (_toString.call(type2.represent) === "[object Function]") { _result = type2.represent(object, style); } else if (_hasOwnProperty.call(type2.represent, style)) { _result = type2.represent[style](object, style); } else { throw new exception("!<" + type2.tag + '> tag resolver accepts not "' + style + '" style'); } state.dump = _result; } return true; } } return false; } function writeNode(state, level, object, block, compact, iskey, isblockseq) { state.tag = null; state.dump = object; if (!detectType(state, object, false)) { detectType(state, object, true); } var type2 = _toString.call(state.dump); var inblock = block; var tagStr; if (block) { block = state.flowLevel < 0 || state.flowLevel > level; } var objectOrArray = type2 === "[object Object]" || type2 === "[object Array]", duplicateIndex, duplicate; if (objectOrArray) { duplicateIndex = state.duplicates.indexOf(object); duplicate = duplicateIndex !== -1; } if (state.tag !== null && state.tag !== "?" || duplicate || state.indent !== 2 && level > 0) { compact = false; } if (duplicate && state.usedDuplicates[duplicateIndex]) { state.dump = "*ref_" + duplicateIndex; } else { if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) { state.usedDuplicates[duplicateIndex] = true; } if (type2 === "[object Object]") { if (block && Object.keys(state.dump).length !== 0) { writeBlockMapping(state, level, state.dump, compact); if (duplicate) { state.dump = "&ref_" + duplicateIndex + state.dump; } } else { writeFlowMapping(state, level, state.dump); if (duplicate) { state.dump = "&ref_" + duplicateIndex + " " + state.dump; } } } else if (type2 === "[object Array]") { if (block && state.dump.length !== 0) { if (state.noArrayIndent && !isblockseq && level > 0) { writeBlockSequence(state, level - 1, state.dump, compact); } else { writeBlockSequence(state, level, state.dump, compact); } if (duplicate) { state.dump = "&ref_" + duplicateIndex + state.dump; } } else { writeFlowSequence(state, level, state.dump); if (duplicate) { state.dump = "&ref_" + duplicateIndex + " " + state.dump; } } } else if (type2 === "[object String]") { if (state.tag !== "?") { writeScalar(state, state.dump, level, iskey, inblock); } } else if (type2 === "[object Undefined]") { return false; } else { if (state.skipInvalid) return false; throw new exception("unacceptable kind of an object to dump " + type2); } if (state.tag !== null && state.tag !== "?") { tagStr = encodeURI( state.tag[0] === "!" ? state.tag.slice(1) : state.tag ).replace(/!/g, "%21"); if (state.tag[0] === "!") { tagStr = "!" + tagStr; } else if (tagStr.slice(0, 18) === "tag:yaml.org,2002:") { tagStr = "!!" + tagStr.slice(18); } else { tagStr = "!<" + tagStr + ">"; } state.dump = tagStr + " " + state.dump; } } return true; } function getDuplicateReferences(object, state) { var objects = [], duplicatesIndexes = [], index, length; inspectNode(object, objects, duplicatesIndexes); for (index = 0, length = duplicatesIndexes.length; index < length; index += 1) { state.duplicates.push(objects[duplicatesIndexes[index]]); } state.usedDuplicates = new Array(length); } function inspectNode(object, objects, duplicatesIndexes) { var objectKeyList, index, length; if (object !== null && typeof object === "object") { index = objects.indexOf(object); if (index !== -1) { if (duplicatesIndexes.indexOf(index) === -1) { duplicatesIndexes.push(index); } } else { objects.push(object); if (Array.isArray(object)) { for (index = 0, length = object.length; index < length; index += 1) { inspectNode(object[index], objects, duplicatesIndexes); } } else { objectKeyList = Object.keys(object); for (index = 0, length = objectKeyList.length; index < length; index += 1) { inspectNode(object[objectKeyList[index]], objects, duplicatesIndexes); } } } } } function dump$1(input, options) { options = options || {}; var state = new State(options); if (!state.noRefs) getDuplicateReferences(input, state); var value = input; if (state.replacer) { value = state.replacer.call({ "": value }, "", value); } if (writeNode(state, 0, value, true, true)) return state.dump + "\n"; return ""; } function renamed(from, to) { return function() { throw new Error("Function yaml." + from + " is removed in js-yaml 4. Use yaml." + to + " instead, which is now safe by default."); }; } var isNothing_1, isObject_1, toArray_1, repeat_1, isNegativeZero_1, extend_1, common, exception, snippet, TYPE_CONSTRUCTOR_OPTIONS, YAML_NODE_KINDS, type, schema, str, seq, map, failsafe, _null, bool, int, YAML_FLOAT_PATTERN, SCIENTIFIC_WITHOUT_DOT, float, json, core, YAML_DATE_REGEXP, YAML_TIMESTAMP_REGEXP, timestamp, merge, BASE64_MAP, binary, _hasOwnProperty$3, _toString$2, omap, _toString$1, pairs, _hasOwnProperty$2, set, _default, _hasOwnProperty$1, CONTEXT_FLOW_IN, CONTEXT_FLOW_OUT, CONTEXT_BLOCK_IN, CONTEXT_BLOCK_OUT, CHOMPING_CLIP, CHOMPING_STRIP, CHOMPING_KEEP, PATTERN_NON_PRINTABLE, PATTERN_NON_ASCII_LINE_BREAKS, PATTERN_FLOW_INDICATORS, PATTERN_TAG_HANDLE, PATTERN_TAG_URI, simpleEscapeCheck, simpleEscapeMap, i, directiveHandlers, loadAll_1, load_1, loader, _toString, _hasOwnProperty, CHAR_BOM, CHAR_TAB, CHAR_LINE_FEED, CHAR_CARRIAGE_RETURN, CHAR_SPACE, CHAR_EXCLAMATION, CHAR_DOUBLE_QUOTE, CHAR_SHARP, CHAR_PERCENT, CHAR_AMPERSAND, CHAR_SINGLE_QUOTE, CHAR_ASTERISK, CHAR_COMMA, CHAR_MINUS, CHAR_COLON, CHAR_EQUALS, CHAR_GREATER_THAN, CHAR_QUESTION, CHAR_COMMERCIAL_AT, CHAR_LEFT_SQUARE_BRACKET, CHAR_RIGHT_SQUARE_BRACKET, CHAR_GRAVE_ACCENT, CHAR_LEFT_CURLY_BRACKET, CHAR_VERTICAL_LINE, CHAR_RIGHT_CURLY_BRACKET, ESCAPE_SEQUENCES, DEPRECATED_BOOLEANS_SYNTAX, DEPRECATED_BASE60_SYNTAX, QUOTING_TYPE_SINGLE, QUOTING_TYPE_DOUBLE, STYLE_PLAIN, STYLE_SINGLE, STYLE_LITERAL, STYLE_FOLDED, STYLE_DOUBLE, dump_1, dumper, Type, Schema, FAILSAFE_SCHEMA, JSON_SCHEMA, CORE_SCHEMA, DEFAULT_SCHEMA, load, loadAll, dump, YAMLException, types, safeLoad, safeLoadAll, safeDump, jsYaml, js_yaml_default; var init_js_yaml = __esm({ "node_modules/js-yaml/dist/js-yaml.mjs"() { isNothing_1 = isNothing; isObject_1 = isObject4; toArray_1 = toArray; repeat_1 = repeat2; isNegativeZero_1 = isNegativeZero; extend_1 = extend2; common = { isNothing: isNothing_1, isObject: isObject_1, toArray: toArray_1, repeat: repeat_1, isNegativeZero: isNegativeZero_1, extend: extend_1 }; YAMLException$1.prototype = Object.create(Error.prototype); YAMLException$1.prototype.constructor = YAMLException$1; YAMLException$1.prototype.toString = function toString(compact) { return this.name + ": " + formatError(this, compact); }; exception = YAMLException$1; snippet = makeSnippet; TYPE_CONSTRUCTOR_OPTIONS = [ "kind", "multi", "resolve", "construct", "instanceOf", "predicate", "represent", "representName", "defaultStyle", "styleAliases" ]; YAML_NODE_KINDS = [ "scalar", "sequence", "mapping" ]; type = Type$1; Schema$1.prototype.extend = function extend3(definition) { var implicit = []; var explicit = []; if (definition instanceof type) { explicit.push(definition); } else if (Array.isArray(definition)) { explicit = explicit.concat(definition); } else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit))) { if (definition.implicit) implicit = implicit.concat(definition.implicit); if (definition.explicit) explicit = explicit.concat(definition.explicit); } else { throw new exception("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })"); } implicit.forEach(function(type$1) { if (!(type$1 instanceof type)) { throw new exception("Specified list of YAML types (or a single Type object) contains a non-Type object."); } if (type$1.loadKind && type$1.loadKind !== "scalar") { throw new exception("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported."); } if (type$1.multi) { throw new exception("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit."); } }); explicit.forEach(function(type$1) { if (!(type$1 instanceof type)) { throw new exception("Specified list of YAML types (or a single Type object) contains a non-Type object."); } }); var result = Object.create(Schema$1.prototype); result.implicit = (this.implicit || []).concat(implicit); result.explicit = (this.explicit || []).concat(explicit); result.compiledImplicit = compileList(result, "implicit"); result.compiledExplicit = compileList(result, "explicit"); result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit); return result; }; schema = Schema$1; str = new type("tag:yaml.org,2002:str", { kind: "scalar", construct: function(data) { return data !== null ? data : ""; } }); seq = new type("tag:yaml.org,2002:seq", { kind: "sequence", construct: function(data) { return data !== null ? data : []; } }); map = new type("tag:yaml.org,2002:map", { kind: "mapping", construct: function(data) { return data !== null ? data : {}; } }); failsafe = new schema({ explicit: [ str, seq, map ] }); _null = new type("tag:yaml.org,2002:null", { kind: "scalar", resolve: resolveYamlNull, construct: constructYamlNull, predicate: isNull3, represent: { canonical: function() { return "~"; }, lowercase: function() { return "null"; }, uppercase: function() { return "NULL"; }, camelcase: function() { return "Null"; }, empty: function() { return ""; } }, defaultStyle: "lowercase" }); bool = new type("tag:yaml.org,2002:bool", { kind: "scalar", resolve: resolveYamlBoolean, construct: constructYamlBoolean, predicate: isBoolean4, represent: { lowercase: function(object) { return object ? "true" : "false"; }, uppercase: function(object) { return object ? "TRUE" : "FALSE"; }, camelcase: function(object) { return object ? "True" : "False"; } }, defaultStyle: "lowercase" }); int = new type("tag:yaml.org,2002:int", { kind: "scalar", resolve: resolveYamlInteger, construct: constructYamlInteger, predicate: isInteger3, represent: { binary: function(obj) { return obj >= 0 ? "0b" + obj.toString(2) : "-0b" + obj.toString(2).slice(1); }, octal: function(obj) { return obj >= 0 ? "0o" + obj.toString(8) : "-0o" + obj.toString(8).slice(1); }, decimal: function(obj) { return obj.toString(10); }, /* eslint-disable max-len */ hexadecimal: function(obj) { return obj >= 0 ? "0x" + obj.toString(16).toUpperCase() : "-0x" + obj.toString(16).toUpperCase().slice(1); } }, defaultStyle: "decimal", styleAliases: { binary: [2, "bin"], octal: [8, "oct"], decimal: [10, "dec"], hexadecimal: [16, "hex"] } }); YAML_FLOAT_PATTERN = new RegExp( // 2.5e4, 2.5 and integers "^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$" ); SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/; float = new type("tag:yaml.org,2002:float", { kind: "scalar", resolve: resolveYamlFloat, construct: constructYamlFloat, predicate: isFloat, represent: representYamlFloat, defaultStyle: "lowercase" }); json = failsafe.extend({ implicit: [ _null, bool, int, float ] }); core = json; YAML_DATE_REGEXP = new RegExp( "^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$" ); YAML_TIMESTAMP_REGEXP = new RegExp( "^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$" ); timestamp = new type("tag:yaml.org,2002:timestamp", { kind: "scalar", resolve: resolveYamlTimestamp, construct: constructYamlTimestamp, instanceOf: Date, represent: representYamlTimestamp }); merge = new type("tag:yaml.org,2002:merge", { kind: "scalar", resolve: resolveYamlMerge }); BASE64_MAP = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r"; binary = new type("tag:yaml.org,2002:binary", { kind: "scalar", resolve: resolveYamlBinary, construct: constructYamlBinary, predicate: isBinary, represent: representYamlBinary }); _hasOwnProperty$3 = Object.prototype.hasOwnProperty; _toString$2 = Object.prototype.toString; omap = new type("tag:yaml.org,2002:omap", { kind: "sequence", resolve: resolveYamlOmap, construct: constructYamlOmap }); _toString$1 = Object.prototype.toString; pairs = new type("tag:yaml.org,2002:pairs", { kind: "sequence", resolve: resolveYamlPairs, construct: constructYamlPairs }); _hasOwnProperty$2 = Object.prototype.hasOwnProperty; set = new type("tag:yaml.org,2002:set", { kind: "mapping", resolve: resolveYamlSet, construct: constructYamlSet }); _default = core.extend({ implicit: [ timestamp, merge ], explicit: [ binary, omap, pairs, set ] }); _hasOwnProperty$1 = Object.prototype.hasOwnProperty; CONTEXT_FLOW_IN = 1; CONTEXT_FLOW_OUT = 2; CONTEXT_BLOCK_IN = 3; CONTEXT_BLOCK_OUT = 4; CHOMPING_CLIP = 1; CHOMPING_STRIP = 2; CHOMPING_KEEP = 3; PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/; PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/; PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/; PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i; PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i; simpleEscapeCheck = new Array(256); simpleEscapeMap = new Array(256); for (i = 0; i < 256; i++) { simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0; simpleEscapeMap[i] = simpleEscapeSequence(i); } directiveHandlers = { YAML: function handleYamlDirective(state, name, args) { var match2, major, minor; if (state.version !== null) { throwError(state, "duplication of %YAML directive"); } if (args.length !== 1) { throwError(state, "YAML directive accepts exactly one argument"); } match2 = /^([0-9]+)\.([0-9]+)$/.exec(args[0]); if (match2 === null) { throwError(state, "ill-formed argument of the YAML directive"); } major = parseInt(match2[1], 10); minor = parseInt(match2[2], 10); if (major !== 1) { throwError(state, "unacceptable YAML version of the document"); } state.version = args[0]; state.checkLineBreaks = minor < 2; if (minor !== 1 && minor !== 2) { throwWarning(state, "unsupported YAML version of the document"); } }, TAG: function handleTagDirective(state, name, args) { var handle, prefix; if (args.length !== 2) { throwError(state, "TAG directive accepts exactly two arguments"); } handle = args[0]; prefix = args[1]; if (!PATTERN_TAG_HANDLE.test(handle)) { throwError(state, "ill-formed tag handle (first argument) of the TAG directive"); } if (_hasOwnProperty$1.call(state.tagMap, handle)) { throwError(state, 'there is a previously declared suffix for "' + handle + '" tag handle'); } if (!PATTERN_TAG_URI.test(prefix)) { throwError(state, "ill-formed tag prefix (second argument) of the TAG directive"); } try { prefix = decodeURIComponent(prefix); } catch (err) { throwError(state, "tag prefix is malformed: " + prefix); } state.tagMap[handle] = prefix; } }; loadAll_1 = loadAll$1; load_1 = load$1; loader = { loadAll: loadAll_1, load: load_1 }; _toString = Object.prototype.toString; _hasOwnProperty = Object.prototype.hasOwnProperty; CHAR_BOM = 65279; CHAR_TAB = 9; CHAR_LINE_FEED = 10; CHAR_CARRIAGE_RETURN = 13; CHAR_SPACE = 32; CHAR_EXCLAMATION = 33; CHAR_DOUBLE_QUOTE = 34; CHAR_SHARP = 35; CHAR_PERCENT = 37; CHAR_AMPERSAND = 38; CHAR_SINGLE_QUOTE = 39; CHAR_ASTERISK = 42; CHAR_COMMA = 44; CHAR_MINUS = 45; CHAR_COLON = 58; CHAR_EQUALS = 61; CHAR_GREATER_THAN = 62; CHAR_QUESTION = 63; CHAR_COMMERCIAL_AT = 64; CHAR_LEFT_SQUARE_BRACKET = 91; CHAR_RIGHT_SQUARE_BRACKET = 93; CHAR_GRAVE_ACCENT = 96; CHAR_LEFT_CURLY_BRACKET = 123; CHAR_VERTICAL_LINE = 124; CHAR_RIGHT_CURLY_BRACKET = 125; ESCAPE_SEQUENCES = {}; ESCAPE_SEQUENCES[0] = "\\0"; ESCAPE_SEQUENCES[7] = "\\a"; ESCAPE_SEQUENCES[8] = "\\b"; ESCAPE_SEQUENCES[9] = "\\t"; ESCAPE_SEQUENCES[10] = "\\n"; ESCAPE_SEQUENCES[11] = "\\v"; ESCAPE_SEQUENCES[12] = "\\f"; ESCAPE_SEQUENCES[13] = "\\r"; ESCAPE_SEQUENCES[27] = "\\e"; ESCAPE_SEQUENCES[34] = '\\"'; ESCAPE_SEQUENCES[92] = "\\\\"; ESCAPE_SEQUENCES[133] = "\\N"; ESCAPE_SEQUENCES[160] = "\\_"; ESCAPE_SEQUENCES[8232] = "\\L"; ESCAPE_SEQUENCES[8233] = "\\P"; DEPRECATED_BOOLEANS_SYNTAX = [ "y", "Y", "yes", "Yes", "YES", "on", "On", "ON", "n", "N", "no", "No", "NO", "off", "Off", "OFF" ]; DEPRECATED_BASE60_SYNTAX = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/; QUOTING_TYPE_SINGLE = 1; QUOTING_TYPE_DOUBLE = 2; STYLE_PLAIN = 1; STYLE_SINGLE = 2; STYLE_LITERAL = 3; STYLE_FOLDED = 4; STYLE_DOUBLE = 5; dump_1 = dump$1; dumper = { dump: dump_1 }; Type = type; Schema = schema; FAILSAFE_SCHEMA = failsafe; JSON_SCHEMA = json; CORE_SCHEMA = core; DEFAULT_SCHEMA = _default; load = loader.load; loadAll = loader.loadAll; dump = dumper.dump; YAMLException = exception; types = { binary, float, map, null: _null, pairs, set, timestamp, bool, int, merge, omap, seq, str }; safeLoad = renamed("safeLoad", "load"); safeLoadAll = renamed("safeLoadAll", "loadAll"); safeDump = renamed("safeDump", "dump"); jsYaml = { Type, Schema, FAILSAFE_SCHEMA, JSON_SCHEMA, CORE_SCHEMA, DEFAULT_SCHEMA, load, loadAll, dump, YAMLException, types, safeLoad, safeLoadAll, safeDump }; js_yaml_default = jsYaml; } }); // node_modules/@prettier/cli/dist/config_prettier.js import fs11 from "fs"; import path13 from "path"; import url2 from "url"; var Loaders, File2Loader, Ext2Loader, getPrettierConfig, getPrettierConfigs, getPrettierConfigsMap, getPrettierConfigsUp, getPrettierConfigResolved; var init_config_prettier = __esm({ "node_modules/@prettier/cli/dist/config_prettier.js"() { init_dist20(); init_known(); init_utils12(); init_utils12(); Loaders = { auto: (filePath) => { const basename = path13.basename(filePath); const ext = path13.extname(filePath).slice(1); const loader2 = File2Loader[basename] || Ext2Loader[ext] || File2Loader["default"]; return loader2(filePath); }, js: async (filePath) => { const module = await import(url2.pathToFileURL(filePath).href); return module.default || module.exports || module.prettier || module; }, json: async (filePath) => { const fileContent = fs11.readFileSync(filePath, "utf8"); const config = JSON.parse(fileContent); return config; }, json5: async (filePath) => { const fileContent = fs11.readFileSync(filePath, "utf8"); const JSON52 = (await Promise.resolve().then(() => (init_dist32(), dist_exports2))).default; const config = JSON52.parse(fileContent); return config; }, package: async (filePath) => { const fileBuffer = fs11.readFileSync(filePath); if (!fileBuffer.includes("prettier")) return; const fileContent = fileBuffer.toString("utf8"); const pkg = JSON.parse(fileContent); if (isObject2(pkg) && "prettier" in pkg) { const config = pkg.prettier; if (isObject2(config)) { return config; } else if (isString3(config)) { const modulePath = getModulePath(config, filePath); return Loaders.auto(modulePath); } } }, toml: async (filePath) => { const fileContent = fs11.readFileSync(filePath, "utf8"); const toml = await Promise.resolve().then(() => (init_dist33(), dist_exports3)); return toml.parse(fileContent); }, yaml: async (filePath) => { const yaml = (await Promise.resolve().then(() => (init_js_yaml(), js_yaml_exports))).default; const fileContent = fs11.readFileSync(filePath, "utf8"); return yaml.load(fileContent, { schema: yaml.JSON_SCHEMA }); } }; File2Loader = { default: Loaders.yaml, "package.json": Loaders.package, ".prettierrc": Loaders.yaml, ".prettierrc.yml": Loaders.yaml, ".prettierrc.yaml": Loaders.yaml, ".prettierrc.json": Loaders.json, ".prettierrc.json5": Loaders.json5, ".prettierrc.toml": Loaders.toml, ".prettierrc.js": Loaders.js, ".prettierrc.cjs": Loaders.js, ".prettierrc.mjs": Loaders.js, "prettier.config.js": Loaders.js, "prettier.config.cjs": Loaders.js, "prettier.config.mjs": Loaders.js }; Ext2Loader = { default: Loaders.yaml, yml: Loaders.yaml, yaml: Loaders.yaml, json: Loaders.json, json5: Loaders.json5, toml: Loaders.toml, js: Loaders.js, cjs: Loaders.js, mjs: Loaders.js }; getPrettierConfig = (folderPath, fileName) => { const filePath = fastJoinedPath(folderPath, fileName); if (!known_default.hasFilePath(filePath)) return; const loader2 = File2Loader[fileName] || File2Loader["default"]; const normalize = (config) => isObject2(config) ? { ...config, ...normalizePrettierOptions(config, folderPath) } : void 0; return loader2(filePath).then(normalize).catch(noop2); }; getPrettierConfigs = dist_default13(async (folderPath, filesNames) => { const configsRaw = await Promise.all(filesNames.map((fileName) => getPrettierConfig(folderPath, fileName))); const configs = configsRaw.filter(isTruthy); if (!configs.length) return; return configs; }); getPrettierConfigsMap = async (foldersPaths, filesNames) => { const configs = await Promise.all(foldersPaths.map((folderPath) => getPrettierConfigs(folderPath, filesNames))); const map2 = zipObjectUnless(foldersPaths, configs, isUndefined4); return map2; }; getPrettierConfigsUp = dist_default13(async (folderPath, filesNames) => { var _a4; const config = (_a4 = await getPrettierConfigs(folderPath, filesNames)) == null ? void 0 : _a4[0]; const folderPathUp = path13.dirname(folderPath); const configsUp = folderPath !== folderPathUp ? await getPrettierConfigsUp(folderPathUp, filesNames) : []; const configs = config ? [...configsUp, config] : configsUp; return configs; }); getPrettierConfigResolved = async (filePath, filesNames) => { const folderPath = path13.dirname(filePath); const configs = await getPrettierConfigsUp(folderPath, filesNames); let resolved = {}; for (let ci = 0, cl = configs.length; ci < cl; ci++) { const config = configs[ci]; const formatOptions = omit(config, ["overrides"]); resolved = ci ? { ...resolved, ...formatOptions } : formatOptions; const overrides = config.overrides; if (overrides) { for (let oi = 0, ol = overrides.length; oi < ol; oi++) { const override = overrides[oi]; const filePathRelative = fastRelativeChildPath(override.folder, filePath); if (!filePathRelative) continue; if (!dist_default18(override.filesPositive, filePathRelative)) continue; if (dist_default18(override.filesNegative, filePathRelative)) continue; resolved = { ...resolved, ...override.options }; } } } return resolved; }; } }); // node_modules/dettle/dist/debounce.js var debounce, debounce_default; var init_debounce = __esm({ "node_modules/dettle/dist/debounce.js"() { debounce = (fn, wait = 1, options) => { wait = Math.max(1, wait); const leading = (options == null ? void 0 : options.leading) ?? false; const trailing = (options == null ? void 0 : options.trailing) ?? true; const maxWait = Math.max((options == null ? void 0 : options.maxWait) ?? Infinity, wait); let args; let timeout; let timestampCall = 0; let timestampInvoke = 0; const getInstantData = () => { const timestamp2 = Date.now(); const elapsedCall = timestamp2 - timestampCall; const elapsedInvoke = timestamp2 - timestampInvoke; const isInvoke = elapsedCall >= wait || elapsedInvoke >= maxWait; return [timestamp2, isInvoke]; }; const invoke = (timestamp2) => { timestampInvoke = timestamp2; if (!args) return; const _args = args; args = void 0; fn.apply(void 0, _args); }; const onCancel = () => { resetTimeout(0); }; const onFlush = () => { if (!timeout) return; onCancel(); invoke(Date.now()); }; const onLeading = (timestamp2) => { timestampInvoke = timestamp2; if (leading) return invoke(timestamp2); }; const onTrailing = (timestamp2) => { if (trailing && args) return invoke(timestamp2); args = void 0; }; const onTimeout = () => { timeout = void 0; const [timestamp2, isInvoking] = getInstantData(); if (isInvoking) return onTrailing(timestamp2); return updateTimeout(timestamp2); }; const updateTimeout = (timestamp2) => { const elapsedCall = timestamp2 - timestampCall; const elapsedInvoke = timestamp2 - timestampInvoke; const remainingCall = wait - elapsedCall; const remainingInvoke = maxWait - elapsedInvoke; const ms = Math.min(remainingCall, remainingInvoke); return resetTimeout(ms); }; const resetTimeout = (ms) => { if (timeout) clearTimeout(timeout); if (ms <= 0) return; timeout = setTimeout(onTimeout, ms); }; const debounced = (...argsLatest) => { const [timestamp2, isInvoking] = getInstantData(); const hadTimeout = !!timeout; args = argsLatest; timestampCall = timestamp2; if (isInvoking || !timeout) resetTimeout(wait); if (isInvoking) { if (!hadTimeout) return onLeading(timestamp2); return invoke(timestamp2); } }; debounced.cancel = onCancel; debounced.flush = onFlush; return debounced; }; debounce_default = debounce; } }); // node_modules/dettle/dist/throttle.js var init_throttle = __esm({ "node_modules/dettle/dist/throttle.js"() { init_debounce(); } }); // node_modules/dettle/dist/index.js var init_dist34 = __esm({ "node_modules/dettle/dist/index.js"() { init_debounce(); init_throttle(); } }); // node_modules/pioppo/dist/scheduler.js var scheduler, scheduler_default; var init_scheduler = __esm({ "node_modules/pioppo/dist/scheduler.js"() { init_dist34(); scheduler = (fn) => { const dfn = debounce_default(fn, 100, { maxWait: 6e4 }); dfn(); return dfn; }; scheduler_default = scheduler; } }); // node_modules/pioppo/dist/utils.js var isTransportMultiple; var init_utils16 = __esm({ "node_modules/pioppo/dist/utils.js"() { isTransportMultiple = (transport) => { return "error" in transport && "warn" in transport && "info" in transport && "debug" in transport; }; } }); // node_modules/pioppo/dist/index.js var Pioppo, dist_default30; var init_dist35 = __esm({ "node_modules/pioppo/dist/index.js"() { init_node2(); init_scheduler(); init_utils16(); Pioppo = class { /* CONSTRUCTOR */ constructor(options = {}) { this.errors = []; this.warns = []; this.infos = []; this.debugs = []; this.scheduled = false; this.scheduler = options.scheduler || scheduler_default; this.transports = options.transports || [console]; node_default2(this.flush.bind(this)); } /* LOGGING API */ error(message) { this.errors.push(message); this.schedule(); } warn(message) { this.warns.push(message); this.schedule(); } info(message) { this.infos.push(message); this.schedule(); } debug(message) { this.debugs.push(message); this.schedule(); } /* SCHEDULING API */ flush() { const errors = this.errors.length ? this.errors.join("\n") : void 0; const warns = this.warns.length ? this.warns.join("\n") : void 0; const infos = this.infos.length ? this.infos.join("\n") : void 0; const debugs = this.debugs.length ? this.debugs.join("\n") : void 0; if (errors) this.errors = []; if (warns) this.warns = []; if (infos) this.infos = []; if (debugs) this.debugs = []; for (let i = 0, l = this.transports.length; i < l; i++) { const transport = this.transports[i]; if (isTransportMultiple(transport)) { if (errors) transport.error(errors); if (warns) transport.warn(warns); if (infos) transport.info(infos); if (debugs) transport.debug(debugs); } else { if (errors) transport(errors); if (warns) transport(warns); if (infos) transport(infos); if (debugs) transport(debugs); } } } schedule() { var _a4; if (this.scheduled) { (_a4 = this.schedulerCb) == null ? void 0 : _a4.call(this); } else { this.scheduled = true; this.schedulerCb = this.scheduler(() => { this.scheduled = false; this.flush(); }); } } }; dist_default30 = Pioppo; } }); // node_modules/stdin-blocker/dist/blocker.js import process12 from "process"; import readline from "readline"; var Blocker, blocker_default; var init_blocker = __esm({ "node_modules/stdin-blocker/dist/blocker.js"() { Blocker = class { /* CONSTRUCTOR */ constructor(stream = process12.stdin) { this.onKeypress = (_, key2) => { if (key2.ctrl && key2.name === "c") { return process12.exit(0); } }; this.isBlocked = () => { return this.blocked; }; this.block = () => { return this.toggle(true); }; this.unblock = () => { return this.toggle(false); }; this.toggle = (force = !this.blocked) => { this.blocked = force; if (force) { if (this.stream.isTTY) { this.stream.setRawMode(true); } this.interface = readline.createInterface({ input: this.stream, escapeCodeTimeout: 50 }); readline.emitKeypressEvents(this.stream, this.interface); this.stream.on("keypress", this.onKeypress); } else { if (this.stream.isTTY) { this.stream.setRawMode(false); } if (this.interface) { this.interface.close(); } this.stream.off("keypress", this.onKeypress); } }; this.stream = stream; this.blocked = false; } }; blocker_default = Blocker; } }); // node_modules/stdin-blocker/dist/index.js var blocker, dist_default31; var init_dist36 = __esm({ "node_modules/stdin-blocker/dist/index.js"() { init_blocker(); blocker = new blocker_default(); dist_default31 = blocker; } }); // node_modules/tiny-cursor/dist/cursor.js import process13 from "process"; var Cursor, cursor_default; var init_cursor = __esm({ "node_modules/tiny-cursor/dist/cursor.js"() { init_node2(); Cursor = class { /* CONSTRUCTOR */ constructor(stream = process13.stdout) { this.has = () => { return this.visible; }; this.hide = () => { return this.toggle(false); }; this.show = () => { return this.toggle(true); }; this.toggle = (force = !this.visible) => { if (!this.stream.isTTY) return; this.visible = force; const command = force ? "\x1B[?25h" : "\x1B[?25l"; this.stream.write(command); }; this.stream = stream; this.visible = true; node_default2(this.show); } }; cursor_default = Cursor; } }); // node_modules/tiny-cursor/dist/index.js var cursor, dist_default32; var init_dist37 = __esm({ "node_modules/tiny-cursor/dist/index.js"() { init_cursor(); cursor = new cursor_default(); dist_default32 = cursor; } }); // node_modules/tiny-spinner/dist/constants.js var FRAMES, FRAMES_INTERVAL, SYMBOL_ERROR, SYMBOL_SUCCESS, SYMBOL_WARNING; var init_constants5 = __esm({ "node_modules/tiny-spinner/dist/constants.js"() { FRAMES = ["-", "\\", "|", "/"]; FRAMES_INTERVAL = 40; SYMBOL_ERROR = "\u2716"; SYMBOL_SUCCESS = "\u2714"; SYMBOL_WARNING = "!"; } }); // node_modules/ansi-truncate/dist/constants.js var ANSI_RE3, ELLIPSIS, ELLIPSIS_WIDTH, RESET; var init_constants6 = __esm({ "node_modules/ansi-truncate/dist/constants.js"() { ANSI_RE3 = /[\x1B\x9B]/; ELLIPSIS = "\u2026"; ELLIPSIS_WIDTH = 1; RESET = "\x1B[0m"; } }); // node_modules/ansi-truncate/dist/index.js var truncate, dist_default33; var init_dist38 = __esm({ "node_modules/ansi-truncate/dist/index.js"() { init_dist7(); init_constants6(); truncate = (input, width, options) => { const limit = width; const ellipsis = (options == null ? void 0 : options.ellipsis) ?? ELLIPSIS; const ellipsisWidth = (options == null ? void 0 : options.ellipsisWidth) ?? (ellipsis === ELLIPSIS ? ELLIPSIS_WIDTH : void 0); const { index, ellipsed, truncated } = dist_default7(input, { limit, ellipsis, ellipsisWidth }); if (!truncated) return input; const slice = input.slice(0, index); const resettable = ANSI_RE3.test(slice); return `${slice}${ellipsed ? ellipsis : ""}${resettable ? RESET : ""}`; }; dist_default33 = truncate; } }); // node_modules/tiny-truncate/dist/index.js var truncate2, dist_default34; var init_dist39 = __esm({ "node_modules/tiny-truncate/dist/index.js"() { init_dist38(); truncate2 = (str2, options) => { var _a4, _b2, _c2, _d; const width = (((_d = (_c2 = (_b2 = (_a4 = globalThis.process) == null ? void 0 : _a4.stdout) == null ? void 0 : _b2.getWindowSize) == null ? void 0 : _c2.call(_b2)) == null ? void 0 : _d[0]) || 25) - 1; return dist_default33(str2, width, options); }; dist_default34 = truncate2; } }); // node_modules/tiny-spinner/dist/utils.js var isTTY, writeLine; var init_utils17 = __esm({ "node_modules/tiny-spinner/dist/utils.js"() { init_dist39(); isTTY = () => { var _a4, _b2; return !!((_b2 = (_a4 = globalThis.process) == null ? void 0 : _a4.stdout) == null ? void 0 : _b2.isTTY); }; writeLine = (line2) => { var _a4, _b2, _c2, _d, _e, _f, _g, _h; line2 = dist_default34(line2); const process19 = globalThis.process; if (process19) { const isTerminal = /(\r?\n|\r)$/.test(line2); (_b2 = (_a4 = process19.stdout) == null ? void 0 : _a4.cursorTo) == null ? void 0 : _b2.call(_a4, 0); (_d = (_c2 = process19.stdout) == null ? void 0 : _c2.write) == null ? void 0 : _d.call(_c2, line2.trim()); (_f = (_e = process19.stdout) == null ? void 0 : _e.clearLine) == null ? void 0 : _f.call(_e, 1); (_h = (_g = process19.stdout) == null ? void 0 : _g.write) == null ? void 0 : _h.call(_g, isTerminal ? "\r\n" : ""); } else { console.log(line2); } }; } }); // node_modules/tiny-spinner/dist/index.js var Spinner, dist_default35; var init_dist40 = __esm({ "node_modules/tiny-spinner/dist/index.js"() { init_dist36(); init_dist4(); init_dist37(); init_constants5(); init_utils17(); Spinner = class { constructor() { this.iteration = 0; this.message = ""; this.render = () => { if (!isTTY()) return; const frame = FRAMES[this.iteration++ % FRAMES.length]; const line2 = `${dist_default4.cyan(frame)} ${this.message}`; writeLine(line2); }; this.start = (message) => { if (this.intervalId) return; this.message = message; dist_default31.block(); dist_default32.hide(); this.intervalId = setInterval(this.render, FRAMES_INTERVAL); }; this.update = (message) => { this.message = message; }; this.warning = (message) => { return this.stop(`${dist_default4.yellow.bold(SYMBOL_WARNING)} ${message}`); }; this.success = (message) => { return this.stop(`${dist_default4.green(SYMBOL_SUCCESS)} ${message}`); }; this.error = (message) => { return this.stop(`${dist_default4.red(SYMBOL_ERROR)} ${message}`); }; this.stop = (message = "") => { if (!this.intervalId) return; dist_default31.unblock(); dist_default32.show(); clearInterval(this.intervalId); const line2 = message ? `${message} ` : ""; writeLine(line2); }; } }; dist_default35 = Spinner; } }); // node_modules/@prettier/cli/dist/logger_transports.js import process14 from "process"; function transportToStderr(message) { process14.stderr.write(message); process14.stderr.write("\n"); } function transportToStdout(message) { process14.stdout.write(message); process14.stdout.write("\n"); } var init_logger_transports = __esm({ "node_modules/@prettier/cli/dist/logger_transports.js"() { } }); // node_modules/@prettier/cli/dist/logger.js var Logger2, logger_default2; var init_logger2 = __esm({ "node_modules/@prettier/cli/dist/logger.js"() { init_dist35(); init_dist12(); init_dist40(); init_logger_transports(); init_utils12(); Logger2 = class { constructor(level, stream) { this.levels = ["debug", "log", "warn", "error", "silent"]; this.absract = (message, strength) => { if (strength < this.strength) return; message = resolve2(message); if (!message) return; this.pioppo.info(message); }; this.debug = (message) => { this.absract(message, 0); }; this.log = (message) => { this.absract(message, 1); }; this.warn = (message) => { this.absract(message, 2); }; this.error = (message) => { this.absract(message, 3); }; this.silent = (message) => { this.absract(message, 4); }; this.always = (message) => { this.absract(message, Infinity); }; this.prefixed = { abstract: (prefix, message, strength) => { if (strength < this.strength) return; message = resolve2(message); if (!message) return; const lines = message.split(/\r?\n|\r/g); const linesPrefixed = lines.map((line2) => `${prefix} ${line2}`); this.pioppo.info(linesPrefixed.join("\n")); }, debug: (message) => { const prefix = `[${dist_default4.magenta("debug")}]`; this.prefixed.abstract(prefix, message, 0); }, log: (message) => { const prefix = `[${dist_default4.cyan("log")}]`; this.prefixed.abstract(prefix, message, 1); }, warn: (message) => { const prefix = `[${dist_default4.yellow("warn")}]`; this.prefixed.abstract(prefix, message, 2); }, error: (message) => { const prefix = `[${dist_default4.red("error")}]`; this.prefixed.abstract(prefix, message, 3); }, silent: (message) => { const prefix = `[${dist_default4.dim("silent")}]`; this.prefixed.abstract(prefix, message, 4); }, always: (message) => { this.absract(message, Infinity); } }; this.spinner = { abstract: (strength) => { if (strength < this.strength) return; return new dist_default35(); }, debug: () => { return this.spinner.abstract(0); }, log: () => { return this.spinner.abstract(1); }, warn: () => { return this.spinner.abstract(2); }, error: () => { return this.spinner.abstract(3); }, silent: () => { return this.spinner.abstract(4); }, always: () => { return this.spinner.abstract(Infinity); } }; const transports = stream === "stderr" ? [transportToStderr] : [transportToStdout]; this.level = level; this.pioppo = new dist_default30({ transports }); this.strength = this.levels.indexOf(level); } }; logger_default2 = Logger2; } }); // node_modules/stubborn-fs/dist/attemptify.js var attemptifyAsync, attemptifySync; var init_attemptify = __esm({ "node_modules/stubborn-fs/dist/attemptify.js"() { attemptifyAsync = (fn, onError) => { return function attemptified(...args) { return fn.apply(void 0, args).catch(onError); }; }; attemptifySync = (fn, onError) => { return function attemptified(...args) { try { return fn.apply(void 0, args); } catch (error) { return onError(error); } }; }; } }); // node_modules/stubborn-fs/dist/constants.js import process15 from "process"; var IS_USER_ROOT, LIMIT_FILES_DESCRIPTORS, NOOP; var init_constants7 = __esm({ "node_modules/stubborn-fs/dist/constants.js"() { IS_USER_ROOT = process15.getuid ? !process15.getuid() : false; LIMIT_FILES_DESCRIPTORS = 1e4; NOOP = () => void 0; } }); // node_modules/stubborn-fs/dist/handlers.js var Handlers, handlers_default; var init_handlers = __esm({ "node_modules/stubborn-fs/dist/handlers.js"() { init_constants7(); Handlers = { /* API */ isChangeErrorOk: (error) => { if (!Handlers.isNodeError(error)) return false; const { code } = error; if (code === "ENOSYS") return true; if (!IS_USER_ROOT && (code === "EINVAL" || code === "EPERM")) return true; return false; }, isNodeError: (error) => { return error instanceof Error; }, isRetriableError: (error) => { if (!Handlers.isNodeError(error)) return false; const { code } = error; if (code === "EMFILE" || code === "ENFILE" || code === "EAGAIN" || code === "EBUSY" || code === "EACCESS" || code === "EACCES" || code === "EACCS" || code === "EPERM") return true; return false; }, onChangeError: (error) => { if (!Handlers.isNodeError(error)) throw error; if (Handlers.isChangeErrorOk(error)) return; throw error; } }; handlers_default = Handlers; } }); // node_modules/stubborn-fs/dist/retryify_queue.js var RetryfyQueue, retryify_queue_default; var init_retryify_queue = __esm({ "node_modules/stubborn-fs/dist/retryify_queue.js"() { init_constants7(); RetryfyQueue = class { constructor() { this.interval = 25; this.intervalId = void 0; this.limit = LIMIT_FILES_DESCRIPTORS; this.queueActive = /* @__PURE__ */ new Set(); this.queueWaiting = /* @__PURE__ */ new Set(); this.init = () => { if (this.intervalId) return; this.intervalId = setInterval(this.tick, this.interval); }; this.reset = () => { if (!this.intervalId) return; clearInterval(this.intervalId); delete this.intervalId; }; this.add = (fn) => { this.queueWaiting.add(fn); if (this.queueActive.size < this.limit / 2) { this.tick(); } else { this.init(); } }; this.remove = (fn) => { this.queueWaiting.delete(fn); this.queueActive.delete(fn); }; this.schedule = () => { return new Promise((resolve4) => { const cleanup = () => this.remove(resolver); const resolver = () => resolve4(cleanup); this.add(resolver); }); }; this.tick = () => { if (this.queueActive.size >= this.limit) return; if (!this.queueWaiting.size) return this.reset(); for (const fn of this.queueWaiting) { if (this.queueActive.size >= this.limit) break; this.queueWaiting.delete(fn); this.queueActive.add(fn); fn(); } }; } }; retryify_queue_default = new RetryfyQueue(); } }); // node_modules/stubborn-fs/dist/retryify.js var retryifyAsync, retryifySync; var init_retryify = __esm({ "node_modules/stubborn-fs/dist/retryify.js"() { init_retryify_queue(); retryifyAsync = (fn, isRetriableError) => { return function retrified(timestamp2) { return function attempt3(...args) { return retryify_queue_default.schedule().then((cleanup) => { const onResolve = (result) => { cleanup(); return result; }; const onReject = (error) => { cleanup(); if (Date.now() >= timestamp2) throw error; if (isRetriableError(error)) { const delay = Math.round(100 * Math.random()); const delayPromise = new Promise((resolve4) => setTimeout(resolve4, delay)); return delayPromise.then(() => attempt3.apply(void 0, args)); } throw error; }; return fn.apply(void 0, args).then(onResolve, onReject); }); }; }; }; retryifySync = (fn, isRetriableError) => { return function retrified(timestamp2) { return function attempt3(...args) { try { return fn.apply(void 0, args); } catch (error) { if (Date.now() > timestamp2) throw error; if (isRetriableError(error)) return attempt3.apply(void 0, args); throw error; } }; }; }; } }); // node_modules/stubborn-fs/dist/index.js import fs12 from "fs"; import { promisify } from "util"; var FS, dist_default36; var init_dist41 = __esm({ "node_modules/stubborn-fs/dist/index.js"() { init_attemptify(); init_constants7(); init_handlers(); init_retryify(); FS = { attempt: { /* ASYNC */ chmod: attemptifyAsync(promisify(fs12.chmod), handlers_default.onChangeError), chown: attemptifyAsync(promisify(fs12.chown), handlers_default.onChangeError), close: attemptifyAsync(promisify(fs12.close), NOOP), fsync: attemptifyAsync(promisify(fs12.fsync), NOOP), mkdir: attemptifyAsync(promisify(fs12.mkdir), NOOP), realpath: attemptifyAsync(promisify(fs12.realpath), NOOP), stat: attemptifyAsync(promisify(fs12.stat), NOOP), unlink: attemptifyAsync(promisify(fs12.unlink), NOOP), /* SYNC */ chmodSync: attemptifySync(fs12.chmodSync, handlers_default.onChangeError), chownSync: attemptifySync(fs12.chownSync, handlers_default.onChangeError), closeSync: attemptifySync(fs12.closeSync, NOOP), existsSync: attemptifySync(fs12.existsSync, NOOP), fsyncSync: attemptifySync(fs12.fsync, NOOP), mkdirSync: attemptifySync(fs12.mkdirSync, NOOP), realpathSync: attemptifySync(fs12.realpathSync, NOOP), statSync: attemptifySync(fs12.statSync, NOOP), unlinkSync: attemptifySync(fs12.unlinkSync, NOOP) }, retry: { /* ASYNC */ close: retryifyAsync(promisify(fs12.close), handlers_default.isRetriableError), fsync: retryifyAsync(promisify(fs12.fsync), handlers_default.isRetriableError), open: retryifyAsync(promisify(fs12.open), handlers_default.isRetriableError), readFile: retryifyAsync(promisify(fs12.readFile), handlers_default.isRetriableError), rename: retryifyAsync(promisify(fs12.rename), handlers_default.isRetriableError), stat: retryifyAsync(promisify(fs12.stat), handlers_default.isRetriableError), write: retryifyAsync(promisify(fs12.write), handlers_default.isRetriableError), writeFile: retryifyAsync(promisify(fs12.writeFile), handlers_default.isRetriableError), /* SYNC */ closeSync: retryifySync(fs12.closeSync, handlers_default.isRetriableError), fsyncSync: retryifySync(fs12.fsyncSync, handlers_default.isRetriableError), openSync: retryifySync(fs12.openSync, handlers_default.isRetriableError), readFileSync: retryifySync(fs12.readFileSync, handlers_default.isRetriableError), renameSync: retryifySync(fs12.renameSync, handlers_default.isRetriableError), statSync: retryifySync(fs12.statSync, handlers_default.isRetriableError), writeSync: retryifySync(fs12.writeSync, handlers_default.isRetriableError), writeFileSync: retryifySync(fs12.writeFileSync, handlers_default.isRetriableError) } }; dist_default36 = FS; } }); // node_modules/atomically/dist/constants.js import os2 from "os"; import process16 from "process"; var DEFAULT_ENCODING, DEFAULT_FILE_MODE, DEFAULT_FOLDER_MODE, DEFAULT_READ_OPTIONS, DEFAULT_WRITE_OPTIONS, DEFAULT_USER_UID, DEFAULT_USER_GID, DEFAULT_TIMEOUT_ASYNC, IS_POSIX, IS_USER_ROOT2, LIMIT_BASENAME_LENGTH; var init_constants8 = __esm({ "node_modules/atomically/dist/constants.js"() { DEFAULT_ENCODING = "utf8"; DEFAULT_FILE_MODE = 438; DEFAULT_FOLDER_MODE = 511; DEFAULT_READ_OPTIONS = {}; DEFAULT_WRITE_OPTIONS = {}; DEFAULT_USER_UID = os2.userInfo().uid; DEFAULT_USER_GID = os2.userInfo().gid; DEFAULT_TIMEOUT_ASYNC = 7500; IS_POSIX = !!process16.getuid; IS_USER_ROOT2 = process16.getuid ? !process16.getuid() : false; LIMIT_BASENAME_LENGTH = 128; } }); // node_modules/atomically/dist/utils/lang.js var isException, isFunction4, isString6, isUndefined6; var init_lang = __esm({ "node_modules/atomically/dist/utils/lang.js"() { isException = (value) => { return value instanceof Error && "code" in value; }; isFunction4 = (value) => { return typeof value === "function"; }; isString6 = (value) => { return typeof value === "string"; }; isUndefined6 = (value) => { return value === void 0; }; } }); // node_modules/atomically/dist/utils/scheduler.js var Queues, Scheduler, scheduler_default2; var init_scheduler2 = __esm({ "node_modules/atomically/dist/utils/scheduler.js"() { Queues = {}; Scheduler = { /* API */ next: (id) => { const queue = Queues[id]; if (!queue) return; queue.shift(); const job = queue[0]; if (job) { job(() => Scheduler.next(id)); } else { delete Queues[id]; } }, schedule: (id) => { return new Promise((resolve4) => { let queue = Queues[id]; if (!queue) queue = Queues[id] = []; queue.push(resolve4); if (queue.length > 1) return; resolve4(() => Scheduler.next(id)); }); } }; scheduler_default2 = Scheduler; } }); // node_modules/atomically/dist/utils/temp.js import path14 from "path"; var Temp, temp_default; var init_temp = __esm({ "node_modules/atomically/dist/utils/temp.js"() { init_dist41(); init_node2(); init_constants8(); Temp = { /* VARIABLES */ store: {}, /* API */ create: (filePath) => { const randomness = `000000${Math.floor(Math.random() * 16777215).toString(16)}`.slice(-6); const timestamp2 = Date.now().toString().slice(-10); const prefix = "tmp-"; const suffix = `.${prefix}${timestamp2}${randomness}`; const tempPath = `${filePath}${suffix}`; return tempPath; }, get: (filePath, creator, purge2 = true) => { const tempPath = Temp.truncate(creator(filePath)); if (tempPath in Temp.store) return Temp.get(filePath, creator, purge2); Temp.store[tempPath] = purge2; const disposer = () => delete Temp.store[tempPath]; return [tempPath, disposer]; }, purge: (filePath) => { if (!Temp.store[filePath]) return; delete Temp.store[filePath]; dist_default36.attempt.unlink(filePath); }, purgeSync: (filePath) => { if (!Temp.store[filePath]) return; delete Temp.store[filePath]; dist_default36.attempt.unlinkSync(filePath); }, purgeSyncAll: () => { for (const filePath in Temp.store) { Temp.purgeSync(filePath); } }, truncate: (filePath) => { const basename = path14.basename(filePath); if (basename.length <= LIMIT_BASENAME_LENGTH) return filePath; const truncable = /^(\.?)(.*?)((?:\.[^.]+)?(?:\.tmp-\d{10}[a-f0-9]{6})?)$/.exec(basename); if (!truncable) return filePath; const truncationLength = basename.length - LIMIT_BASENAME_LENGTH; return `${filePath.slice(0, -basename.length)}${truncable[1]}${truncable[2].slice(0, -truncationLength)}${truncable[3]}`; } }; node_default2(Temp.purgeSyncAll); temp_default = Temp; } }); // node_modules/atomically/dist/index.js import path15 from "path"; function readFile(filePath, options = DEFAULT_READ_OPTIONS) { if (isString6(options)) return readFile(filePath, { encoding: options }); const timeout = Date.now() + ((options.timeout ?? DEFAULT_TIMEOUT_ASYNC) || -1); return dist_default36.retry.readFile(timeout)(filePath, options); } function writeFile(filePath, data, options, callback) { if (isFunction4(options)) return writeFile(filePath, data, DEFAULT_WRITE_OPTIONS, options); const promise = writeFileAsync(filePath, data, options); if (callback) promise.then(callback, callback); return promise; } async function writeFileAsync(filePath, data, options = DEFAULT_WRITE_OPTIONS) { if (isString6(options)) return writeFileAsync(filePath, data, { encoding: options }); const timeout = Date.now() + ((options.timeout ?? DEFAULT_TIMEOUT_ASYNC) || -1); let schedulerCustomDisposer = null; let schedulerDisposer = null; let tempDisposer = null; let tempPath = null; let fd = null; try { if (options.schedule) schedulerCustomDisposer = await options.schedule(filePath); schedulerDisposer = await scheduler_default2.schedule(filePath); const filePathReal = await dist_default36.attempt.realpath(filePath); const filePathExists = !!filePathReal; filePath = filePathReal || filePath; [tempPath, tempDisposer] = temp_default.get(filePath, options.tmpCreate || temp_default.create, !(options.tmpPurge === false)); const useStatChown = IS_POSIX && isUndefined6(options.chown); const useStatMode = isUndefined6(options.mode); if (filePathExists && (useStatChown || useStatMode)) { const stats = await dist_default36.attempt.stat(filePath); if (stats) { options = { ...options }; if (useStatChown) { options.chown = { uid: stats.uid, gid: stats.gid }; } if (useStatMode) { options.mode = stats.mode; } } } if (!filePathExists) { const parentPath = path15.dirname(filePath); await dist_default36.attempt.mkdir(parentPath, { mode: DEFAULT_FOLDER_MODE, recursive: true }); } fd = await dist_default36.retry.open(timeout)(tempPath, "w", options.mode || DEFAULT_FILE_MODE); if (options.tmpCreated) { options.tmpCreated(tempPath); } if (isString6(data)) { await dist_default36.retry.write(timeout)(fd, data, 0, options.encoding || DEFAULT_ENCODING); } else if (!isUndefined6(data)) { await dist_default36.retry.write(timeout)(fd, data, 0, data.length, 0); } if (options.fsync !== false) { if (options.fsyncWait !== false) { await dist_default36.retry.fsync(timeout)(fd); } else { dist_default36.attempt.fsync(fd); } } await dist_default36.retry.close(timeout)(fd); fd = null; if (options.chown && (options.chown.uid !== DEFAULT_USER_UID || options.chown.gid !== DEFAULT_USER_GID)) { await dist_default36.attempt.chown(tempPath, options.chown.uid, options.chown.gid); } if (options.mode && options.mode !== DEFAULT_FILE_MODE) { await dist_default36.attempt.chmod(tempPath, options.mode); } try { await dist_default36.retry.rename(timeout)(tempPath, filePath); } catch (error) { if (!isException(error)) throw error; if (error.code !== "ENAMETOOLONG") throw error; await dist_default36.retry.rename(timeout)(tempPath, temp_default.truncate(filePath)); } tempDisposer(); tempPath = null; } finally { if (fd) await dist_default36.attempt.close(fd); if (tempPath) temp_default.purge(tempPath); if (schedulerCustomDisposer) schedulerCustomDisposer(); if (schedulerDisposer) schedulerDisposer(); } } var init_dist42 = __esm({ "node_modules/atomically/dist/index.js"() { init_dist41(); init_constants8(); init_lang(); init_scheduler2(); init_temp(); } }); // node_modules/@prettier/cli/dist/prettier_cached.js function makeCached(options, cache3, prettier) { return { check: prettier.check, format: prettier.format, write: prettier.write, async checkWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { var _a4; const data = await cache3.get(filePath); if (isBoolean2(data == null ? void 0 : data.formatted)) return data.formatted; const fileContent = ((_a4 = data == null ? void 0 : data.content) == null ? void 0 : _a4.toString()) ?? await readFile(filePath, "utf8"); const formatted = await prettier.check(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions); await (data == null ? void 0 : data.save(formatted, fileContent)); return formatted; }, async formatWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { var _a4; const data = await cache3.get(filePath); const fileContent = ((_a4 = data == null ? void 0 : data.content) == null ? void 0 : _a4.toString()) ?? await readFile(filePath, "utf8"); if (data == null ? void 0 : data.formatted) return fileContent; const fileContentFormatted = await prettier.format(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions); if (fileContent === fileContentFormatted) { await (data == null ? void 0 : data.save(true, fileContent)); return fileContent; } else { await (data == null ? void 0 : data.save(false, fileContent)); return fileContentFormatted; } }, async writeWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { var _a4; const data = await cache3.get(filePath); if (data == null ? void 0 : data.formatted) return true; const fileContent = ((_a4 = data == null ? void 0 : data.content) == null ? void 0 : _a4.toString()) ?? await readFile(filePath, "utf8"); const fileContentFormatted = await prettier.format(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions); if (fileContent === fileContentFormatted) { await (data == null ? void 0 : data.save(true, fileContent)); return true; } else { await writeFile(filePath, fileContentFormatted); await (data == null ? void 0 : data.save(true, fileContentFormatted)); return false; } } }; } var init_prettier_cached = __esm({ "node_modules/@prettier/cli/dist/prettier_cached.js"() { init_dist42(); init_utils12(); } }); // node_modules/isoconcurrency/dist/node.js import os3 from "os"; var concurrency, node_default3; var init_node3 = __esm({ "node_modules/isoconcurrency/dist/node.js"() { concurrency = os3.cpus().length || 1; node_default3 = concurrency; } }); // node_modules/isotimer/dist/utils.js var sanitizeMs; var init_utils18 = __esm({ "node_modules/isotimer/dist/utils.js"() { sanitizeMs = (ms) => { return Math.max(0, Math.min(ms, 2147483647)); }; } }); // node_modules/isotimer/dist/node/interval.js import { setInterval as setInterval2, clearInterval as clearInterval2 } from "timers"; var cache2, set2, clear, unref; var init_interval = __esm({ "node_modules/isotimer/dist/node/interval.js"() { init_utils18(); cache2 = /* @__PURE__ */ new Map(); set2 = (callback, ms = 0, ...args) => { ms = sanitizeMs(ms); const timer = setInterval2(callback, ms, ...args); const id = +timer; cache2.set(id, timer); return id; }; clear = (id) => { cache2.delete(id); clearInterval2(id); }; unref = (id) => { var _a4; (_a4 = cache2.get(id)) == null ? void 0 : _a4.unref(); }; } }); // node_modules/isotimer/dist/node/index.js var init_node4 = __esm({ "node_modules/isotimer/dist/node/index.js"() { init_interval(); } }); // node_modules/worktank/dist/worker/error.js var WorkerError, error_default; var init_error2 = __esm({ "node_modules/worktank/dist/worker/error.js"() { WorkerError = class extends Error { /* CONSTRUCTOR */ constructor(name, message) { super(message); this.name = `WorkTankWorkerError (${name})`; this.message = message; } }; error_default = WorkerError; } }); // node_modules/webworker-shim/dist/node.js import { Worker } from "worker_threads"; var __classPrivateFieldSet2, __classPrivateFieldGet2, _WorkerShim_worker, WorkerShim, node_default4; var init_node5 = __esm({ "node_modules/webworker-shim/dist/node.js"() { __classPrivateFieldSet2 = function(receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value; }; __classPrivateFieldGet2 = function(receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; WorkerShim = class extends EventTarget { /* CONSTRUCTOR */ constructor(url3, options) { super(); _WorkerShim_worker.set(this, void 0); url3 = url3.trim(); const prefix = "data:text/javascript;charset=utf-8,"; if (!url3.startsWith(prefix)) throw new Error(`Only urls that start with "${prefix}" are supported`); const setup = encodeURIComponent('import {parentPort} from "node:worker_threads";globalThis.self = globalThis;globalThis.addEventListener = parentPort.on.bind ( parentPort );globalThis.postMessage = parentPort.postMessage.bind ( parentPort );'); const module = url3.slice(prefix.length); const code = `${prefix}${setup}${module}`; __classPrivateFieldSet2(this, _WorkerShim_worker, new Worker(new URL(code)), "f"); __classPrivateFieldGet2(this, _WorkerShim_worker, "f").on("message", (data) => { const event = new Event("message"); event["data"] = data; this.dispatchEvent(event); }); __classPrivateFieldGet2(this, _WorkerShim_worker, "f").on("error", (error) => { const event = new Event("error"); event["data"] = error; this.dispatchEvent(event); }); __classPrivateFieldGet2(this, _WorkerShim_worker, "f").on("exit", (exitCode) => { const event = new Event("close"); event["data"] = Number(exitCode ?? 0); this.dispatchEvent(event); }); } /* API */ postMessage(message, transfer) { const event = new Event("message"); event["data"] = message; __classPrivateFieldGet2(this, _WorkerShim_worker, "f").postMessage(event, transfer); } terminate() { __classPrivateFieldGet2(this, _WorkerShim_worker, "f").terminate(); } }; _WorkerShim_worker = /* @__PURE__ */ new WeakMap(); node_default4 = globalThis.Worker || WorkerShim; } }); // node_modules/worktank/dist/worker/backend_compiled.js var backend_compiled_default; var init_backend_compiled = __esm({ "node_modules/worktank/dist/worker/backend_compiled.js"() { backend_compiled_default = 'globalThis.WorkTankWorkerBackend=(()=>{let{addEventListener:d,postMessage:n}=globalThis,r={},l=e=>e instanceof Error?e:typeof e=="string"?new Error(e):new Error("Unknown error"),a=e=>{try{n({type:"log",value:e})}catch(t){console.error("Failed to post log message",t)}},g=e=>{let t=!1,o;return()=>(t||(t=!0,o=e()),o)},u=e=>{var t,o;((t=e.data)==null?void 0:t.type)==="exec"?p(e.data.method,e.data.args):a(`Unknown message type: ${(o=e.data)==null?void 0:o.type}`)},p=(e,t)=>{let o=r[e];new Promise(i=>i(o.apply(void 0,t))).then(y,s)},s=e=>{let{name:t,message:o,stack:c}=l(e);try{n({type:"result",error:{name:t,message:o,stack:c}})}catch(i){s("Failed to post error message")}},y=e=>{try{n({type:"result",value:e})}catch(t){s(t)}};return{ready:g(()=>{d("message",u),n({type:"ready"})}),registerEnv:e=>{globalThis.process||(globalThis.process={}),globalThis.process.env={...globalThis.process.env,...e}},registerMethods:e=>{for(let t in e){let o=e[t];typeof o=="function"?r[t]=o:a(`Method "${t}" is not a function and will be ignored`)}}}})(); /*! BOOTLOADER_PLACEHOLDER !*/'; } }); // node_modules/worktank/dist/worker/frontend.js var WorkerFrontend, frontend_default; var init_frontend = __esm({ "node_modules/worktank/dist/worker/frontend.js"() { init_node5(); init_backend_compiled(); WorkerFrontend = class { /* CONSTRUCTOR */ constructor(name, bootloader, onClose, onError, onMessage) { this.listen = (onClose2, onError2, onMessage2) => { this.worker.addEventListener("close", (event) => onClose2(event["data"])); this.worker.addEventListener("error", (event) => onError2(event["data"])); this.worker.addEventListener("message", (event) => onMessage2(event["data"])); }; this.send = (message, transfer = []) => { this.worker.postMessage(message, transfer); }; this.terminate = () => { this.worker.terminate(); }; const backend = backend_compiled_default.replace("/*! BOOTLOADER_PLACEHOLDER !*/", bootloader); const script = `data:text/javascript;charset=utf-8,${encodeURIComponent(backend)}`; this.worker = new node_default4(script, { name, type: "module" }); this.listen(onClose, onError, onMessage); } }; frontend_default = WorkerFrontend; } }); // node_modules/worktank/dist/worker/index.js var Worker2, worker_default; var init_worker = __esm({ "node_modules/worktank/dist/worker/index.js"() { init_error2(); init_frontend(); Worker2 = class { /* CONSTRUCTOR */ constructor(name, bootloader) { this.onClose = (code) => { if (this.terminated) return; this.terminated = true; this.worker.terminate(); this.reject(new error_default(this.name, `Exited with exit code ${code}`)); }; this.onError = (error) => { if (this.terminated) return; this.terminated = true; this.worker.terminate(); this.reject(error); }; this.onMessage = (message) => { if (this.terminated) return; if (message.type === "log") { this.onMessageLog(message); } else if (message.type === "ready") { this.onMessageReady(message); } else if (message.type === "result") { this.onMessageResult(message); } }; this.onMessageLog = (message) => { console.log(message.value); }; this.onMessageReady = (message) => { this.ready = true; this.tick(); }; this.onMessageResult = (message) => { if ("value" in message) { this.resolve(message.value); } else { const error = Object.assign(new Error(), message.error); this.reject(error); } }; this.exec = (task) => { if (this.terminated) throw new error_default(this.name, "Terminated"); if (this.task || this.busy) throw new error_default(this.name, "Busy"); this.task = task; this.tick(); }; this.reject = (error) => { const { task } = this; if (!task) return; this.busy = false; this.task = void 0; this.timestamp = Date.now(); task.reject(error); }; this.resolve = (value) => { const { task } = this; if (!task) return; this.busy = false; this.task = void 0; this.timestamp = Date.now(); task.resolve(value); }; this.terminate = () => { if (this.terminated) return; this.terminated = true; this.worker.terminate(); this.reject(new error_default(this.name, "Terminated")); }; this.tick = () => { if (this.terminated || !this.ready || !this.task || this.busy) return; this.busy = true; try { const { method, args, transfer } = this.task; this.worker.send({ type: "exec", method, args }, transfer); } catch { this.reject(new error_default(this.name, "Failed to send message")); } }; this.busy = false; this.ready = false; this.terminated = false; this.timestamp = Date.now(); this.name = name; this.bootloader = bootloader; this.worker = new frontend_default(this.name, this.bootloader, this.onClose, this.onError, this.onMessage); } }; worker_default = Worker2; } }); // node_modules/worktank/dist/index.js var clearIntervalRegistry, WorkTank, dist_default37; var init_dist43 = __esm({ "node_modules/worktank/dist/index.js"() { init_node3(); init_node4(); init_dist16(); init_worker(); init_error2(); clearIntervalRegistry = new FinalizationRegistry(clear); WorkTank = class { /* CONSTRUCTOR */ constructor(options) { var _a4, _b2, _c2; this.getTaskIdle = () => { for (const task of this.tasksIdle) { return task; } }; this.getWorkerBootloader = (env, methods) => { if (methods instanceof URL) { return this.getWorkerBootloader(env, methods.href); } else if (typeof methods === "string") { if (/^(file|https?):\/\//.test(methods)) { const registerEnv = `WorkTankWorkerBackend.registerEnv ( ${JSON.stringify(env)} );`; const registerMethods = `WorkTankWorkerBackend.registerMethods ( Methods );`; const ready = "WorkTankWorkerBackend.ready ();"; const bootloader = `${"import"} ( '${methods}' ).then ( Methods => { ${registerEnv} ${registerMethods} ${ready} } );`; return bootloader; } else { return methods; } } else { const registerEnv = `WorkTankWorkerBackend.registerEnv ( ${JSON.stringify(env)} );`; const serializedMethods = `{ ${Object.keys(methods).map((name) => `${name}: ${methods[name].toString()}`).join(",")} }`; const registerMethods = `WorkTankWorkerBackend.registerMethods ( ${serializedMethods} );`; const ready = "WorkTankWorkerBackend.ready ();"; const bootloader = `${registerEnv} ${registerMethods} ${ready}`; return bootloader; } }; this.getWorkerIdle = () => { for (const worker of this.workersIdle) { return worker; } if (this.workersBusy.size < this.size) { return this.getWorkerIdleNew(); } }; this.getWorkerIdleNew = () => { const name = this.getWorkerName(); const worker = new worker_default(name, this.bootloader); this.workersIdle.add(worker); return worker; }; this.getWorkerName = () => { if (this.size < 2) return this.name; const counter = 1 + (this.workersBusy.size + this.workersIdle.size); return `${this.name} (${counter})`; }; this.cleanup = () => { if (this.autoTerminate <= 0) return; const autoterminateTimestamp = Date.now() - this.autoTerminate; for (const worker of this.workersIdle) { if (worker.ready && !worker.busy && worker.timestamp < autoterminateTimestamp) { worker.terminate(); this.workersIdle.delete(worker); } } }; this.exec = (method, args, options2) => { const { promise, resolve: resolve4, reject } = dist_default15(); const signal = options2 == null ? void 0 : options2.signal; const timeout = (options2 == null ? void 0 : options2.timeout) ?? this.autoAbort; const transfer = options2 == null ? void 0 : options2.transfer; const task = { method, args, signal, timeout, transfer, promise, resolve: resolve4, reject }; this.tasksIdle.add(task); this.tick(); return promise; }; this.proxy = () => { return new Proxy({}, { get: (_, method) => { if (method === "then") return; return (...args) => { return this.exec(method, args); }; } }); }; this.resize = (size) => { this.size = size; if (this.autoInstantiate) { const missingNr = Math.max(0, this.size - this.workersBusy.size - this.workersIdle.size); for (let i = 0, l = missingNr; i < l; i++) { this.getWorkerIdleNew(); } } const excessNr = Math.max(0, this.workersIdle.size - this.size); for (let i = 0, l = excessNr; i < l; i++) { for (const worker of this.workersIdle) { this.workersIdle.delete(worker); worker.terminate(); break; } } this.tick(); }; this.stats = () => { return { tasks: { busy: this.tasksBusy.size, idle: this.tasksIdle.size, total: this.tasksBusy.size + this.tasksIdle.size }, workers: { busy: this.workersBusy.size, idle: this.workersIdle.size, total: this.workersBusy.size + this.workersIdle.size } }; }; this.terminate = () => { const error = new error_default(this.name, "Terminated"); for (const task of this.tasksBusy) task.reject(error); for (const task of this.tasksIdle) task.reject(error); this.tasksBusy = /* @__PURE__ */ new Set(); this.tasksIdle = /* @__PURE__ */ new Set(); for (const worker of this.workersBusy) worker.terminate(); for (const worker of this.workersIdle) worker.terminate(); this.workersBusy = /* @__PURE__ */ new Set(); this.workersIdle = /* @__PURE__ */ new Set(); }; this.tick = () => { var _a5; const task = this.getTaskIdle(); if (!task) return; if ((_a5 = task.signal) == null ? void 0 : _a5.aborted) { this.tasksIdle.delete(task); task.reject(new error_default(this.name, "Terminated")); return this.tick(); } const worker = this.getWorkerIdle(); if (!worker) return; this.tasksIdle.delete(task); this.tasksBusy.add(task); this.workersIdle.delete(worker); this.workersBusy.add(worker); if (task.signal) { task.signal.addEventListener("abort", worker.terminate, { once: true }); } let timeoutId; if (task.timeout > 0 && task.timeout !== Infinity) { timeoutId = setTimeout(worker.terminate, task.timeout); } const onFinally = () => { clearTimeout(timeoutId); this.tasksBusy.delete(task); this.workersBusy.delete(worker); if (!worker.terminated) { if (this.workersIdle.size < this.size) { this.workersIdle.add(worker); } else { worker.terminate(); } } this.tick(); }; task.promise.then(onFinally, onFinally); worker.exec(task); this.tick(); }; this.name = ((_a4 = options.pool) == null ? void 0 : _a4.name) ?? "WorkTank"; this.size = ((_b2 = options.pool) == null ? void 0 : _b2.size) ?? node_default3; this.env = { ...(_c2 = globalThis.process) == null ? void 0 : _c2.env, ...options.worker.env }; this.bootloader = this.getWorkerBootloader(this.env, options.worker.methods); this.autoAbort = options.worker.autoAbort ?? 0; this.autoInstantiate = options.worker.autoInstantiate ?? false; this.autoTerminate = options.worker.autoTerminate ?? 0; this.tasksBusy = /* @__PURE__ */ new Set(); this.tasksIdle = /* @__PURE__ */ new Set(); this.workersBusy = /* @__PURE__ */ new Set(); this.workersIdle = /* @__PURE__ */ new Set(); this.resize(this.size); if (this.autoTerminate) { const thizRef = new WeakRef(this); const intervalId = set2(() => { var _a5; (_a5 = thizRef.deref()) == null ? void 0 : _a5.cleanup(); }, this.autoTerminate); unref(intervalId); clearIntervalRegistry.register(this, intervalId); } } }; dist_default37 = WorkTank; } }); // node_modules/@prettier/cli/dist/prettier_parallel.js var prettier_parallel_exports = {}; __export(prettier_parallel_exports, { makeParallel: () => makeParallel }); import os4 from "os"; import process17 from "process"; function makeParallel(options) { const pool = new dist_default37({ pool: { name: "prettier", size: options.parallelWorkers || Math.max(1, os4.cpus().length - 1) }, worker: { autoInstantiate: true, env: process17.env, methods: new URL("./experimental-cli-worker.mjs", import.meta.url) } }); return { async check(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("check", [filePath, fileContent, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); }, async checkWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("checkWithPath", [filePath, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); }, async format(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("format", [filePath, fileContent, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); }, async formatWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("formatWithPath", [filePath, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); }, async write(filePath, fileContent, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("write", [filePath, fileContent, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); }, async writeWithPath(filePath, formatOptions, contextOptions, pluginsDefaultOptions, pluginsCustomOptions) { return pool.exec("writeWithPath", [filePath, await resolve2(formatOptions), contextOptions, pluginsDefaultOptions, pluginsCustomOptions]); } }; } var init_prettier_parallel = __esm({ "node_modules/@prettier/cli/dist/prettier_parallel.js"() { init_dist43(); init_utils12(); } }); // node_modules/@prettier/cli/dist/prettier_lazy.js var prettier_lazy_exports = {}; __export(prettier_lazy_exports, { makeLazy: () => makeLazy }); function makeLazy(options) { const prettier = dist_default12(() => { return import("./experimental-cli-worker.mjs"); }); return { async check(...args) { return (await prettier()).check(...args); }, async checkWithPath(...args) { return (await prettier()).checkWithPath(...args); }, async format(...args) { return (await prettier()).format(...args); }, async formatWithPath(...args) { return (await prettier()).formatWithPath(...args); }, async write(...args) { return (await prettier()).write(...args); }, async writeWithPath(...args) { return (await prettier()).writeWithPath(...args); } }; } var init_prettier_lazy = __esm({ "node_modules/@prettier/cli/dist/prettier_lazy.js"() { init_utils12(); } }); // node_modules/@prettier/cli/dist/prettier.js async function makePrettier(options, cache3) { if (options.parallel) { const { makeParallel: makeParallel2 } = await Promise.resolve().then(() => (init_prettier_parallel(), prettier_parallel_exports)); if (options.cache && cache3) { return makeCached(options, cache3, makeParallel2(options)); } else { return makeParallel2(options); } } else { const { makeLazy: makeLazy2 } = await Promise.resolve().then(() => (init_prettier_lazy(), prettier_lazy_exports)); if (options.cache && cache3) { return makeCached(options, cache3, makeLazy2(options)); } else { return makeLazy2(options); } } } var init_prettier = __esm({ "node_modules/@prettier/cli/dist/prettier.js"() { init_prettier_cached(); } }); // node_modules/@prettier/cli/dist/index.js var dist_exports4 = {}; __export(dist_exports4, { run: () => run, runGlobs: () => runGlobs, runStdin: () => runStdin }); import fs13 from "fs/promises"; import path16 from "path"; import process18 from "process"; async function run(options, pluginsDefaultOptions, pluginsCustomOptions) { if (options.globs.length || !isString3(await getStdin())) { return runGlobs(options, pluginsDefaultOptions, pluginsCustomOptions); } else { return runStdin(options, pluginsDefaultOptions, pluginsCustomOptions); } } async function runStdin(options, pluginsDefaultOptions, pluginsCustomOptions) { const stderr = new logger_default2(options.logLevel, "stderr"); const stdout = new logger_default2(options.logLevel, "stdout"); const prettier = await import("./experimental-cli-worker.mjs"); const fileName = options.stdinFilepath || "stdin"; const fileContent = await getStdin() || ""; try { const formatted = await prettier.format(fileName, fileContent, options.formatOptions, options.contextOptions, pluginsDefaultOptions, pluginsCustomOptions); if (options.check || options.list) { if (formatted !== fileContent) { stdout.warn("(stdin)"); } } else { stdout.always(trimFinalNewline(formatted)); } process18.exitCode = (options.check || options.list) && formatted !== fileContent ? 1 : 0; } catch (error) { stderr.prefixed.error(String(error)); process18.exitCode = 1; } } async function runGlobs(options, pluginsDefaultOptions, pluginsCustomOptions) { const stderr = new logger_default2(options.logLevel, "stderr"); const stdout = new logger_default2(options.logLevel, "stdout"); const spinner = options.check ? stdout.spinner.log() : void 0; spinner == null ? void 0 : spinner.start("Checking formatting..."); const rootPath = process18.cwd(); const projectPath = getProjectPath(rootPath); const [filesPaths, filesNames, filesNamesToPaths, filesExplicitPaths, filesFoundPaths, foldersFoundPaths] = await getTargetsPaths(rootPath, options.globs, options.withNodeModules); const filesExplicitPathsSet = new Set(filesExplicitPaths); const filesPathsTargets = filesPaths.filter(negate(import_is_binary_path.default)).sort(); const [foldersPathsTargets, foldersExtraPaths] = getExpandedFoldersPaths(foldersFoundPaths, projectPath); const filesExtraPaths = await getFoldersChildrenPaths([rootPath, ...foldersExtraPaths]); const filesExtraNames = filesExtraPaths.map((filePath) => path16.basename(filePath)); known_default.addFilesPaths(filesFoundPaths); known_default.addFilesPaths(filesExtraPaths); known_default.addFilesNames(filesNames); known_default.addFilesNames(filesExtraNames); const prettierVersion = PRETTIER_VERSION; const cliVersion = CLI_VERSION; const pluginsNames = options.formatOptions.plugins || []; const pluginsVersions = getPluginsVersions(pluginsNames); const pluginsVersionsMissing = pluginsVersions.filter(isNull2); const editorConfigNames = options.editorConfig ? [".editorconfig"].filter(known_default.hasFileName) : []; const ignoreNames = options.ignore ? [".gitignore", ".prettierignore"].filter(known_default.hasFileName) : []; const prettierConfigNames = options.config ? without2(Object.keys(File2Loader), ["default"]).filter(known_default.hasFileName) : []; const fileNames2parentPaths = (names) => names.flatMap((name) => { var _a4; return ((_a4 = filesNamesToPaths[name]) == null ? void 0 : _a4.map(path16.dirname)) || []; }); const editorConfigPaths = uniq3([...fileNames2parentPaths(editorConfigNames), rootPath, ...foldersExtraPaths]); const ignorePaths = uniq3([...fileNames2parentPaths(ignoreNames), rootPath, ...foldersExtraPaths]); const prettierConfigPaths = uniq3([...fileNames2parentPaths(prettierConfigNames), rootPath, ...foldersExtraPaths]); const editorConfigs = options.editorConfig ? await getEditorConfigsMap(editorConfigPaths, editorConfigNames) : {}; const ignoreContents = options.ignore ? await getIgnoresContentMap(ignorePaths, ignoreNames) : {}; const prettierConfigs = options.config ? await getPrettierConfigsMap(prettierConfigPaths, prettierConfigNames) : {}; const ignoreManualFilesNames = options.ignore ? options.ignorePath || [] : []; const ignoreManualFilesPaths = ignoreManualFilesNames.map((fileName) => path16.resolve(fileName)); const ignoreManualFilesContents = await Promise.all(ignoreManualFilesPaths.map((filePath) => fs13.readFile(filePath, "utf8").catch(() => ""))); const ignoreManualFoldersPaths = ignoreManualFilesPaths.map(path16.dirname); const ignoreManual = getIgnoreBys(ignoreManualFoldersPaths, ignoreManualFilesContents.map(castArray5)); const prettierManualFilesNames = options.configPath || []; const prettierManualFilesPaths = prettierManualFilesNames.map((fileName) => path16.resolve(fileName)); const prettierManualFilesContents = await Promise.all(prettierManualFilesPaths.map((filePath) => fs13.readFile(filePath, "utf8"))); const prettierManualConfigs = await Promise.all(prettierManualFilesPaths.map(Loaders.auto)); const prettierManualConfig = prettierManualConfigs.length ? Object.assign({}, ...prettierManualConfigs) : void 0; const cliContextConfig = options.contextOptions; const cliFormatConfig = options.formatOptions; const cacheVersion = dist_default23({ prettierVersion, cliVersion, pluginsNames, pluginsVersions, editorConfigs, ignoreContents, prettierConfigs, ignoreManualFilesPaths, ignoreManualFilesContents, prettierManualFilesPaths, prettierManualFilesContents, cliContextConfig, cliFormatConfig, pluginsDefaultOptions, pluginsCustomOptions }); const shouldCache = options.cache && !options.dump && !pluginsVersionsMissing.length && isUndefined4(cliContextConfig.cursorOffset); const cache3 = shouldCache ? new cache_default(cacheVersion, projectPath, options, stdout) : void 0; const prettier = await makePrettier(options, cache3); const filesResults = await Promise.allSettled(filesPathsTargets.map(async (filePath) => { const isIgnored = () => ignoreManual ? ignoreManual(filePath) : getIgnoreResolved(filePath, ignoreNames); const isCacheable = () => cache3 == null ? void 0 : cache3.has(filePath, isIgnored); const isExplicitlyIncluded = () => filesExplicitPathsSet.has(filePath); const isForceIncluded = options.dump && isExplicitlyIncluded(); const isExcluded = cache3 ? !await isCacheable() : await isIgnored(); if (!isForceIncluded && isExcluded) return; const getFormatOptions = async () => { const editorConfig = options.editorConfig ? getEditorConfigFormatOptions(await getEditorConfigResolved(filePath, editorConfigNames)) : {}; const prettierConfig = prettierManualConfig || (options.config ? await getPrettierConfigResolved(filePath, prettierConfigNames) : {}); const formatOptions = { ...editorConfig, ...prettierConfig, ...options.formatOptions }; return formatOptions; }; try { if (options.check || options.list) { return await prettier.checkWithPath(filePath, getFormatOptions, cliContextConfig, pluginsDefaultOptions, pluginsCustomOptions); } else if (options.write) { return await prettier.writeWithPath(filePath, getFormatOptions, cliContextConfig, pluginsDefaultOptions, pluginsCustomOptions); } else { return await prettier.formatWithPath(filePath, getFormatOptions, cliContextConfig, pluginsDefaultOptions, pluginsCustomOptions); } } finally { spinner == null ? void 0 : spinner.update(fastRelativePath(rootPath, filePath)); } })); spinner == null ? void 0 : spinner.stop("Checking formatting..."); let totalMatched = filesResults.length; let totalIgnored = 0; let totalFormatted = 0; let totalUnformatted = 0; let totalUnknown = 0; let pathsUnknown = []; let totalErrored = 0; let pathsErrored = []; for (let i = 0, l = filesResults.length; i < l; i++) { const fileResult = filesResults[i]; if (fileResult.status === "fulfilled") { if (isUndefined4(fileResult.value)) { totalMatched -= 1; totalIgnored += 1; } else if (isString3(fileResult.value)) { stdout.always(trimFinalNewline(fileResult.value)); } else { if (fileResult.value) { totalFormatted += 1; } else { totalUnformatted += 1; const filePath = filesPathsTargets[i]; const fileNameToDisplay = normalizePathSeparatorsToPosix(fastRelativePath(rootPath, filePath)); if (options.check) { stderr.prefixed.warn(fileNameToDisplay); } else if (options.list || options.write) { stdout.warn(fileNameToDisplay); } } } } else { const error = fileResult.reason; if (error.name === "UndefinedParserError") { totalUnknown += 1; pathsUnknown.push(filesPathsTargets[i]); } if (error.name !== "UndefinedParserError" || !options.ignoreUnknown) { totalErrored += 1; pathsErrored.push(filesPathsTargets[i]); const filePath = filesPathsTargets[i]; const fileNameToDisplay = normalizePathSeparatorsToPosix(fastRelativePath(rootPath, filePath)); if (options.check || options.write || options.dump) { stderr.prefixed.error(`${fileNameToDisplay}: ${error}`); } else if (options.list) { stderr.error(fileNameToDisplay); } } } } stdout.prefixed.debug(`Files found: ${totalMatched + totalIgnored}`); stdout.prefixed.debug(`Files matched: ${totalMatched}`); stdout.prefixed.debug(`Files ignored: ${totalIgnored}`); stdout.prefixed.debug(`Files formatted: ${totalFormatted}`); stdout.prefixed.debug(`Files unformatted: ${totalUnformatted}`); stdout.prefixed.debug(`Files unknown: ${totalUnknown}`); stdout.prefixed.debug(() => pathsUnknown.map((filePath) => normalizePathSeparatorsToPosix(fastRelativePath(rootPath, filePath))).join("\n")); stdout.prefixed.debug(`Files errored: ${totalErrored}`); stdout.prefixed.debug(() => pathsErrored.map((filePath) => normalizePathSeparatorsToPosix(fastRelativePath(rootPath, filePath))).join("\n")); if (!totalMatched && !totalIgnored) { if (options.errorOnUnmatchedPattern) { stderr.prefixed.error(`No files matching the given patterns were found.`); } } if (totalUnformatted) { if (options.check) { stderr.prefixed.warn(`Code style issues found in ${totalUnformatted} ${pluralize("file", totalUnformatted)}. Run Prettier with --write to fix.`); } } if (!totalUnformatted && !totalErrored) { if (options.check) { stdout.log("All matched files use Prettier code style!"); } } cache3 == null ? void 0 : cache3.write(); process18.exitCode = !totalMatched && !totalIgnored && options.errorOnUnmatchedPattern || totalErrored || totalUnformatted && !options.write ? 1 : 0; } var import_is_binary_path; var init_dist44 = __esm({ "node_modules/@prettier/cli/dist/index.js"() { import_is_binary_path = __toESM(require_is_binary_path(), 1); init_dist26(); init_cache(); init_config_editorconfig(); init_config_ignore(); init_config_prettier(); init_constants_evaluate(); init_known(); init_logger2(); init_prettier(); init_utils12(); init_utils12(); } }); // node_modules/kasi/dist/to_space_case.js var splitRe = /([a-z])([A-Z]+)(?=([a-z])?)|([.:/_-])/g; var toSpaceCase = (value) => { return value.replace(splitRe, (_, $1, $2, $3, $4) => $4 ? " " : $3 && $2.length > 1 ? `${$1} ${$2.slice(0, -1)} ${$2.slice(-1)}` : `${$1} ${$2}`).toLowerCase().trim(); }; var to_space_case_default = toSpaceCase; // node_modules/kasi/dist/to_kebab_case.js var toKebabCase = (value) => { return to_space_case_default(value).replaceAll(" ", "-"); }; var to_kebab_case_default = toKebabCase; // node_modules/@prettier/cli/dist/bin.js init_dist12(); init_constants_evaluate(); init_utils12(); init_utils12(); var makeBin = () => { return dist_default11("prettier", "An opinionated code formatter").autoExit(true).autoUpdateNotifier(false).colors(true).package("prettier", PRETTIER_VERSION).usage(`${dist_default4.cyan("prettier")} ${dist_default4.yellow("[file/dir/glob...]")} ${dist_default4.green("[options]")}`).usage(`${dist_default4.cyan("prettier")} ${dist_default4.yellow('"src/**/*.js"')} ${dist_default4.green("--check")}`).usage(`${dist_default4.cyan("prettier")} ${dist_default4.yellow('"src/**/*.js"')} ${dist_default4.green("-l")} ${dist_default4.green("--no-cache")}`).usage(`${dist_default4.cyan("prettier")} ${dist_default4.yellow('"src/**/*.js"')} ${dist_default4.green("--write")} ${dist_default4.green("--no-parallel")}`).usage(`${dist_default4.cyan("prettier")} ${dist_default4.yellow("./path/to/target/file.js")} ${dist_default4.green("--cache-location")} ${dist_default4.blue("./path/to/cache/file.json")}`).option("--check, -c", "Check if the given files are formatted, print a human-friendly summary (see also --list-different)", { section: "Output", incompatible: ["l", "w"] }).option("--list-different, -l", "Print the names of files that are different from Prettier's formatting (see also --check)", { section: "Output", incompatible: ["c", "w"] }).option("--write, -w", "Edit files in-place (Beware!)", { section: "Output", incompatible: ["c", "l"] }).option("--arrow-parens ", 'Include parentheses around a sole arrow function parameter\nDefaults to "always"', { section: "Format", enum: ["always", "avoid"] }).option("--bracket-same-line", 'Put ">" of opening tags on the last line instead of on a new line\nDefaults to "false"', { section: "Format" }).option("--no-bracket-spacing", 'Do not print spaces between brackets\nDefaults to "true"', { section: "Format" }).option("--embedded-language-formatting ", 'Control how Prettier formats quoted code embedded in the file\nDefaults to "auto"', { section: "Format", enum: ["auto", "off"] }).option("--end-of-line ", 'Which end of line characters to apply\nDefaults to "lf"', { section: "Format", enum: ["lf", "crlf", "cr", "auto"] }).option("--experimental-operator-position ", 'Where to print operators when binary expressions wrap lines\nDefaults to "end"', { section: "Format", enum: ["start", "end"] }).option("--experimental-ternaries", 'Use curious ternaries, with the question mark after the condition\nDefaults to "false"', { section: "Format" }).option("--html-whitespace-sensitivity ", 'How to handle whitespaces in HTML\nDefaults to "css"', { section: "Format", enum: ["css", "strict", "ignore"] }).option("--jsx-single-quote", 'Use single quotes in JSX\nDefaults to "false"', { section: "Format" }).option("--object-wrap ", 'How to wrap object literals\nDefaults to "preserve"', { section: "Format", enum: ["preserve", "collapse"] }).option(`--parser <${DEFAULT_PARSERS.join("|")}>`, "Which parser to use", { section: "Format", enum: DEFAULT_PARSERS }).option("--print-width ", 'The line length where Prettier will try wrap\nDefaults to "80"', { section: "Format", type: "integer" }).option("--prose-wrap ", 'How to wrap prose\nDefaults to "preserve"', { section: "Format", enum: ["always", "never", "preserve"] }).option("--quote-props ", 'Change when properties in objects are quoted\nDefaults to "as-needed"', { section: "Format", enum: ["as-needed", "consistent", "preserve"] }).option("--no-semi", 'Do not print semicolons, except at the beginning of lines which may need them\nDefaults to "true"', { section: "Format" }).option("--single-attribute-per-line", 'Enforce single attribute per line in HTML, Vue and JSX\nDefaults to "false"', { section: "Format" }).option("--single-quote", 'Use single quotes instead of double quotes\nDefaults to "false"', { section: "Format" }).option("--tab-width ", 'Number of spaces per indentation level\nDefaults to "2"', { section: "Format", type: "integer" }).option("--trailing-comma ", 'Print trailing commas wherever possible when multi-line\nDefaults to "all"', { section: "Format", enum: ["all", "es5", "none"] }).option("--use-tabs", 'Indent with tabs instead of spaces\nDefaults to "false"', { section: "Format" }).option("--vue-indent-script-and-style", 'Indent script and style tags in Vue files\nDefaults to "false"', { section: "Format" }).option("--no-config", "Do not look for a configuration file", { section: "Config", default: true }).option("--config-path ", "Path to a Prettier configuration file (.prettierrc, package.json, prettier.config.js)", { section: "Config" }).option("--no-editorconfig", "Don't take .editorconfig into account when parsing configuration", { section: "Config", default: true }).option("--no-ignore", "Do not look for an ignore file", { section: "Config", default: true }).option("--ignore-path ", "Path to a file with patterns describing files to ignore\nMultiple values are accepted\nDefaults to [.gitignore, .prettierignore]", { section: "Config" }).option("--plugin ", "Add a plugin\nMultiple plugins are accepted\nDefaults to []", { section: "Config" }).option("--with-node-modules", 'Process files inside the "node_modules" directory', { section: "Config" }).option("--cursor-offset ", 'Print (to stderr) where a cursor at the given position would move to after formatting\nDefaults to "-1"', { section: "Editor", type: "integer" }).option("--range-end ", 'Format code ending at a given character offset (exclusive)\nThe range will extend forwards to the end of the selected statement\nDefaults to "Infinity"', { section: "Editor", type: "integer" }).option("--range-start ", 'Format code starting at a given character offset\nThe range will extend backwards to the start of the first line containing the selected statement\nDefaults to "0"', { section: "Editor", type: "integer" }).option("--no-cache", "Do not use the built-in caching mechanism", { section: "Other", default: true }).option("--cache-location ", "Path to the cache file", { section: "Other" }).option("--no-color", "Do not colorize output messages", { section: "Other" }).option("--no-error-on-unmatched-pattern", "Prevent errors when pattern is unmatched", { section: "Other", default: true }).option("--ignore-unknown, -u", "Ignore unknown files", { section: "Other" }).option("--insert-pragma", `Insert @format pragma into file's first docblock comment Defaults to "false"`, { section: "Other" }).option("--log-level ", 'What level of logs to report\nDefaults to "log"', { section: "Other", enum: ["silent", "error", "warn", "log", "debug"] }).option("--no-parallel", 'Process files in parallel\nDefaults to "true"', { section: "Other", default: true }).option("--parallel-workers ", 'Number of parallel workers to use\nDefaults to "0"', { section: "Other", type: "integer" }).option("--require-pragma", `Require either "@prettier" or "@format" to be present in the file's first docblock comment in order for it to be formatted Defaults to "false"`, { section: "Other" }).option("--stdin-filepath ", "Path to the file to pretend that stdin comes from", { section: "Other" }).argument("[file/dir/glob...]", "Files, directories or globs to format").action(async (options, files) => { const { run: run2 } = await Promise.resolve().then(() => (init_dist44(), dist_exports4)); const baseOptions = await normalizeOptions(options, files); const pluginsDefaultOptions = {}; const pluginsCustomOptions = {}; return run2(baseOptions, pluginsDefaultOptions, pluginsCustomOptions); }); }; var makePluggableBin = async () => { let bin2 = makeBin(); const argv = process.argv.slice(2); const args = dist_default5(argv); const formatOptions = normalizeFormatOptions(args); const pluginsDefaultOptions = {}; const pluginsNames = formatOptions.plugins || []; const pluginsParsers = /* @__PURE__ */ new Set(); const optionsNames = []; for (let i = 0, l = pluginsNames.length; i < l; i++) { const pluginName = pluginsNames[i]; const plugin = await getPluginOrExit(pluginName); for (const option in plugin.options) { optionsNames.push(option); Object.assign(pluginsDefaultOptions, plugin.defaultOptions); const schema2 = plugin.options[option]; const type2 = schema2.type; const section = schema2.category; const deprecated = !!schema2.deprecated; const descriptionInfo = schema2.description || ""; const initial = schema2.default; if (type2 === "int") { const descriptionDefault = isNumber2(initial) ? `Defaults to "${initial}"` : ""; const description = `${descriptionInfo} ${descriptionDefault}`.trim(); const range = !schema2.array ? schema2.range : void 0; const validate = (value) => isIntegerInRange(Number(value), range == null ? void 0 : range.start, range == null ? void 0 : range.end, range == null ? void 0 : range.step); const variadic = !!schema2.array; const type3 = "integer"; const args2 = variadic ? "" : ""; pluginsDefaultOptions[option] = initial; bin2 = bin2.option(`--${to_kebab_case_default(option)} ${args2}`, description, { deprecated, section, type: type3, validate }); } else if (type2 === "boolean") { const descriptionDefault = initial ? 'Defaults to "true"' : 'Defaults to "false"'; const description = `${descriptionInfo} ${descriptionDefault}`.trim(); pluginsDefaultOptions[option] = initial; bin2 = bin2.option(`--${to_kebab_case_default(option)}`, description, { deprecated, section }); } else if (type2 === "string" || type2 === "path") { const descriptionDefault = initial ? `Defaults to "${initial}"` : ""; const description = `${descriptionInfo} ${descriptionDefault}`.trim(); const variadic = !!schema2.array; const args2 = variadic ? "" : ""; pluginsDefaultOptions[option] = initial; bin2 = bin2.option(`--${to_kebab_case_default(option)} ${args2}`, description, { deprecated, section }); } else if (type2 === "choice") { const descriptionDefault = initial ? `Defaults to "${initial}"` : ""; const description = `${descriptionInfo} ${descriptionDefault}`.trim(); const values = schema2.choices.map((choice) => choice.value); const args2 = values.length ? `<${values.join("|")}>` : ""; pluginsDefaultOptions[option] = initial; bin2 = bin2.option(`--${to_kebab_case_default(option)} ${args2}`, description, { deprecated, section, enum: values }); } } if (plugin.parsers) { for (const parserName of Object.keys(plugin.parsers)) { pluginsParsers.add(parserName); } } } if (pluginsParsers.size) { const parsers = [...DEFAULT_PARSERS, ...pluginsParsers]; bin2.option(`--parser <${parsers}>`, "Which parser to use", { section: "Format", enum: parsers, override: true }); } bin2 = bin2.action(async (options, files) => { const { run: run2 } = await Promise.resolve().then(() => (init_dist44(), dist_exports4)); const baseOptions = await normalizeOptions(options, files); const pluginsCustomOptions = normalizePluginOptions(options, optionsNames); return run2(baseOptions, pluginsDefaultOptions, pluginsCustomOptions); }); return bin2; }; var makeWarnedPluggableBin = async () => { const argv = process.argv.slice(2); const args = dist_default5(argv); if (isString3(args["config"]) || args["config"] === true) { exit_default('The "--config" option has been renamed to "--config-path" instead'); } if (isString3(args["cache-strategy"])) { exit_default('The "--cache-strategy" option has been deleted, since the "metadata" strategy is no longer supported'); } if (isBoolean2(args["find-config-path"])) { exit_default('The "--find-config-path" is not currently supported, please open an issue on GitHub if you need it'); } if (args["config-precedence"]) { exit_default('The "config-precedence" option is not currently supported, please open an issue on GitHub if you need it'); } if (args["file-info"]) { exit_default('The "--file-info" option is not currently supported, please open an issue on GitHub if you need it'); } if (args["support-info"]) { exit_default('The "--support-info" option is not currently supported, please open an issue on GitHub if you need it'); } const bin2 = await makePluggableBin(); return bin2; }; var runBin = async () => { const bin2 = await makeWarnedPluggableBin(); await bin2.run(); }; var __promise = runBin(); export { __promise };