mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-06-10 14:42:22 +00:00
chore(deps): roll up dependabot updates (#901)
Rolls up the current open Dependabot npm updates: - #848 esbuild from 0.27.4 to 0.27.5 - #847 undici from 7.24.2 to 8.0.0 - #846 ts-jest from 29.4.6 to 29.4.9 - #841 @biomejs/biome from 2.4.7 to 2.4.10, including the matching biome.json schema URL update - #834 smol-toml from 1.6.0 to 1.6.1 Validation: - npm run all
This commit is contained in:
committed by
GitHub
parent
c4fcbafce4
commit
363c64a728
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
|
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
|
||||||
"assist": {
|
"assist": {
|
||||||
"actions": {
|
"actions": {
|
||||||
"source": {
|
"source": {
|
||||||
|
|||||||
+6
-1
@@ -62342,9 +62342,14 @@ function skipComment(str, ptr) {
|
|||||||
}
|
}
|
||||||
function skipVoid(str, ptr, banNewLines, banComments) {
|
function skipVoid(str, ptr, banNewLines, banComments) {
|
||||||
let c;
|
let c;
|
||||||
|
while (1) {
|
||||||
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
|
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
|
||||||
ptr++;
|
ptr++;
|
||||||
return banComments || c !== "#" ? ptr : skipVoid(str, skipComment(str, ptr), banNewLines);
|
if (banComments || c !== "#")
|
||||||
|
break;
|
||||||
|
ptr = skipComment(str, ptr);
|
||||||
|
}
|
||||||
|
return ptr;
|
||||||
}
|
}
|
||||||
function skipUntil(str, ptr, sep7, end, banNewLines = false) {
|
function skipUntil(str, ptr, sep7, end, banNewLines = false) {
|
||||||
if (!end) {
|
if (!end) {
|
||||||
|
|||||||
+559
-422
File diff suppressed because it is too large
Load Diff
+553
-421
File diff suppressed because it is too large
Load Diff
Generated
+325
-325
File diff suppressed because it is too large
Load Diff
+5
-5
@@ -35,19 +35,19 @@
|
|||||||
"@actions/io": "^3.0.2",
|
"@actions/io": "^3.0.2",
|
||||||
"@actions/tool-cache": "^4.0.0",
|
"@actions/tool-cache": "^4.0.0",
|
||||||
"@renovatebot/pep440": "^4.2.2",
|
"@renovatebot/pep440": "^4.2.2",
|
||||||
"smol-toml": "^1.6.0",
|
"smol-toml": "^1.6.1",
|
||||||
"undici": "^7.24.2"
|
"undici": "^8.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^2.4.7",
|
"@biomejs/biome": "^2.4.10",
|
||||||
"@types/js-yaml": "^4.0.9",
|
"@types/js-yaml": "^4.0.9",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.5.0",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"@vercel/ncc": "^0.38.4",
|
"@vercel/ncc": "^0.38.4",
|
||||||
"esbuild": "^0.27.4",
|
"esbuild": "^0.27.5",
|
||||||
"jest": "^30.3.0",
|
"jest": "^30.3.0",
|
||||||
"js-yaml": "^4.1.1",
|
"js-yaml": "^4.1.1",
|
||||||
"ts-jest": "^29.4.6",
|
"ts-jest": "^29.4.9",
|
||||||
"typescript": "^5.9.3"
|
"typescript": "^5.9.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user