chore(deps): update all non-major dependencies (main) (#30828)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
renovate[bot] 2025-02-01 13:44:33 +00:00 committed by GitHub
parent ad24d7acb7
commit df3b9aafa7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 385 additions and 606 deletions

View File

@ -45,7 +45,7 @@
"@nuxt/schema": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"@types/node": "22.12.0",
"@types/node": "22.13.0",
"@unhead/dom": "1.11.18",
"@unhead/schema": "1.11.18",
"@unhead/shared": "1.11.18",
@ -62,7 +62,7 @@
"nuxt": "workspace:*",
"ohash": "1.1.4",
"postcss": "8.5.1",
"rollup": "4.32.1",
"rollup": "4.34.0",
"send": ">=1.1.0",
"typescript": "5.7.3",
"ufo": "1.5.4",
@ -86,7 +86,7 @@
"@testing-library/vue": "8.1.0",
"@types/babel__core": "7.20.5",
"@types/babel__helper-plugin-utils": "7.10.3",
"@types/node": "22.12.0",
"@types/node": "22.13.0",
"@types/semver": "7.5.8",
"@unhead/schema": "1.11.18",
"@unhead/vue": "1.11.18",
@ -106,7 +106,7 @@
"eslint-typegen": "1.0.0",
"estree-walker": "3.0.3",
"h3": "npm:h3-nightly@1.14.0-20250122-114730-3f9e703",
"happy-dom": "16.7.3",
"happy-dom": "16.8.1",
"installed-check": "9.3.0",
"jiti": "2.4.2",
"knip": "5.43.6",
@ -119,8 +119,8 @@
"ofetch": "1.4.1",
"pathe": "2.0.2",
"pkg-pr-new": "0.0.39",
"playwright-core": "1.50.0",
"rollup": "4.32.1",
"playwright-core": "1.50.1",
"rollup": "4.34.0",
"semver": "7.7.0",
"sherif": "1.2.0",
"std-env": "3.8.0",

View File

@ -75,7 +75,7 @@
"@types/pify": "5.0.4",
"@types/webpack-bundle-analyzer": "4.7.0",
"@types/webpack-hot-middleware": "2.25.9",
"rollup": "4.32.1",
"rollup": "4.34.0",
"unbuild": "3.3.1",
"vue": "3.5.13"
},

View File

@ -26,7 +26,7 @@
},
"devDependencies": {
"@nuxt/schema": "workspace:*",
"rollup": "4.32.1",
"rollup": "4.34.0",
"unbuild": "3.3.1",
"vue": "3.5.13"
},
@ -51,7 +51,7 @@
"pathe": "^2.0.2",
"pkg-types": "^1.3.1",
"postcss": "^8.5.1",
"rollup-plugin-visualizer": "^5.13.1",
"rollup-plugin-visualizer": "^5.14.0",
"std-env": "^3.8.0",
"ufo": "^1.5.4",
"unenv": "^1.10.0",

View File

@ -77,7 +77,7 @@
"@types/pify": "5.0.4",
"@types/webpack-bundle-analyzer": "4.7.0",
"@types/webpack-hot-middleware": "2.25.9",
"rollup": "4.32.1",
"rollup": "4.34.0",
"unbuild": "3.3.1",
"vue": "3.5.13"
},

File diff suppressed because it is too large Load Diff

View File

@ -23,8 +23,8 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const [clientStats, clientStatsInlined] = await Promise.all((['.output', '.output-inline'])
.map(outputDir => analyzeSizes(['**/*.js'], join(rootDir, outputDir, 'public'))))
expect.soft(roundToKilobytes(clientStats!.totalBytes)).toMatchInlineSnapshot(`"116k"`)
expect.soft(roundToKilobytes(clientStatsInlined!.totalBytes)).toMatchInlineSnapshot(`"116k"`)
expect.soft(roundToKilobytes(clientStats!.totalBytes)).toMatchInlineSnapshot(`"115k"`)
expect.soft(roundToKilobytes(clientStatsInlined!.totalBytes)).toMatchInlineSnapshot(`"115k"`)
const files = new Set([...clientStats!.files, ...clientStatsInlined!.files].map(f => f.replace(/\..*\.js/, '.js')))