From 37866b126b4ad7a22abc51d785068f25ec17ee08 Mon Sep 17 00:00:00 2001 From: Jason3S <3740137+Jason3S@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:01:16 +0000 Subject: [PATCH] fix: Workflow Bot -- Update ALL Dependencies --- action-src/package.json | 2 +- action/lib/main_root.cjs | 640 ++++++++++++++++++++------------------- package.json | 8 +- pnpm-lock.yaml | 355 +++++++++++----------- 4 files changed, 504 insertions(+), 501 deletions(-) diff --git a/action-src/package.json b/action-src/package.json index 10ecaa15..305ace1c 100644 --- a/action-src/package.json +++ b/action-src/package.json @@ -30,7 +30,7 @@ "@actions/github": "^6.0.0", "@cspell/cspell-bundled-dicts": "^8.7.0", "@cspell/cspell-types": "^8.7.0", - "@octokit/webhooks-types": "^7.5.0", + "@octokit/webhooks-types": "^7.5.1", "@types/node": "^20.12.7", "cspell": "^8.7.0", "cspell-glob": "^8.7.0", diff --git a/action/lib/main_root.cjs b/action/lib/main_root.cjs index d7dd50c9..a0e8b553 100644 --- a/action/lib/main_root.cjs +++ b/action/lib/main_root.cjs @@ -4429,15 +4429,15 @@ var require_util2 = __commonJS({ async function fullyReadBody(body, processBody, processBodyError) { const successSteps = processBody; const errorSteps = processBodyError; - let reader2; + let reader; try { - reader2 = body.stream.getReader(); + reader = body.stream.getReader(); } catch (e) { errorSteps(e); return; } try { - const result = await readAllBytes(reader2); + const result = await readAllBytes(reader); successSteps(result); } catch (e) { errorSteps(e); @@ -4472,11 +4472,11 @@ var require_util2 = __commonJS({ } return input; } - async function readAllBytes(reader2) { + async function readAllBytes(reader) { const bytes = []; let byteLength = 0; while (true) { - const { done, value: chunk } = await reader2.read(); + const { done, value: chunk } = await reader.read(); if (done) { return Buffer.concat(bytes, byteLength); } @@ -11388,7 +11388,7 @@ var require_proxy_agent = __commonJS({ "../node_modules/.pnpm/undici@5.28.4/node_modules/undici/lib/proxy-agent.js"(exports2, module2) { "use strict"; var { kProxy, kClose, kDestroy, kInterceptors } = require_symbols(); - var { URL: URL5 } = require("url"); + var { URL: URL4 } = require("url"); var Agent = require_agent(); var Pool = require_pool(); var DispatcherBase = require_dispatcher_base(); @@ -11437,7 +11437,7 @@ var require_proxy_agent = __commonJS({ this[kRequestTls] = opts.requestTls; this[kProxyTls] = opts.proxyTls; this[kProxyHeaders] = opts.headers || {}; - const resolvedUrl = new URL5(opts.uri); + const resolvedUrl = new URL4(opts.uri); const { origin, port, host, username, password } = resolvedUrl; if (opts.auth && opts.token) { throw new InvalidArgumentError("opts.auth cannot be used in combination with opts.token"); @@ -11492,7 +11492,7 @@ var require_proxy_agent = __commonJS({ }); } dispatch(opts, handler) { - const { host } = new URL5(opts.origin); + const { host } = new URL4(opts.origin); const headers = buildHeaders(opts.headers); throwIfProxyAuthIsSent(headers); return this[kAgent].dispatch( @@ -14709,9 +14709,9 @@ var require_util4 = __commonJS({ fr[kResult] = null; fr[kError] = null; const stream = blob.stream(); - const reader2 = stream.getReader(); + const reader = stream.getReader(); const bytes = []; - let chunkPromise = reader2.read(); + let chunkPromise = reader.read(); let isFirstChunk = true; (async () => { while (!fr[kAborted]) { @@ -14731,7 +14731,7 @@ var require_util4 = __commonJS({ fireAProgressEvent("progress", fr); }); } - chunkPromise = reader2.read(); + chunkPromise = reader.read(); } else if (done) { queueMicrotask(() => { fr[kState] = "done"; @@ -14769,12 +14769,12 @@ var require_util4 = __commonJS({ } })(); } - function fireAProgressEvent(e, reader2) { + function fireAProgressEvent(e, reader) { const event = new ProgressEvent(e, { bubbles: false, cancelable: false }); - reader2.dispatchEvent(event); + reader.dispatchEvent(event); } function packageData(bytes, type, mimeType, encodingName) { switch (type) { @@ -15395,8 +15395,8 @@ var require_cache = __commonJS({ const bodyReadPromise = createDeferredPromise(); if (innerResponse.body != null) { const stream = innerResponse.body.stream; - const reader2 = stream.getReader(); - readAllBytes(reader2).then(bodyReadPromise.resolve, bodyReadPromise.reject); + const reader = stream.getReader(); + readAllBytes(reader).then(bodyReadPromise.resolve, bodyReadPromise.reject); } else { bodyReadPromise.resolve(void 0); } @@ -29771,9 +29771,9 @@ var require_src2 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/identity.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/identity.js var require_identity = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/identity.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/identity.js"(exports2) { "use strict"; var ALIAS = Symbol.for("yaml.alias"); var DOC = Symbol.for("yaml.document"); @@ -29828,9 +29828,9 @@ var require_identity = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/visit.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/visit.js var require_visit = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/visit.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/visit.js"(exports2) { "use strict"; var identity = require_identity(); var BREAK = Symbol("break visit"); @@ -29986,9 +29986,9 @@ var require_visit = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/directives.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/directives.js var require_directives = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/directives.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/directives.js"(exports2) { "use strict"; var identity = require_identity(); var visit = require_visit(); @@ -30157,9 +30157,9 @@ var require_directives = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/anchors.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/anchors.js var require_anchors = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/anchors.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/anchors.js"(exports2) { "use strict"; var identity = require_identity(); var visit = require_visit(); @@ -30228,9 +30228,9 @@ var require_anchors = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/applyReviver.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/applyReviver.js var require_applyReviver = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/applyReviver.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/applyReviver.js"(exports2) { "use strict"; function applyReviver(reviver, obj, key, val) { if (val && typeof val === "object") { @@ -30278,9 +30278,9 @@ var require_applyReviver = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/toJS.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/toJS.js var require_toJS = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/toJS.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/toJS.js"(exports2) { "use strict"; var identity = require_identity(); function toJS(value, arg, ctx) { @@ -30308,9 +30308,9 @@ var require_toJS = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Node.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Node.js var require_Node = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Node.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Node.js"(exports2) { "use strict"; var applyReviver = require_applyReviver(); var identity = require_identity(); @@ -30349,9 +30349,9 @@ var require_Node = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Alias.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Alias.js var require_Alias = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Alias.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Alias.js"(exports2) { "use strict"; var anchors = require_anchors(); var visit = require_visit(); @@ -30451,9 +30451,9 @@ var require_Alias = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Scalar.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Scalar.js var require_Scalar = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Scalar.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Scalar.js"(exports2) { "use strict"; var identity = require_identity(); var Node = require_Node(); @@ -30481,9 +30481,9 @@ var require_Scalar = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/createNode.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/createNode.js var require_createNode = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/createNode.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/createNode.js"(exports2) { "use strict"; var Alias = require_Alias(); var identity = require_identity(); @@ -30557,9 +30557,9 @@ var require_createNode = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Collection.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Collection.js var require_Collection = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Collection.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Collection.js"(exports2) { "use strict"; var createNode = require_createNode(); var identity = require_identity(); @@ -30701,9 +30701,9 @@ var require_Collection = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyComment.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyComment.js var require_stringifyComment = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyComment.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyComment.js"(exports2) { "use strict"; var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#"); function indentComment(comment, indent) { @@ -30718,9 +30718,9 @@ var require_stringifyComment = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/foldFlowLines.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/foldFlowLines.js var require_foldFlowLines = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/foldFlowLines.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/foldFlowLines.js"(exports2) { "use strict"; var FOLD_FLOW = "flow"; var FOLD_BLOCK = "block"; @@ -30852,9 +30852,9 @@ ${indent}${text.slice(fold + 1, end2)}`; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyString.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyString.js var require_stringifyString = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyString.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyString.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var foldFlowLines = require_foldFlowLines(); @@ -31127,9 +31127,9 @@ ${indent}`); } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringify.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringify.js var require_stringify3 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringify.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringify.js"(exports2) { "use strict"; var anchors = require_anchors(); var identity = require_identity(); @@ -31246,9 +31246,9 @@ ${ctx.indent}${str}`; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyPair.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyPair.js var require_stringifyPair = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyPair.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyPair.js"(exports2) { "use strict"; var identity = require_identity(); var Scalar = require_Scalar(); @@ -31379,9 +31379,9 @@ ${ctx.indent}`; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/log.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/log.js var require_log = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/log.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/log.js"(exports2) { "use strict"; function debug5(logLevel, ...messages2) { if (logLevel === "debug") @@ -31400,9 +31400,9 @@ var require_log = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/addPairToJSMap.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/addPairToJSMap.js var require_addPairToJSMap = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/addPairToJSMap.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/addPairToJSMap.js"(exports2) { "use strict"; var log = require_log(); var stringify4 = require_stringify3(); @@ -31494,9 +31494,9 @@ var require_addPairToJSMap = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Pair.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Pair.js var require_Pair = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/Pair.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/Pair.js"(exports2) { "use strict"; var createNode = require_createNode(); var stringifyPair = require_stringifyPair(); @@ -31534,9 +31534,9 @@ var require_Pair = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyCollection.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyCollection.js var require_stringifyCollection = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyCollection.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyCollection.js"(exports2) { "use strict"; var identity = require_identity(); var stringify4 = require_stringify3(); @@ -31678,9 +31678,9 @@ ${indent}${end}`; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/YAMLMap.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/YAMLMap.js var require_YAMLMap = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/YAMLMap.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/YAMLMap.js"(exports2) { "use strict"; var stringifyCollection = require_stringifyCollection(); var addPairToJSMap = require_addPairToJSMap(); @@ -31822,9 +31822,9 @@ var require_YAMLMap = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/map.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/map.js var require_map = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/map.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/map.js"(exports2) { "use strict"; var identity = require_identity(); var YAMLMap = require_YAMLMap(); @@ -31844,9 +31844,9 @@ var require_map = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/YAMLSeq.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/YAMLSeq.js var require_YAMLSeq = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/nodes/YAMLSeq.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/nodes/YAMLSeq.js"(exports2) { "use strict"; var createNode = require_createNode(); var stringifyCollection = require_stringifyCollection(); @@ -31960,9 +31960,9 @@ var require_YAMLSeq = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/seq.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/seq.js var require_seq = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/seq.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/seq.js"(exports2) { "use strict"; var identity = require_identity(); var YAMLSeq = require_YAMLSeq(); @@ -31982,9 +31982,9 @@ var require_seq = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/string.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/string.js var require_string = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/string.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/string.js"(exports2) { "use strict"; var stringifyString = require_stringifyString(); var string = { @@ -32001,9 +32001,9 @@ var require_string = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/null.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/null.js var require_null = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/common/null.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/common/null.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var nullTag = { @@ -32019,9 +32019,9 @@ var require_null = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/bool.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/bool.js var require_bool = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/bool.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/bool.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var boolTag = { @@ -32043,9 +32043,9 @@ var require_bool = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyNumber.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyNumber.js var require_stringifyNumber = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyNumber.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyNumber.js"(exports2) { "use strict"; function stringifyNumber({ format: format6, minFractionDigits, tag, value }) { if (typeof value === "bigint") @@ -32070,9 +32070,9 @@ var require_stringifyNumber = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/float.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/float.js var require_float = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/float.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/float.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var stringifyNumber = require_stringifyNumber(); @@ -32116,9 +32116,9 @@ var require_float = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/int.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/int.js var require_int = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/int.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/int.js"(exports2) { "use strict"; var stringifyNumber = require_stringifyNumber(); var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value); @@ -32161,9 +32161,9 @@ var require_int = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/schema.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/schema.js var require_schema = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/core/schema.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/core/schema.js"(exports2) { "use strict"; var map3 = require_map(); var _null = require_null(); @@ -32189,9 +32189,9 @@ var require_schema = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/json/schema.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/json/schema.js var require_schema2 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/json/schema.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/json/schema.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var map3 = require_map(); @@ -32256,9 +32256,9 @@ var require_schema2 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/binary.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/binary.js var require_binary = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/binary.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/binary.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var stringifyString = require_stringifyString(); @@ -32320,9 +32320,9 @@ var require_binary = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/pairs.js var require_pairs = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/pairs.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/pairs.js"(exports2) { "use strict"; var identity = require_identity(); var Pair = require_Pair(); @@ -32398,9 +32398,9 @@ ${cn.comment}` : item.comment; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/omap.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/omap.js var require_omap = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/omap.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/omap.js"(exports2) { "use strict"; var identity = require_identity(); var toJS = require_toJS(); @@ -32476,9 +32476,9 @@ var require_omap = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/bool.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/bool.js var require_bool2 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/bool.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/bool.js"(exports2) { "use strict"; var Scalar = require_Scalar(); function boolStringify({ value, source }, ctx) { @@ -32499,7 +32499,7 @@ var require_bool2 = __commonJS({ identify: (value) => value === false, default: true, tag: "tag:yaml.org,2002:bool", - test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/i, + test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/, resolve: () => new Scalar.Scalar(false), stringify: boolStringify }; @@ -32508,9 +32508,9 @@ var require_bool2 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/float.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/float.js var require_float2 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/float.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/float.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var stringifyNumber = require_stringifyNumber(); @@ -32557,9 +32557,9 @@ var require_float2 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/int.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/int.js var require_int2 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/int.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/int.js"(exports2) { "use strict"; var stringifyNumber = require_stringifyNumber(); var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value); @@ -32636,9 +32636,9 @@ var require_int2 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/set.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/set.js var require_set = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/set.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/set.js"(exports2) { "use strict"; var identity = require_identity(); var Pair = require_Pair(); @@ -32725,9 +32725,9 @@ var require_set = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js var require_timestamp = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js"(exports2) { "use strict"; var stringifyNumber = require_stringifyNumber(); function parseSexagesimal(str, asBigInt) { @@ -32813,9 +32813,9 @@ var require_timestamp = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/schema.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/schema.js var require_schema3 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/yaml-1.1/schema.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/yaml-1.1/schema.js"(exports2) { "use strict"; var map3 = require_map(); var _null = require_null(); @@ -32855,9 +32855,9 @@ var require_schema3 = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/tags.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/tags.js var require_tags = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/tags.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/tags.js"(exports2) { "use strict"; var map3 = require_map(); var _null = require_null(); @@ -32938,9 +32938,9 @@ var require_tags = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/Schema.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/Schema.js var require_Schema = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/schema/Schema.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/schema/Schema.js"(exports2) { "use strict"; var identity = require_identity(); var map3 = require_map(); @@ -32971,9 +32971,9 @@ var require_Schema = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyDocument.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyDocument.js var require_stringifyDocument = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/stringify/stringifyDocument.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/stringify/stringifyDocument.js"(exports2) { "use strict"; var identity = require_identity(); var stringify4 = require_stringify3(); @@ -33051,9 +33051,9 @@ var require_stringifyDocument = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/Document.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/Document.js var require_Document = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/doc/Document.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/doc/Document.js"(exports2) { "use strict"; var Alias = require_Alias(); var Collection = require_Collection(); @@ -33359,9 +33359,9 @@ var require_Document = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/errors.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/errors.js var require_errors2 = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/errors.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/errors.js"(exports2) { "use strict"; var YAMLError = class extends Error { constructor(name, pos, code, message) { @@ -33424,9 +33424,9 @@ ${pointer} } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-props.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-props.js var require_resolve_props = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-props.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-props.js"(exports2) { "use strict"; function resolveProps(tokens, { flow, indicator, next, offset, onError, startOnNewline }) { let spaceBefore = false; @@ -33548,9 +33548,9 @@ var require_resolve_props = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-contains-newline.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-contains-newline.js var require_util_contains_newline = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-contains-newline.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-contains-newline.js"(exports2) { "use strict"; function containsNewline(key) { if (!key) @@ -33590,9 +33590,9 @@ var require_util_contains_newline = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-flow-indent-check.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-flow-indent-check.js var require_util_flow_indent_check = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-flow-indent-check.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-flow-indent-check.js"(exports2) { "use strict"; var utilContainsNewline = require_util_contains_newline(); function flowIndentCheck(indent, fc, onError) { @@ -33608,9 +33608,9 @@ var require_util_flow_indent_check = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-map-includes.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-map-includes.js var require_util_map_includes = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-map-includes.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-map-includes.js"(exports2) { "use strict"; var identity = require_identity(); function mapIncludes(ctx, items, search) { @@ -33624,9 +33624,9 @@ var require_util_map_includes = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-map.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-map.js var require_resolve_block_map = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-map.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-map.js"(exports2) { "use strict"; var Pair = require_Pair(); var YAMLMap = require_YAMLMap(); @@ -33728,9 +33728,9 @@ var require_resolve_block_map = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-seq.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-seq.js var require_resolve_block_seq = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-seq.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-seq.js"(exports2) { "use strict"; var YAMLSeq = require_YAMLSeq(); var resolveProps = require_resolve_props(); @@ -33776,9 +33776,9 @@ var require_resolve_block_seq = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-end.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-end.js var require_resolve_end = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-end.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-end.js"(exports2) { "use strict"; function resolveEnd(end, offset, reqSpace, onError) { let comment = ""; @@ -33819,9 +33819,9 @@ var require_resolve_end = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-flow-collection.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-flow-collection.js var require_resolve_flow_collection = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-flow-collection.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-flow-collection.js"(exports2) { "use strict"; var identity = require_identity(); var Pair = require_Pair(); @@ -34006,9 +34006,9 @@ var require_resolve_flow_collection = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-collection.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-collection.js var require_compose_collection = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-collection.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-collection.js"(exports2) { "use strict"; var identity = require_identity(); var Scalar = require_Scalar(); @@ -34062,9 +34062,9 @@ var require_compose_collection = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-scalar.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-scalar.js var require_resolve_block_scalar = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-block-scalar.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-block-scalar.js"(exports2) { "use strict"; var Scalar = require_Scalar(); function resolveBlockScalar(scalar, strict, onError) { @@ -34239,9 +34239,9 @@ var require_resolve_block_scalar = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-flow-scalar.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-flow-scalar.js var require_resolve_flow_scalar = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/resolve-flow-scalar.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/resolve-flow-scalar.js"(exports2) { "use strict"; var Scalar = require_Scalar(); var resolveEnd = require_resolve_end(); @@ -34456,9 +34456,9 @@ var require_resolve_flow_scalar = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-scalar.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-scalar.js var require_compose_scalar = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-scalar.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-scalar.js"(exports2) { "use strict"; var identity = require_identity(); var Scalar = require_Scalar(); @@ -34529,9 +34529,9 @@ var require_compose_scalar = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-empty-scalar-position.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-empty-scalar-position.js var require_util_empty_scalar_position = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/util-empty-scalar-position.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/util-empty-scalar-position.js"(exports2) { "use strict"; function emptyScalarPosition(offset, before, pos) { if (before) { @@ -34560,9 +34560,9 @@ var require_util_empty_scalar_position = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-node.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-node.js var require_compose_node = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-node.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-node.js"(exports2) { "use strict"; var Alias = require_Alias(); var composeCollection = require_compose_collection(); @@ -34655,9 +34655,9 @@ var require_compose_node = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-doc.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-doc.js var require_compose_doc = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/compose-doc.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/compose-doc.js"(exports2) { "use strict"; var Document = require_Document(); var composeNode = require_compose_node(); @@ -34696,9 +34696,9 @@ var require_compose_doc = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/composer.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/composer.js var require_composer = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/compose/composer.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/compose/composer.js"(exports2) { "use strict"; var directives = require_directives(); var Document = require_Document(); @@ -34901,9 +34901,9 @@ ${end.comment}` : end.comment; } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-scalar.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-scalar.js var require_cst_scalar = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-scalar.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-scalar.js"(exports2) { "use strict"; var resolveBlockScalar = require_resolve_block_scalar(); var resolveFlowScalar = require_resolve_flow_scalar(); @@ -35086,9 +35086,9 @@ var require_cst_scalar = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-stringify.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-stringify.js var require_cst_stringify = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-stringify.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-stringify.js"(exports2) { "use strict"; var stringify4 = (cst) => "type" in cst ? stringifyToken(cst) : stringifyItem(cst); function stringifyToken(token) { @@ -35147,9 +35147,9 @@ var require_cst_stringify = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-visit.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-visit.js var require_cst_visit = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst-visit.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst-visit.js"(exports2) { "use strict"; var BREAK = Symbol("break visit"); var SKIP = Symbol("skip children"); @@ -35209,9 +35209,9 @@ var require_cst_visit = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst.js var require_cst = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/cst.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/cst.js"(exports2) { "use strict"; var cstScalar = require_cst_scalar(); var cstStringify = require_cst_stringify(); @@ -35311,9 +35311,9 @@ var require_cst = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/lexer.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/lexer.js var require_lexer = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/lexer.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/lexer.js"(exports2) { "use strict"; var cst = require_cst(); function isEmpty2(ch) { @@ -35874,9 +35874,9 @@ var require_lexer = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/line-counter.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/line-counter.js var require_line_counter = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/line-counter.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/line-counter.js"(exports2) { "use strict"; var LineCounter = class { constructor() { @@ -35905,9 +35905,9 @@ var require_line_counter = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/parser.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/parser.js var require_parser = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/parse/parser.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/parse/parser.js"(exports2) { "use strict"; var cst = require_cst(); var lexer = require_lexer(); @@ -36755,9 +36755,9 @@ var require_parser = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/public-api.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/public-api.js var require_public_api = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/public-api.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/public-api.js"(exports2) { "use strict"; var composer = require_composer(); var Document = require_Document(); @@ -36849,9 +36849,9 @@ var require_public_api = __commonJS({ } }); -// ../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/index.js +// ../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/index.js var require_dist = __commonJS({ - "../node_modules/.pnpm/yaml@2.4.1/node_modules/yaml/dist/index.js"(exports2) { + "../node_modules/.pnpm/yaml@2.4.2/node_modules/yaml/dist/index.js"(exports2) { "use strict"; var composer = require_composer(); var Document = require_Document(); @@ -46612,7 +46612,7 @@ function getLogger() { // ../node_modules/.pnpm/cspell-lib@8.7.0/node_modules/cspell-lib/dist/esm/util/resolveFile.js var import_node_module2 = require("node:module"); -var import_node_url5 = require("node:url"); +var import_node_url4 = require("node:url"); // ../node_modules/.pnpm/global-directory@4.0.1/node_modules/global-directory/index.js var import_node_process = __toESM(require("node:process"), 1); @@ -46722,26 +46722,23 @@ function requireResolve(filename, paths) { // ../node_modules/.pnpm/@cspell+dynamic-import@8.7.0/node_modules/@cspell/dynamic-import/dist/esm/dynamicImport.mjs var import_node_fs4 = require("node:fs"); -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/resolve.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/resolve.js var import_node_assert2 = __toESM(require("node:assert"), 1); var import_node_fs3 = require("node:fs"); var import_node_process2 = __toESM(require("node:process"), 1); -var import_node_url4 = require("node:url"); +var import_node_url3 = require("node:url"); var import_node_path3 = __toESM(require("node:path"), 1); var import_node_module = require("node:module"); -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/get-format.js -var import_node_url3 = require("node:url"); - -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-config.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/get-format.js var import_node_url2 = require("node:url"); -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-json-reader.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/package-json-reader.js var import_node_fs2 = __toESM(require("node:fs"), 1); var import_node_path2 = __toESM(require("node:path"), 1); var import_node_url = require("node:url"); -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/errors.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/errors.js var import_node_v8 = __toESM(require("node:v8"), 1); var import_node_assert = __toESM(require("node:assert"), 1); var import_node_util2 = require("node:util"); @@ -46867,21 +46864,21 @@ codes.ERR_INVALID_PACKAGE_CONFIG = createError( codes.ERR_INVALID_PACKAGE_TARGET = createError( "ERR_INVALID_PACKAGE_TARGET", /** - * @param {string} pkgPath + * @param {string} packagePath * @param {string} key * @param {unknown} target * @param {boolean} [isImport=false] * @param {string} [base] */ - (pkgPath, key, target, isImport = false, base = void 0) => { - const relError = typeof target === "string" && !isImport && target.length > 0 && !target.startsWith("./"); + (packagePath, key, target, isImport = false, base = void 0) => { + const relatedError = typeof target === "string" && !isImport && target.length > 0 && !target.startsWith("./"); if (key === ".") { (0, import_node_assert.default)(isImport === false); - return `Invalid "exports" main target ${JSON.stringify(target)} defined in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ""}${relError ? '; targets must start with "./"' : ""}`; + 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 '${key}' in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ""}${relError ? '; targets must start with "./"' : ""}`; + )} defined for '${key}' in the package config ${packagePath}package.json${base ? ` imported from ${base}` : ""}${relatedError ? '; targets must start with "./"' : ""}`; }, Error ); @@ -46917,14 +46914,14 @@ codes.ERR_PACKAGE_IMPORT_NOT_DEFINED = createError( codes.ERR_PACKAGE_PATH_NOT_EXPORTED = createError( "ERR_PACKAGE_PATH_NOT_EXPORTED", /** - * @param {string} pkgPath + * @param {string} packagePath * @param {string} subpath * @param {string} [base] */ - (pkgPath, subpath, base = void 0) => { + (packagePath, subpath, base = void 0) => { if (subpath === ".") - return `No "exports" main defined in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`; - return `Package subpath '${subpath}' is not defined by "exports" in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`; + 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 ); @@ -46933,14 +46930,19 @@ codes.ERR_UNSUPPORTED_DIR_IMPORT = createError( "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} ext + * @param {string} extension * @param {string} path */ - (ext, path27) => { - return `Unknown file extension "${ext}" for ${path27}`; + (extension, path27) => { + return `Unknown file extension "${extension}" for ${path27}`; }, TypeError ); @@ -46963,20 +46965,20 @@ codes.ERR_INVALID_ARG_VALUE = createError( // Note: extra classes have been shaken out. // , RangeError ); -function createError(sym, value, def) { +function createError(sym, value, constructor) { messages.set(sym, value); - return makeNodeErrorWithCode(def, sym); + return makeNodeErrorWithCode(constructor, sym); } function makeNodeErrorWithCode(Base, key) { return NodeError; - function NodeError(...args) { + function NodeError(...parameters) { const limit = Error.stackTraceLimit; if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; const error4 = new Base(); if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = limit; - const message = getMessage(key, args, error4); + const message = getMessage(key, parameters, error4); Object.defineProperties(error4, { // Note: no need to implement `kIsNodeError` symbol, would be hard, // probably. @@ -47014,10 +47016,10 @@ function isErrorStackTraceLimitWritable() { } return own.call(desc, "writable") && desc.writable !== void 0 ? desc.writable : desc.set !== void 0; } -function hideStackFrames(fn) { - const hidden = nodeInternalPrefix + fn.name; - Object.defineProperty(fn, "name", { value: hidden }); - return fn; +function hideStackFrames(wrappedFunction) { + const hidden = nodeInternalPrefix + wrappedFunction.name; + Object.defineProperty(wrappedFunction, "name", { value: hidden }); + return wrappedFunction; } var captureLargerStackTrace = hideStackFrames( /** @@ -47037,29 +47039,29 @@ var captureLargerStackTrace = hideStackFrames( return error4; } ); -function getMessage(key, args, self) { +function getMessage(key, parameters, self) { const message = messages.get(key); (0, import_node_assert.default)(message !== void 0, "expected `message` to be found"); if (typeof message === "function") { (0, import_node_assert.default)( - message.length <= args.length, + message.length <= parameters.length, // Default options do not count. - `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${message.length}).` + `Code: ${key}; The provided arguments length (${parameters.length}) does not match the required ones (${message.length}).` ); - return Reflect.apply(message, self, args); + return Reflect.apply(message, self, parameters); } const regex = /%[dfijoOs]/g; let expectedLength = 0; while (regex.exec(message) !== null) expectedLength++; (0, import_node_assert.default)( - expectedLength === args.length, - `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${expectedLength}).` + expectedLength === parameters.length, + `Code: ${key}; The provided arguments length (${parameters.length}) does not match the required ones (${expectedLength}).` ); - if (args.length === 0) + if (parameters.length === 0) return message; - args.unshift(message); - return Reflect.apply(import_node_util2.format, null, args); + parameters.unshift(message); + return Reflect.apply(import_node_util2.format, null, parameters); } function determineSpecificType(value) { if (value === null || value === void 0) { @@ -47081,12 +47083,10 @@ function determineSpecificType(value) { return `type ${typeof value} (${inspected})`; } -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-json-reader.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/package-json-reader.js var hasOwnProperty = {}.hasOwnProperty; var { ERR_INVALID_PACKAGE_CONFIG } = codes; var cache = /* @__PURE__ */ new Map(); -var reader = { read }; -var package_json_reader_default = reader; function read(jsonPath, { base, specifier }) { const existing = cache.get(jsonPath); if (existing) { @@ -47151,47 +47151,37 @@ function read(jsonPath, { base, specifier }) { cache.set(jsonPath, result); return result; } - -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-config.js function getPackageScopeConfig(resolved) { - let packageJSONUrl = new import_node_url2.URL("package.json", resolved); + let packageJSONUrl = new URL("package.json", resolved); while (true) { const packageJSONPath2 = packageJSONUrl.pathname; if (packageJSONPath2.endsWith("node_modules/package.json")) { break; } - const packageConfig = package_json_reader_default.read( - (0, import_node_url2.fileURLToPath)(packageJSONUrl), - { specifier: resolved } - ); + const packageConfig = read((0, import_node_url.fileURLToPath)(packageJSONUrl), { + specifier: resolved + }); if (packageConfig.exists) { return packageConfig; } const lastPackageJSONUrl = packageJSONUrl; - packageJSONUrl = new import_node_url2.URL("../package.json", packageJSONUrl); + packageJSONUrl = new URL("../package.json", packageJSONUrl); if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) { break; } } - const packageJSONPath = (0, import_node_url2.fileURLToPath)(packageJSONUrl); + const packageJSONPath = (0, import_node_url.fileURLToPath)(packageJSONUrl); return { pjsonPath: packageJSONPath, exists: false, - main: void 0, - name: void 0, - type: "none", - exports: void 0, - imports: void 0 + type: "none" }; } - -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/resolve-get-package-type.js function getPackageType(url) { - const packageConfig = getPackageScopeConfig(url); - return packageConfig.type; + return getPackageScopeConfig(url).type; } -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/get-format.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/get-format.js var { ERR_UNKNOWN_FILE_EXTENSION } = codes; var hasOwnProperty2 = {}.hasOwnProperty; var extensionFormatMap = { @@ -47241,29 +47231,29 @@ function extname3(url) { return ""; } function getFileProtocolModuleFormat(url, _context, ignoreErrors) { - const ext = extname3(url); - if (ext === ".js") { + const value = extname3(url); + if (value === ".js") { const packageType = getPackageType(url); if (packageType !== "none") { return packageType; } return "commonjs"; } - if (ext === "") { + if (value === "") { const packageType = getPackageType(url); if (packageType === "none" || packageType === "commonjs") { return "commonjs"; } return "module"; } - const format6 = extensionFormatMap[ext]; + const format6 = extensionFormatMap[value]; if (format6) return format6; if (ignoreErrors) { return void 0; } - const filepath = (0, import_node_url3.fileURLToPath)(url); - throw new ERR_UNKNOWN_FILE_EXTENSION(ext, filepath); + const filepath = (0, import_node_url2.fileURLToPath)(url); + throw new ERR_UNKNOWN_FILE_EXTENSION(value, filepath); } function getHttpProtocolModuleFormat() { } @@ -47275,7 +47265,7 @@ function defaultGetFormatWithoutErrors(url, context) { return protocolHandlers[protocol](url, context, true) || null; } -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/utils.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/utils.js var { ERR_INVALID_ARG_VALUE } = codes; var DEFAULT_CONDITIONS = Object.freeze(["node", "import"]); var DEFAULT_CONDITIONS_SET = new Set(DEFAULT_CONDITIONS); @@ -47299,7 +47289,7 @@ function getConditionsSet(conditions) { return getDefaultConditionsSet(); } -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/resolve.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/lib/resolve.js var RegExpPrototypeSymbolReplace = RegExp.prototype[Symbol.replace]; var { ERR_NETWORK_IMPORT_DISALLOWED, @@ -47309,24 +47299,25 @@ var { ERR_MODULE_NOT_FOUND, ERR_PACKAGE_IMPORT_NOT_DEFINED, ERR_PACKAGE_PATH_NOT_EXPORTED, - ERR_UNSUPPORTED_DIR_IMPORT + ERR_UNSUPPORTED_DIR_IMPORT, + ERR_UNSUPPORTED_RESOLVE_REQUEST } = codes; var own2 = {}.hasOwnProperty; var 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; var 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; var invalidPackageNameRegEx = /^\.|%|\\/; var patternRegEx = /\*/g; -var encodedSepRegEx = /%2f|%5c/i; +var encodedSeparatorRegEx = /%2f|%5c/i; var emittedPackageWarnings = /* @__PURE__ */ new Set(); var doubleSlashRegEx = /[/\\]{2}/; function emitInvalidSegmentDeprecation(target, request, match2, packageJsonUrl, internal, base, isTarget) { if (import_node_process2.default.noDeprecation) { return; } - const pjsonPath = (0, import_node_url4.fileURLToPath)(packageJsonUrl); + const pjsonPath = (0, import_node_url3.fileURLToPath)(packageJsonUrl); const double = doubleSlashRegEx.exec(isTarget ? target : request) !== null; import_node_process2.default.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 ${(0, import_node_url4.fileURLToPath)(base)}` : ""}.`, + `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 ${(0, import_node_url3.fileURLToPath)(base)}` : ""}.`, "DeprecationWarning", "DEP0166" ); @@ -47338,22 +47329,22 @@ function emitLegacyIndexDeprecation(url, packageJsonUrl, base, main) { const format6 = defaultGetFormatWithoutErrors(url, { parentURL: base.href }); if (format6 !== "module") return; - const urlPath = (0, import_node_url4.fileURLToPath)(url.href); - const pkgPath = (0, import_node_url4.fileURLToPath)(new import_node_url4.URL(".", packageJsonUrl)); - const basePath = (0, import_node_url4.fileURLToPath)(base); + const urlPath = (0, import_node_url3.fileURLToPath)(url.href); + const packagePath = (0, import_node_url3.fileURLToPath)(new import_node_url3.URL(".", packageJsonUrl)); + const basePath = (0, import_node_url3.fileURLToPath)(base); if (!main) { import_node_process2.default.emitWarning( - `No "main" or "exports" field defined in the package.json for ${pkgPath} resolving the main entry point "${urlPath.slice( - pkgPath.length + `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 (import_node_path3.default.resolve(pkgPath, main) !== urlPath) { + } else if (import_node_path3.default.resolve(packagePath, main) !== urlPath) { import_node_process2.default.emitWarning( - `Package ${pkgPath} has a "main" field set to "${main}", excluding the full filename and extension to the resolved file at "${urlPath.slice( - pkgPath.length + `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", @@ -47365,7 +47356,6 @@ function tryStatSync(path27) { try { return (0, import_node_fs3.statSync)(path27); } catch { - return new import_node_fs3.Stats(); } } function fileExists(url) { @@ -47376,7 +47366,7 @@ function fileExists(url) { function legacyMainResolve(packageJsonUrl, packageConfig, base) { let guess; if (packageConfig.main !== void 0) { - guess = new import_node_url4.URL(packageConfig.main, packageJsonUrl); + guess = new import_node_url3.URL(packageConfig.main, packageJsonUrl); if (fileExists(guess)) return guess; const tries2 = [ @@ -47389,7 +47379,7 @@ function legacyMainResolve(packageJsonUrl, packageConfig, base) { ]; let i2 = -1; while (++i2 < tries2.length) { - guess = new import_node_url4.URL(tries2[i2], packageJsonUrl); + guess = new import_node_url3.URL(tries2[i2], packageJsonUrl); if (fileExists(guess)) break; guess = void 0; @@ -47407,7 +47397,7 @@ function legacyMainResolve(packageJsonUrl, packageConfig, base) { const tries = ["./index.js", "./index.json", "./index.node"]; let i = -1; while (++i < tries.length) { - guess = new import_node_url4.URL(tries[i], packageJsonUrl); + guess = new import_node_url3.URL(tries[i], packageJsonUrl); if (fileExists(guess)) break; guess = void 0; @@ -47417,21 +47407,21 @@ function legacyMainResolve(packageJsonUrl, packageConfig, base) { return guess; } throw new ERR_MODULE_NOT_FOUND( - (0, import_node_url4.fileURLToPath)(new import_node_url4.URL(".", packageJsonUrl)), - (0, import_node_url4.fileURLToPath)(base) + (0, import_node_url3.fileURLToPath)(new import_node_url3.URL(".", packageJsonUrl)), + (0, import_node_url3.fileURLToPath)(base) ); } function finalizeResolution(resolved, base, preserveSymlinks) { - if (encodedSepRegEx.exec(resolved.pathname) !== null) { + if (encodedSeparatorRegEx.exec(resolved.pathname) !== null) { throw new ERR_INVALID_MODULE_SPECIFIER( resolved.pathname, 'must not include encoded "/" or "\\" characters', - (0, import_node_url4.fileURLToPath)(base) + (0, import_node_url3.fileURLToPath)(base) ); } let filePath; try { - filePath = (0, import_node_url4.fileURLToPath)(resolved); + filePath = (0, import_node_url3.fileURLToPath)(resolved); } catch (error4) { const cause = ( /** @type {ErrnoException} */ @@ -47444,15 +47434,15 @@ function finalizeResolution(resolved, base, preserveSymlinks) { const stats2 = tryStatSync( filePath.endsWith("/") ? filePath.slice(-1) : filePath ); - if (stats2.isDirectory()) { - const error4 = new ERR_UNSUPPORTED_DIR_IMPORT(filePath, (0, import_node_url4.fileURLToPath)(base)); + if (stats2 && stats2.isDirectory()) { + const error4 = new ERR_UNSUPPORTED_DIR_IMPORT(filePath, (0, import_node_url3.fileURLToPath)(base)); error4.url = String(resolved); throw error4; } - if (!stats2.isFile()) { + if (!stats2 || !stats2.isFile()) { const error4 = new ERR_MODULE_NOT_FOUND( filePath || resolved.pathname, - base && (0, import_node_url4.fileURLToPath)(base), + base && (0, import_node_url3.fileURLToPath)(base), true ); error4.url = String(resolved); @@ -47461,7 +47451,7 @@ function finalizeResolution(resolved, base, preserveSymlinks) { if (!preserveSymlinks) { const real = (0, import_node_fs3.realpathSync)(filePath); const { search, hash } = resolved; - resolved = (0, import_node_url4.pathToFileURL)(real + (filePath.endsWith(import_node_path3.default.sep) ? "/" : "")); + resolved = (0, import_node_url3.pathToFileURL)(real + (filePath.endsWith(import_node_path3.default.sep) ? "/" : "")); resolved.search = search; resolved.hash = hash; } @@ -47470,33 +47460,33 @@ function finalizeResolution(resolved, base, preserveSymlinks) { function importNotDefined(specifier, packageJsonUrl, base) { return new ERR_PACKAGE_IMPORT_NOT_DEFINED( specifier, - packageJsonUrl && (0, import_node_url4.fileURLToPath)(new import_node_url4.URL(".", packageJsonUrl)), - (0, import_node_url4.fileURLToPath)(base) + packageJsonUrl && (0, import_node_url3.fileURLToPath)(new import_node_url3.URL(".", packageJsonUrl)), + (0, import_node_url3.fileURLToPath)(base) ); } function exportsNotFound(subpath, packageJsonUrl, base) { return new ERR_PACKAGE_PATH_NOT_EXPORTED( - (0, import_node_url4.fileURLToPath)(new import_node_url4.URL(".", packageJsonUrl)), + (0, import_node_url3.fileURLToPath)(new import_node_url3.URL(".", packageJsonUrl)), subpath, - base && (0, import_node_url4.fileURLToPath)(base) + base && (0, import_node_url3.fileURLToPath)(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 ${(0, import_node_url4.fileURLToPath)(packageJsonUrl)}`; + const reason = `request is not a valid match in pattern "${match2}" for the "${internal ? "imports" : "exports"}" resolution of ${(0, import_node_url3.fileURLToPath)(packageJsonUrl)}`; throw new ERR_INVALID_MODULE_SPECIFIER( request, reason, - base && (0, import_node_url4.fileURLToPath)(base) + base && (0, import_node_url3.fileURLToPath)(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( - (0, import_node_url4.fileURLToPath)(new import_node_url4.URL(".", packageJsonUrl)), + (0, import_node_url3.fileURLToPath)(new import_node_url3.URL(".", packageJsonUrl)), subpath, target, internal, - base && (0, import_node_url4.fileURLToPath)(base) + base && (0, import_node_url3.fileURLToPath)(base) ); } function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, base, pattern, internal, isPathMap, conditions) { @@ -47506,7 +47496,7 @@ function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, bas if (internal && !target.startsWith("../") && !target.startsWith("/")) { let isURL2 = false; try { - new import_node_url4.URL(target); + new import_node_url3.URL(target); isURL2 = true; } catch { } @@ -47544,9 +47534,9 @@ function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, bas throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); } } - const resolved = new import_node_url4.URL(target, packageJsonUrl); + const resolved = new import_node_url3.URL(target, packageJsonUrl); const resolvedPath = resolved.pathname; - const packagePath = new import_node_url4.URL(".", packageJsonUrl).pathname; + const packagePath = new import_node_url3.URL(".", packageJsonUrl).pathname; if (!resolvedPath.startsWith(packagePath)) throw invalidPackageTarget(match2, target, packageJsonUrl, internal, base); if (subpath === "") @@ -47575,7 +47565,7 @@ function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, bas } } if (pattern) { - return new import_node_url4.URL( + return new import_node_url3.URL( RegExpPrototypeSymbolReplace.call( patternRegEx, resolved.href, @@ -47583,7 +47573,7 @@ function resolvePackageTargetString(target, subpath, match2, packageJsonUrl, bas ) ); } - return new import_node_url4.URL(subpath, resolved); + return new import_node_url3.URL(subpath, resolved); } function isArrayIndex(key) { const keyNumber = Number(key); @@ -47656,7 +47646,7 @@ function resolvePackageTarget(packageJsonUrl, target, subpath, packageSubpath, b const key = keys3[i]; if (isArrayIndex(key)) { throw new ERR_INVALID_PACKAGE_CONFIG2( - (0, import_node_url4.fileURLToPath)(packageJsonUrl), + (0, import_node_url3.fileURLToPath)(packageJsonUrl), base, '"exports" cannot contain numeric property keys.' ); @@ -47707,15 +47697,15 @@ function isConditionalExportsMainSugar(exports2, packageJsonUrl, base) { const keys3 = Object.getOwnPropertyNames(exports2); let isConditionalSugar = false; let i = 0; - let j = -1; - while (++j < keys3.length) { - const key = keys3[j]; - const curIsConditionalSugar = key === "" || key[0] !== "."; + let keyIndex = -1; + while (++keyIndex < keys3.length) { + const key = keys3[keyIndex]; + const currentIsConditionalSugar = key === "" || key[0] !== "."; if (i++ === 0) { - isConditionalSugar = curIsConditionalSugar; - } else if (isConditionalSugar !== curIsConditionalSugar) { + isConditionalSugar = currentIsConditionalSugar; + } else if (isConditionalSugar !== currentIsConditionalSugar) { throw new ERR_INVALID_PACKAGE_CONFIG2( - (0, import_node_url4.fileURLToPath)(packageJsonUrl), + (0, import_node_url3.fileURLToPath)(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.` ); @@ -47727,12 +47717,12 @@ function emitTrailingSlashPatternDeprecation(match2, pjsonUrl, base) { if (import_node_process2.default.noDeprecation) { return; } - const pjsonPath = (0, import_node_url4.fileURLToPath)(pjsonUrl); + const pjsonPath = (0, import_node_url3.fileURLToPath)(pjsonUrl); if (emittedPackageWarnings.has(pjsonPath + "|" + match2)) return; emittedPackageWarnings.add(pjsonPath + "|" + match2); import_node_process2.default.emitWarning( - `Use of deprecated trailing slash pattern mapping "${match2}" in the "exports" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${(0, import_node_url4.fileURLToPath)(base)}` : ""}. Mapping specifiers ending in "/" is no longer supported.`, + `Use of deprecated trailing slash pattern mapping "${match2}" in the "exports" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${(0, import_node_url3.fileURLToPath)(base)}` : ""}. Mapping specifiers ending in "/" is no longer supported.`, "DeprecationWarning", "DEP0155" ); @@ -47830,12 +47820,12 @@ function patternKeyCompare(a, b) { 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, (0, import_node_url4.fileURLToPath)(base)); + throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, (0, import_node_url3.fileURLToPath)(base)); } let packageJsonUrl; const packageConfig = getPackageScopeConfig(base); if (packageConfig.exists) { - packageJsonUrl = (0, import_node_url4.pathToFileURL)(packageConfig.pjsonPath); + packageJsonUrl = (0, import_node_url3.pathToFileURL)(packageConfig.pjsonPath); const imports = packageConfig.imports; if (imports) { if (own2.call(imports, name) && !name.includes("*")) { @@ -47914,7 +47904,7 @@ function parsePackageName(specifier, base) { throw new ERR_INVALID_MODULE_SPECIFIER( specifier, "is not a valid package name", - (0, import_node_url4.fileURLToPath)(base) + (0, import_node_url3.fileURLToPath)(base) ); } const packageSubpath = "." + (separatorIndex === -1 ? "" : specifier.slice(separatorIndex)); @@ -47922,7 +47912,7 @@ function parsePackageName(specifier, base) { } function packageResolve(specifier, base, conditions) { if (import_node_module.builtinModules.includes(specifier)) { - return new import_node_url4.URL("node:" + specifier); + return new import_node_url3.URL("node:" + specifier); } const { packageName: packageName2, packageSubpath, isScoped } = parsePackageName( specifier, @@ -47930,7 +47920,7 @@ function packageResolve(specifier, base, conditions) { ); const packageConfig = getPackageScopeConfig(base); if (packageConfig.exists) { - const packageJsonUrl2 = (0, import_node_url4.pathToFileURL)(packageConfig.pjsonPath); + const packageJsonUrl2 = (0, import_node_url3.pathToFileURL)(packageConfig.pjsonPath); if (packageConfig.name === packageName2 && packageConfig.exports !== void 0 && packageConfig.exports !== null) { return packageExportsResolve( packageJsonUrl2, @@ -47941,27 +47931,24 @@ function packageResolve(specifier, base, conditions) { ); } } - let packageJsonUrl = new import_node_url4.URL( + let packageJsonUrl = new import_node_url3.URL( "./node_modules/" + packageName2 + "/package.json", base ); - let packageJsonPath = (0, import_node_url4.fileURLToPath)(packageJsonUrl); + let packageJsonPath = (0, import_node_url3.fileURLToPath)(packageJsonUrl); let lastPath; do { const stat3 = tryStatSync(packageJsonPath.slice(0, -13)); - if (!stat3.isDirectory()) { + if (!stat3 || !stat3.isDirectory()) { lastPath = packageJsonPath; - packageJsonUrl = new import_node_url4.URL( + packageJsonUrl = new import_node_url3.URL( (isScoped ? "../../../../node_modules/" : "../../../node_modules/") + packageName2 + "/package.json", packageJsonUrl ); - packageJsonPath = (0, import_node_url4.fileURLToPath)(packageJsonUrl); + packageJsonPath = (0, import_node_url3.fileURLToPath)(packageJsonUrl); continue; } - const packageConfig2 = package_json_reader_default.read(packageJsonPath, { - base, - specifier - }); + const packageConfig2 = read(packageJsonPath, { base, specifier }); if (packageConfig2.exports !== void 0 && packageConfig2.exports !== null) { return packageExportsResolve( packageJsonUrl, @@ -47974,9 +47961,9 @@ function packageResolve(specifier, base, conditions) { if (packageSubpath === ".") { return legacyMainResolve(packageJsonUrl, packageConfig2, base); } - return new import_node_url4.URL(packageSubpath, packageJsonUrl); + return new import_node_url3.URL(packageSubpath, packageJsonUrl); } while (packageJsonPath.length !== lastPath.length); - throw new ERR_MODULE_NOT_FOUND(packageName2, (0, import_node_url4.fileURLToPath)(base), false); + throw new ERR_MODULE_NOT_FOUND(packageName2, (0, import_node_url3.fileURLToPath)(base), false); } function isRelativeSpecifier(specifier) { if (specifier[0] === ".") { @@ -47997,19 +47984,29 @@ function shouldBeTreatedAsRelativeOrAbsolutePath(specifier) { } function moduleResolve(specifier, base, conditions, preserveSymlinks) { const protocol = base.protocol; - const isRemote = protocol === "http:" || protocol === "https:"; + const isData = protocol === "data:"; + const isRemote = isData || protocol === "http:" || protocol === "https:"; let resolved; if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) { - resolved = new import_node_url4.URL(specifier, base); - } else if (!isRemote && specifier[0] === "#") { + try { + resolved = new import_node_url3.URL(specifier, base); + } catch (error_) { + const error4 = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base); + error4.cause = error_; + throw error4; + } + } else if (protocol === "file:" && specifier[0] === "#") { resolved = packageImportsResolve(specifier, base, conditions); } else { try { - resolved = new import_node_url4.URL(specifier); - } catch { - if (!isRemote) { - resolved = packageResolve(specifier, base, conditions); + resolved = new import_node_url3.URL(specifier); + } catch (error_) { + if (isRemote && !import_node_module.builtinModules.includes(specifier)) { + const error4 = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base); + error4.cause = error_; + throw error4; } + resolved = packageResolve(specifier, base, conditions); } } (0, import_node_assert2.default)(resolved !== void 0, "expected to be defined"); @@ -48072,14 +48069,15 @@ function defaultResolve(specifier, context = {}) { let parsedParentURL; if (parentURL) { try { - parsedParentURL = new import_node_url4.URL(parentURL); + parsedParentURL = new import_node_url3.URL(parentURL); } catch { } } let parsed; + let protocol; try { - parsed = shouldBeTreatedAsRelativeOrAbsolutePath(specifier) ? new import_node_url4.URL(specifier, parsedParentURL) : new import_node_url4.URL(specifier); - const protocol = parsed.protocol; + parsed = shouldBeTreatedAsRelativeOrAbsolutePath(specifier) ? new import_node_url3.URL(specifier, parsedParentURL) : new import_node_url3.URL(specifier); + protocol = parsed.protocol; if (protocol === "data:") { return { url: parsed.href, format: null }; } @@ -48092,10 +48090,16 @@ function defaultResolve(specifier, context = {}) { ); if (maybeReturn) return maybeReturn; + if (protocol === void 0 && parsed) { + protocol = parsed.protocol; + } + if (protocol === "node:") { + return { url: specifier }; + } if (parsed && parsed.protocol === "node:") return { url: specifier }; const conditions = getConditionsSet(context.conditions); - const url = moduleResolve(specifier, new import_node_url4.URL(parentURL), conditions, false); + const url = moduleResolve(specifier, new import_node_url3.URL(parentURL), conditions, false); return { // Do NOT cast `url` to a string: that will work even when there are real // problems, silencing them @@ -48104,7 +48108,7 @@ function defaultResolve(specifier, context = {}) { }; } -// ../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/index.js +// ../node_modules/.pnpm/import-meta-resolve@4.1.0/node_modules/import-meta-resolve/index.js function resolve2(specifier, parent) { if (!parent) { throw new Error( @@ -48417,7 +48421,7 @@ var FileResolver = class { tryCreateRequire = (filename, relativeTo2) => { if (filename instanceof URL) return void 0; - const rel = !isURLLike(relativeTo2) || isFileURL2(relativeTo2) ? relativeTo2 : (0, import_node_url5.pathToFileURL)("./"); + const rel = !isURLLike(relativeTo2) || isFileURL2(relativeTo2) ? relativeTo2 : (0, import_node_url4.pathToFileURL)("./"); const require2 = (0, import_node_module2.createRequire)(rel); try { const r = require2.resolve(filename); @@ -59087,7 +59091,7 @@ function isDefined4(v) { } // ../node_modules/.pnpm/cspell-dictionary@8.7.0/node_modules/cspell-dictionary/dist/SpellingDictionary/createSpellingDictionary.js -var import_node_url6 = require("node:url"); +var import_node_url5 = require("node:url"); // ../node_modules/.pnpm/fast-equals@5.0.1/node_modules/fast-equals/dist/esm/index.mjs var getOwnPropertyNames = Object.getOwnPropertyNames; @@ -59916,7 +59920,7 @@ function _createSpellingDictionary(params) { } function createFailedToLoadDictionary(name, sourceUrl, error4, options) { const sourceHref = typeof sourceUrl === "string" ? sourceUrl : sourceUrl.href; - const source = sourceHref.startsWith("file:") ? (0, import_node_url6.fileURLToPath)(sourceUrl) : sourceHref; + const source = sourceHref.startsWith("file:") ? (0, import_node_url5.fileURLToPath)(sourceUrl) : sourceHref; options = options || {}; return { name, @@ -61075,13 +61079,13 @@ function determineType(uri, opts) { const regTrieTest = /\.trie\b/i; return regTrieTest.test(uri.pathname) ? "T" : defType; } -function load(reader2, uri, options) { +function load(reader, uri, options) { const type = determineType(uri, options); const loader2 = loaders[type] || loaders.default; - return loader2(reader2, uri, options); + return loader2(reader, uri, options); } -async function legacyWordList(reader2, filename, options) { - const lines = await reader2.readLines(filename); +async function legacyWordList(reader, filename, options) { + const lines = await reader.readLines(filename); return _legacyWordListSync(lines, filename, options); } function _legacyWordListSync(lines, filename, options) { @@ -61095,8 +61099,8 @@ function _legacyWordListSync(lines, filename, options) { ); return createSpellingDictionary(words, options.name, filename.toString(), options); } -async function wordsPerLineWordList(reader2, filename, options) { - const lines = await reader2.readLines(filename); +async function wordsPerLineWordList(reader, filename, options) { + const lines = await reader.readLines(filename); return _wordsPerLineWordList(lines, filename.toString(), options); } function _wordsPerLineWordList(lines, filename, options) { @@ -61110,12 +61114,12 @@ function _wordsPerLineWordList(lines, filename, options) { ); return createSpellingDictionary(words, options.name, filename, options); } -async function loadSimpleWordList(reader2, filename, options) { - const lines = await reader2.readLines(filename); +async function loadSimpleWordList(reader, filename, options) { + const lines = await reader.readLines(filename); return createSpellingDictionary(lines, options.name, filename.href, options); } -async function loadTrie(reader2, filename, options) { - const content = await reader2.read(filename); +async function loadTrie(reader, filename, options) { + const content = await reader.read(filename); return createSpellingDictionaryFromTrieFile(content, options.name, filename.href, options); } function toLines(content) { @@ -64126,9 +64130,9 @@ var path17 = __toESM(require("path"), 1); // ../node_modules/.pnpm/find-up-simple@1.0.0/node_modules/find-up-simple/index.js var import_node_process4 = __toESM(require("node:process"), 1); var import_promises3 = __toESM(require("node:fs/promises"), 1); -var import_node_url7 = require("node:url"); +var import_node_url6 = require("node:url"); var import_node_path4 = __toESM(require("node:path"), 1); -var toPath = (urlOrPath) => urlOrPath instanceof URL ? (0, import_node_url7.fileURLToPath)(urlOrPath) : urlOrPath; +var toPath = (urlOrPath) => urlOrPath instanceof URL ? (0, import_node_url6.fileURLToPath)(urlOrPath) : urlOrPath; async function findUp2(name, { cwd = import_node_process4.default.cwd(), type = "file", diff --git a/package.json b/package.json index fd934f40..c3e1016b 100644 --- a/package.json +++ b/package.json @@ -40,15 +40,15 @@ "homepage": "https://github.com/streetsidesoftware/cspell-action#readme", "devDependencies": { "@tsconfig/node20": "^20.1.4", - "@typescript-eslint/eslint-plugin": "^7.7.0", - "@typescript-eslint/parser": "^7.7.0", - "@vitest/coverage-istanbul": "^1.5.0", + "@typescript-eslint/eslint-plugin": "^7.7.1", + "@typescript-eslint/parser": "^7.7.1", + "@vitest/coverage-istanbul": "^1.5.2", "env-cmd": "^10.1.0", "eslint": "^8.57.0", "prettier": "^3.2.5", "shx": "^0.3.4", "typescript": "^5.4.5", - "vitest": "^1.5.0" + "vitest": "^1.5.2" }, "engines": { "node": ">=20" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 73877d7d..62d0bb96 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,14 +12,14 @@ importers: specifier: ^20.1.4 version: 20.1.4 '@typescript-eslint/eslint-plugin': - specifier: ^7.7.0 - version: 7.7.0(@typescript-eslint/parser@7.7.0)(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.7.1 + version: 7.7.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': - specifier: ^7.7.0 - version: 7.7.0(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.7.1 + version: 7.7.1(eslint@8.57.0)(typescript@5.4.5) '@vitest/coverage-istanbul': - specifier: ^1.5.0 - version: 1.5.0(vitest@1.5.0) + specifier: ^1.5.2 + version: 1.5.2(vitest@1.5.2) env-cmd: specifier: ^10.1.0 version: 10.1.0 @@ -36,8 +36,8 @@ importers: specifier: ^5.4.5 version: 5.4.5 vitest: - specifier: ^1.5.0 - version: 1.5.0 + specifier: ^1.5.2 + version: 1.5.2 action-src: dependencies: @@ -54,8 +54,8 @@ importers: specifier: ^8.7.0 version: 8.7.0 '@octokit/webhooks-types': - specifier: ^7.5.0 - version: 7.5.0 + specifier: ^7.5.1 + version: 7.5.1 '@types/node': specifier: ^20.12.7 version: 20.12.7 @@ -75,11 +75,6 @@ importers: packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - /@actions/core@1.10.1: resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==} dependencies: @@ -351,12 +346,12 @@ packages: '@cspell/dict-ruby': 5.0.2 '@cspell/dict-rust': 4.0.2 '@cspell/dict-scala': 5.0.0 - '@cspell/dict-software-terms': 3.3.19 + '@cspell/dict-software-terms': 3.3.20 '@cspell/dict-sql': 2.1.3 '@cspell/dict-svelte': 1.0.2 '@cspell/dict-swift': 2.0.1 '@cspell/dict-terraform': 1.0.0 - '@cspell/dict-typescript': 3.1.3 + '@cspell/dict-typescript': 3.1.4 '@cspell/dict-vue': 3.0.0 dev: false @@ -571,8 +566,8 @@ packages: resolution: {integrity: sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==} dev: false - /@cspell/dict-software-terms@3.3.19: - resolution: {integrity: sha512-nNQiwhXUe+vEBzOpvi2sVycOLrVJw2bNtwRum1Ya1w74nOKgciCE21UU9fkPGA6p45bU9qmwtPoYccMlHsGMSg==} + /@cspell/dict-software-terms@3.3.20: + resolution: {integrity: sha512-KmPwCxYWEu7SGyT/0m/n6i6R4ZgxbmN3XcerzA6Z629Wm5iZTVfJaMWqDK2RKAyBawS7OMfxGz0W/wYU4FhJlA==} dev: false /@cspell/dict-sql@2.1.3: @@ -591,8 +586,8 @@ packages: resolution: {integrity: sha512-Ak+vy4HP/bOgzf06BAMC30+ZvL9mzv21xLM2XtfnBLTDJGdxlk/nK0U6QT8VfFLqJ0ZZSpyOxGsUebWDCTr/zQ==} dev: false - /@cspell/dict-typescript@3.1.3: - resolution: {integrity: sha512-TdD789OWwOImH/IMyz/QRA6LJz7ScI/qbn1YOkcAW3AROvgbc0oKAxzp08+Xu8tj4GROrJ9UqZdh0t9xQCPkPg==} + /@cspell/dict-typescript@3.1.4: + resolution: {integrity: sha512-jUcPa0rsPca5ur1+G56DXnSc5hbbJkzvPHHvyQtkbPXBQd3CXPMNfrTVCgzex/7cY/7FONcpFCUwgwfni9Jqbw==} dev: false /@cspell/dict-vue@3.0.0: @@ -603,7 +598,7 @@ packages: resolution: {integrity: sha512-xlEPdiHVDu+4xYkvwjL9MgklxOi9XB+Pr1H9s3Ww9WEq+q6BA3xOHxLIU/k8mhqFTMZGFZRCsdy/EwMu6SyRhQ==} engines: {node: '>=18.0'} dependencies: - import-meta-resolve: 4.0.0 + import-meta-resolve: 4.1.0 dev: false /@cspell/strong-weak-map@8.7.0: @@ -1034,132 +1029,132 @@ packages: '@octokit/openapi-types': 22.1.0 dev: false - /@octokit/webhooks-types@7.5.0: - resolution: {integrity: sha512-oFypF1oD0z1x4qi+Ff4ienJ/iZ3GBXoht+0B+x8gMIWiNhRJZADYO+2KOh03ZGOX8WF6iJELZWw+giHieBO7rg==} + /@octokit/webhooks-types@7.5.1: + resolution: {integrity: sha512-1dozxWEP8lKGbtEu7HkRbK1F/nIPuJXNfT0gd96y6d3LcHZTtRtlf8xz3nicSJfesADxJyDh+mWBOsdLkqgzYw==} dev: false - /@rollup/rollup-android-arm-eabi@4.14.3: - resolution: {integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==} + /@rollup/rollup-android-arm-eabi@4.17.1: + resolution: {integrity: sha512-P6Wg856Ou/DLpR+O0ZLneNmrv7QpqBg+hK4wE05ijbC/t349BRfMfx+UFj5Ha3fCFopIa6iSZlpdaB4agkWp2Q==} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-android-arm64@4.14.3: - resolution: {integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==} + /@rollup/rollup-android-arm64@4.17.1: + resolution: {integrity: sha512-piwZDjuW2WiHr05djVdUkrG5JbjnGbtx8BXQchYCMfib/nhjzWoiScelZ+s5IJI7lecrwSxHCzW026MWBL+oJQ==} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-arm64@4.14.3: - resolution: {integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==} + /@rollup/rollup-darwin-arm64@4.17.1: + resolution: {integrity: sha512-LsZXXIsN5Q460cKDT4Y+bzoPDhBmO5DTr7wP80d+2EnYlxSgkwdPfE3hbE+Fk8dtya+8092N9srjBTJ0di8RIA==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-x64@4.14.3: - resolution: {integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==} + /@rollup/rollup-darwin-x64@4.17.1: + resolution: {integrity: sha512-S7TYNQpWXB9APkxu/SLmYHezWwCoZRA9QLgrDeml+SR2A1LLPD2DBUdUlvmCF7FUpRMKvbeeWky+iizQj65Etw==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.14.3: - resolution: {integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==} + /@rollup/rollup-linux-arm-gnueabihf@4.17.1: + resolution: {integrity: sha512-Lq2JR5a5jsA5um2ZoLiXXEaOagnVyCpCW7xvlcqHC7y46tLwTEgUSTM3a2TfmmTMmdqv+jknUioWXlmxYxE9Yw==} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm-musleabihf@4.14.3: - resolution: {integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==} + /@rollup/rollup-linux-arm-musleabihf@4.17.1: + resolution: {integrity: sha512-9BfzwyPNV0IizQoR+5HTNBGkh1KXE8BqU0DBkqMngmyFW7BfuIZyMjQ0s6igJEiPSBvT3ZcnIFohZ19OqjhDPg==} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.14.3: - resolution: {integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==} + /@rollup/rollup-linux-arm64-gnu@4.17.1: + resolution: {integrity: sha512-e2uWaoxo/rtzA52OifrTSXTvJhAXb0XeRkz4CdHBK2KtxrFmuU/uNd544Ogkpu938BzEfvmWs8NZ8Axhw33FDw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-musl@4.14.3: - resolution: {integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==} + /@rollup/rollup-linux-arm64-musl@4.17.1: + resolution: {integrity: sha512-ekggix/Bc/d/60H1Mi4YeYb/7dbal1kEDZ6sIFVAE8pUSx7PiWeEh+NWbL7bGu0X68BBIkgF3ibRJe1oFTksQQ==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-powerpc64le-gnu@4.14.3: - resolution: {integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==} + /@rollup/rollup-linux-powerpc64le-gnu@4.17.1: + resolution: {integrity: sha512-UGV0dUo/xCv4pkr/C8KY7XLFwBNnvladt8q+VmdKrw/3RUd3rD0TptwjisvE2TTnnlENtuY4/PZuoOYRiGp8Gw==} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-riscv64-gnu@4.14.3: - resolution: {integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==} + /@rollup/rollup-linux-riscv64-gnu@4.17.1: + resolution: {integrity: sha512-gEYmYYHaehdvX46mwXrU49vD6Euf1Bxhq9pPb82cbUU9UT2NV+RSckQ5tKWOnNXZixKsy8/cPGtiUWqzPuAcXQ==} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-s390x-gnu@4.14.3: - resolution: {integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==} + /@rollup/rollup-linux-s390x-gnu@4.17.1: + resolution: {integrity: sha512-xeae5pMAxHFp6yX5vajInG2toST5lsCTrckSRUFwNgzYqnUjNBcQyqk1bXUxX5yhjWFl2Mnz3F8vQjl+2FRIcw==} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-gnu@4.14.3: - resolution: {integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==} + /@rollup/rollup-linux-x64-gnu@4.17.1: + resolution: {integrity: sha512-AsdnINQoDWfKpBzCPqQWxSPdAWzSgnYbrJYtn6W0H2E9It5bZss99PiLA8CgmDRfvKygt20UpZ3xkhFlIfX9zQ==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-musl@4.14.3: - resolution: {integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==} + /@rollup/rollup-linux-x64-musl@4.17.1: + resolution: {integrity: sha512-KoB4fyKXTR+wYENkIG3fFF+5G6N4GFvzYx8Jax8BR4vmddtuqSb5oQmYu2Uu067vT/Fod7gxeQYKupm8gAcMSQ==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.14.3: - resolution: {integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==} + /@rollup/rollup-win32-arm64-msvc@4.17.1: + resolution: {integrity: sha512-J0d3NVNf7wBL9t4blCNat+d0PYqAx8wOoY+/9Q5cujnafbX7BmtYk3XvzkqLmFECaWvXGLuHmKj/wrILUinmQg==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.14.3: - resolution: {integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==} + /@rollup/rollup-win32-ia32-msvc@4.17.1: + resolution: {integrity: sha512-xjgkWUwlq7IbgJSIxvl516FJ2iuC/7ttjsAxSPpC9kkI5iQQFHKyEN5BjbhvJ/IXIZ3yIBcW5QDlWAyrA+TFag==} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-x64-msvc@4.14.3: - resolution: {integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==} + /@rollup/rollup-win32-x64-msvc@4.17.1: + resolution: {integrity: sha512-0QbCkfk6cnnVKWqqlC0cUrrUMDMfu5ffvYMTUHf+qMN2uAb3MKP31LPcwiMXBNsvoFGs/kYdFOsuLmvppCopXA==} cpu: [x64] os: [win32] requiresBuild: true @@ -1192,8 +1187,8 @@ packages: resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} dev: true - /@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0)(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==} + /@typescript-eslint/eslint-plugin@7.7.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-KwfdWXJBOviaBVhxO3p5TJiLpNuh2iyXyjmWN0f1nU87pwyvfS0EmjC6ukQVYVFJd/K1+0NWGPDXiyEyQorn0Q==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -1204,11 +1199,11 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/type-utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/type-utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -1221,8 +1216,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==} + /@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -1231,10 +1226,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 eslint: 8.57.0 typescript: 5.4.5 @@ -1242,16 +1237,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager@7.7.0: - resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==} + /@typescript-eslint/scope-manager@7.7.1: + resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==} engines: {node: ^18.18.0 || >=20.0.0} dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/visitor-keys': 7.7.1 dev: true - /@typescript-eslint/type-utils@7.7.0(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==} + /@typescript-eslint/type-utils@7.7.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-ZksJLW3WF7o75zaBPScdW1Gbkwhd/lyeXGf1kQCxJaOeITscoSl0MjynVvCzuV5boUz/3fOI06Lz8La55mu29Q==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -1260,8 +1255,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) + '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) @@ -1270,13 +1265,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types@7.7.0: - resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==} + /@typescript-eslint/types@7.7.1: + resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==} engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5): - resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==} + /@typescript-eslint/typescript-estree@7.7.1(typescript@5.4.5): + resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -1284,8 +1279,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -1297,8 +1292,8 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@7.7.0(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==} + /@typescript-eslint/utils@7.7.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -1306,9 +1301,9 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -1316,11 +1311,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys@7.7.0: - resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==} + /@typescript-eslint/visitor-keys@7.7.1: + resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==} engines: {node: ^18.18.0 || >=20.0.0} dependencies: - '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/types': 7.7.1 eslint-visitor-keys: 3.4.3 dev: true @@ -1328,10 +1323,10 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@vitest/coverage-istanbul@1.5.0(vitest@1.5.0): - resolution: {integrity: sha512-mEbVTIAPKhMkszO0lwOwWiG8Cvkj7rdMgdmCNUDnmcSZYUWGIqM8+4O1bcQ1WMHkejpcwvED5oU6ZFm3syVb6A==} + /@vitest/coverage-istanbul@1.5.2(vitest@1.5.2): + resolution: {integrity: sha512-YGC+QSWOL8cQ2HQaTEFttmG9v3DGLy7lMZIGdqjtTgaW6omW17/uZPxuh6m2t69T0rFLqImduVthm5o/gYYWTQ==} peerDependencies: - vitest: 1.5.0 + vitest: 1.5.2 dependencies: debug: 4.3.4 istanbul-lib-coverage: 3.2.2 @@ -1342,43 +1337,43 @@ packages: magicast: 0.3.4 picocolors: 1.0.0 test-exclude: 6.0.0 - vitest: 1.5.0 + vitest: 1.5.2 transitivePeerDependencies: - supports-color dev: true - /@vitest/expect@1.5.0: - resolution: {integrity: sha512-0pzuCI6KYi2SIC3LQezmxujU9RK/vwC1U9R0rLuGlNGcOuDWxqWKu6nUdFsX9tH1WU0SXtAxToOsEjeUn1s3hA==} + /@vitest/expect@1.5.2: + resolution: {integrity: sha512-rf7MTD1WCoDlN3FfYJ9Llfp0PbdtOMZ3FIF0AVkDnKbp3oiMW1c8AmvRZBcqbAhDUAvF52e9zx4WQM1r3oraVA==} dependencies: - '@vitest/spy': 1.5.0 - '@vitest/utils': 1.5.0 + '@vitest/spy': 1.5.2 + '@vitest/utils': 1.5.2 chai: 4.4.1 dev: true - /@vitest/runner@1.5.0: - resolution: {integrity: sha512-7HWwdxXP5yDoe7DTpbif9l6ZmDwCzcSIK38kTSIt6CFEpMjX4EpCgT6wUmS0xTXqMI6E/ONmfgRKmaujpabjZQ==} + /@vitest/runner@1.5.2: + resolution: {integrity: sha512-7IJ7sJhMZrqx7HIEpv3WrMYcq8ZNz9L6alo81Y6f8hV5mIE6yVZsFoivLZmr0D777klm1ReqonE9LyChdcmw6g==} dependencies: - '@vitest/utils': 1.5.0 + '@vitest/utils': 1.5.2 p-limit: 5.0.0 pathe: 1.1.2 dev: true - /@vitest/snapshot@1.5.0: - resolution: {integrity: sha512-qpv3fSEuNrhAO3FpH6YYRdaECnnRjg9VxbhdtPwPRnzSfHVXnNzzrpX4cJxqiwgRMo7uRMWDFBlsBq4Cr+rO3A==} + /@vitest/snapshot@1.5.2: + resolution: {integrity: sha512-CTEp/lTYos8fuCc9+Z55Ga5NVPKUgExritjF5VY7heRFUfheoAqBneUlvXSUJHUZPjnPmyZA96yLRJDP1QATFQ==} dependencies: - magic-string: 0.30.9 + magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 dev: true - /@vitest/spy@1.5.0: - resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==} + /@vitest/spy@1.5.2: + resolution: {integrity: sha512-xCcPvI8JpCtgikT9nLpHPL1/81AYqZy1GCy4+MCHBE7xi8jgsYkULpW5hrx5PGLgOQjUpb6fd15lqcriJ40tfQ==} dependencies: tinyspy: 2.2.1 dev: true - /@vitest/utils@1.5.0: - resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==} + /@vitest/utils@1.5.2: + resolution: {integrity: sha512-sWOmyofuXLJ85VvXNsroZur7mOJGiQeM0JN3/0D1uU8U9bGFM69X1iqHaRXl6R8BwaLY6yPCogP257zxTzkUdA==} dependencies: diff-sequences: 29.6.3 estree-walker: 3.0.3 @@ -1492,8 +1487,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001610 - electron-to-chromium: 1.4.738 + caniuse-lite: 1.0.30001614 + electron-to-chromium: 1.4.750 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) dev: true @@ -1507,8 +1502,8 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - /caniuse-lite@1.0.30001610: - resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} + /caniuse-lite@1.0.30001614: + resolution: {integrity: sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==} dev: true /chai@4.4.1: @@ -1613,6 +1608,10 @@ packages: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true + /confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + dev: true + /configstore@6.0.0: resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} engines: {node: '>=12'} @@ -1654,7 +1653,7 @@ packages: dependencies: '@cspell/cspell-types': 8.7.0 comment-json: 4.2.3 - yaml: 2.4.1 + yaml: 2.4.2 dev: false /cspell-dictionary@8.7.0: @@ -1814,8 +1813,8 @@ packages: is-obj: 2.0.0 dev: false - /electron-to-chromium@1.4.738: - resolution: {integrity: sha512-lwKft2CLFztD+vEIpesrOtCrko/TFnEJlHFdRhazU7Y/jx5qc4cqsocfVrBg4So4gGe9lvxnbLIoev47WMpg+A==} + /electron-to-chromium@1.4.750: + resolution: {integrity: sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==} dev: true /env-cmd@10.1.0: @@ -1926,7 +1925,7 @@ packages: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -2223,8 +2222,8 @@ packages: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-meta-resolve@4.0.0: - resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + /import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} dev: false /imurmurhash@0.1.4: @@ -2379,10 +2378,6 @@ packages: hasBin: true dev: true - /jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} - dev: true - /keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: @@ -2401,7 +2396,7 @@ packages: engines: {node: '>=14'} dependencies: mlly: 1.6.1 - pkg-types: 1.0.3 + pkg-types: 1.1.0 dev: true /locate-path@6.0.0: @@ -2433,9 +2428,8 @@ packages: dependencies: yallist: 4.0.0 - /magic-string@0.30.9: - resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==} - engines: {node: '>=12'} + /magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true @@ -2497,7 +2491,7 @@ packages: dependencies: acorn: 8.11.3 pathe: 1.1.2 - pkg-types: 1.0.3 + pkg-types: 1.1.0 ufo: 1.5.3 dev: true @@ -2538,16 +2532,16 @@ packages: mimic-fn: 4.0.0 dev: true - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 dev: true /p-limit@3.1.0: @@ -2629,10 +2623,10 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - /pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} + /pkg-types@1.1.0: + resolution: {integrity: sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA==} dependencies: - jsonc-parser: 3.2.1 + confbox: 0.1.7 mlly: 1.6.1 pathe: 1.1.2 dev: true @@ -2663,7 +2657,7 @@ packages: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.2.0 + react-is: 18.3.1 dev: true /punycode@2.3.1: @@ -2674,8 +2668,8 @@ packages: /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + /react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} dev: true /rechoir@0.6.2: @@ -2719,29 +2713,29 @@ packages: glob: 7.2.3 dev: true - /rollup@4.14.3: - resolution: {integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==} + /rollup@4.17.1: + resolution: {integrity: sha512-0gG94inrUtg25sB2V/pApwiv1lUb0bQ25FPNuzO89Baa+B+c0ccaaBKM5zkZV/12pUUdH+lWCSm9wmHqyocuVQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.14.3 - '@rollup/rollup-android-arm64': 4.14.3 - '@rollup/rollup-darwin-arm64': 4.14.3 - '@rollup/rollup-darwin-x64': 4.14.3 - '@rollup/rollup-linux-arm-gnueabihf': 4.14.3 - '@rollup/rollup-linux-arm-musleabihf': 4.14.3 - '@rollup/rollup-linux-arm64-gnu': 4.14.3 - '@rollup/rollup-linux-arm64-musl': 4.14.3 - '@rollup/rollup-linux-powerpc64le-gnu': 4.14.3 - '@rollup/rollup-linux-riscv64-gnu': 4.14.3 - '@rollup/rollup-linux-s390x-gnu': 4.14.3 - '@rollup/rollup-linux-x64-gnu': 4.14.3 - '@rollup/rollup-linux-x64-musl': 4.14.3 - '@rollup/rollup-win32-arm64-msvc': 4.14.3 - '@rollup/rollup-win32-ia32-msvc': 4.14.3 - '@rollup/rollup-win32-x64-msvc': 4.14.3 + '@rollup/rollup-android-arm-eabi': 4.17.1 + '@rollup/rollup-android-arm64': 4.17.1 + '@rollup/rollup-darwin-arm64': 4.17.1 + '@rollup/rollup-darwin-x64': 4.17.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.1 + '@rollup/rollup-linux-arm-musleabihf': 4.17.1 + '@rollup/rollup-linux-arm64-gnu': 4.17.1 + '@rollup/rollup-linux-arm64-musl': 4.17.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.1 + '@rollup/rollup-linux-riscv64-gnu': 4.17.1 + '@rollup/rollup-linux-s390x-gnu': 4.17.1 + '@rollup/rollup-linux-x64-gnu': 4.17.1 + '@rollup/rollup-linux-x64-musl': 4.17.1 + '@rollup/rollup-win32-arm64-msvc': 4.17.1 + '@rollup/rollup-win32-ia32-msvc': 4.17.1 + '@rollup/rollup-win32-x64-msvc': 4.17.1 fsevents: 2.3.3 dev: true @@ -2886,8 +2880,8 @@ packages: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true - /tinybench@2.7.0: - resolution: {integrity: sha512-Qgayeb106x2o4hNzNjsZEfFziw8IbKqtbXBjVh7VIZfBxfD5M4gWtpyx5+YTae2gJ6Y6Dz/KLepiv16RFeQWNA==} + /tinybench@2.8.0: + resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==} dev: true /tinypool@0.8.4: @@ -3007,8 +3001,8 @@ packages: hasBin: true dev: false - /vite-node@1.5.0: - resolution: {integrity: sha512-tV8h6gMj6vPzVCa7l+VGq9lwoJjW8Y79vst8QZZGiuRAfijU+EEWuc0kFpmndQrWhMMhet1jdSF+40KSZUqIIw==} + /vite-node@1.5.2: + resolution: {integrity: sha512-Y8p91kz9zU+bWtF7HGt6DVw2JbhyuB2RlZix3FPYAYmUyZ3n7iTp8eSyLyY6sxtPegvxQtmlTMhfPhUfCUF93A==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: @@ -3016,7 +3010,7 @@ packages: debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.9 + vite: 5.2.10 transitivePeerDependencies: - '@types/node' - less @@ -3028,8 +3022,8 @@ packages: - terser dev: true - /vite@5.2.9: - resolution: {integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==} + /vite@5.2.10: + resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -3058,20 +3052,20 @@ packages: dependencies: esbuild: 0.20.2 postcss: 8.4.38 - rollup: 4.14.3 + rollup: 4.17.1 optionalDependencies: fsevents: 2.3.3 dev: true - /vitest@1.5.0: - resolution: {integrity: sha512-d8UKgR0m2kjdxDWX6911uwxout6GHS0XaGH1cksSIVVG8kRlE7G7aBw7myKQCvDI5dT4j7ZMa+l706BIORMDLw==} + /vitest@1.5.2: + resolution: {integrity: sha512-l9gwIkq16ug3xY7BxHwcBQovLZG75zZL0PlsiYQbf76Rz6QGs54416UWMtC0jXeihvHvcHrf2ROEjkQRVpoZYw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 1.5.0 - '@vitest/ui': 1.5.0 + '@vitest/browser': 1.5.2 + '@vitest/ui': 1.5.2 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3088,25 +3082,25 @@ packages: jsdom: optional: true dependencies: - '@vitest/expect': 1.5.0 - '@vitest/runner': 1.5.0 - '@vitest/snapshot': 1.5.0 - '@vitest/spy': 1.5.0 - '@vitest/utils': 1.5.0 + '@vitest/expect': 1.5.2 + '@vitest/runner': 1.5.2 + '@vitest/snapshot': 1.5.2 + '@vitest/spy': 1.5.2 + '@vitest/utils': 1.5.2 acorn-walk: 8.3.2 chai: 4.4.1 debug: 4.3.4 execa: 8.0.1 local-pkg: 0.5.0 - magic-string: 0.30.9 + magic-string: 0.30.10 pathe: 1.1.2 picocolors: 1.0.0 std-env: 3.7.0 strip-literal: 2.1.0 - tinybench: 2.7.0 + tinybench: 2.8.0 tinypool: 0.8.4 - vite: 5.2.9 - vite-node: 1.5.0 + vite: 5.2.10 + vite-node: 1.5.2 why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -3143,6 +3137,11 @@ packages: stackback: 0.0.2 dev: true + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -3167,8 +3166,8 @@ packages: /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - /yaml@2.4.1: - resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} + /yaml@2.4.2: + resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} engines: {node: '>= 14'} hasBin: true dev: false