12
0
Fork 0
mirror of https://github.com/astral-sh/setup-uv.git synced 2026-07-03 02:49:30 +00:00

chore(deps): roll up dependabot updates

This commit is contained in:
Kevin Stillhammer 2026-06-03 09:43:47 +02:00
parent c4fcbafce4
commit e808723e51
No known key found for this signature in database
6 changed files with 1595 additions and 1321 deletions

11
dist/save-cache/index.cjs generated vendored
View file

@ -62342,9 +62342,14 @@ function skipComment(str, ptr) {
}
function skipVoid(str, ptr, banNewLines, banComments) {
let c;
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
ptr++;
return banComments || c !== "#" ? ptr : skipVoid(str, skipComment(str, ptr), banNewLines);
while (1) {
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
ptr++;
if (banComments || c !== "#")
break;
ptr = skipComment(str, ptr);
}
return ptr;
}
function skipUntil(str, ptr, sep7, end, banNewLines = false) {
if (!end) {