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

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] 2024-04-13 00:11:24 +02:00 committed by GitHub
parent 1945793a25
commit 95c399f9a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 383 additions and 522 deletions

View File

@ -37,7 +37,7 @@
"@nuxt/schema": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"rollup": "^4.14.1",
"rollup": "^4.14.2",
"nuxt": "workspace:*",
"vite": "5.2.8",
"vue": "3.4.21",
@ -45,7 +45,7 @@
},
"devDependencies": {
"@eslint/js": "9.0.0",
"@nuxt/eslint-config": "0.3.4",
"@nuxt/eslint-config": "0.3.6",
"@nuxt/kit": "workspace:*",
"@nuxt/test-utils": "3.12.0",
"@nuxt/webpack-builder": "workspace:*",
@ -77,17 +77,17 @@
"nuxt-content-twoslash": "0.0.10",
"ofetch": "1.3.4",
"pathe": "1.1.2",
"playwright-core": "1.43.0",
"playwright-core": "1.43.1",
"rimraf": "5.0.5",
"semver": "7.6.0",
"std-env": "3.7.0",
"typescript": "5.4.4",
"typescript": "5.4.5",
"ufo": "1.5.3",
"vitest": "1.4.0",
"vitest-environment-nuxt": "1.0.0",
"vue": "3.4.21",
"vue-router": "4.3.0",
"vue-tsc": "2.0.11"
"vue-tsc": "2.0.13"
},
"packageManager": "pnpm@8.15.6",
"engines": {

View File

@ -66,9 +66,9 @@
"@nuxt/telemetry": "^2.5.4",
"@nuxt/ui-templates": "^1.3.3",
"@nuxt/vite-builder": "workspace:*",
"@unhead/dom": "^1.9.4",
"@unhead/ssr": "^1.9.4",
"@unhead/vue": "^1.9.4",
"@unhead/dom": "^1.9.5",
"@unhead/ssr": "^1.9.5",
"@unhead/vue": "^1.9.5",
"@vue/shared": "^3.4.21",
"acorn": "8.11.3",
"c12": "^1.10.0",

View File

@ -38,12 +38,12 @@
"@types/file-loader": "5.0.4",
"@types/pug": "2.0.10",
"@types/sass-loader": "8.0.8",
"@unhead/schema": "1.9.4",
"@unhead/schema": "1.9.5",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-core": "3.4.21",
"@vue/compiler-sfc": "3.4.21",
"@vue/language-core": "2.0.11",
"@vue/language-core": "2.0.13",
"c12": "1.10.0",
"esbuild-loader": "4.1.0",
"h3": "1.11.1",

View File

@ -28,7 +28,7 @@
"@nuxt/friendly-errors-webpack-plugin": "^2.6.0",
"@nuxt/kit": "workspace:*",
"autoprefixer": "^10.4.19",
"css-loader": "^7.1.0",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"cssnano": "^6.1.2",
"defu": "^6.1.4",
@ -63,7 +63,7 @@
"vue-bundle-renderer": "^2.0.0",
"vue-loader": "^17.4.2",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-dev-middleware": "^7.2.1",
"webpack-hot-middleware": "^2.26.1",
"webpack-virtual-modules": "^0.6.1",

File diff suppressed because it is too large Load Diff

View File

@ -75,7 +75,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"527k"`)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"75.6k"')
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"75.9k"`)
const packages = modules.files
.filter(m => m.endsWith('package.json'))