chore(deps): update all non-major dependencies to v3.5.2 (main) (#28852)

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-09-05 17:27:03 +02:00 committed by GitHub
parent 181d043eaf
commit 5a5bc5d606
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 213 additions and 230 deletions

View File

@ -52,7 +52,7 @@
"ufo": "1.5.4",
"unbuild": "3.0.0-rc.7",
"vite": "5.4.3",
"vue": "3.5.1"
"vue": "3.5.2"
},
"devDependencies": {
"@eslint/js": "9.9.1",
@ -101,7 +101,7 @@
"ufo": "1.5.4",
"vitest": "2.0.5",
"vitest-environment-nuxt": "1.0.1",
"vue": "3.5.1",
"vue": "3.5.2",
"vue-router": "4.4.3",
"vue-tsc": "2.1.6"
},

View File

@ -68,7 +68,7 @@
"@unhead/dom": "^1.10.4",
"@unhead/ssr": "^1.10.4",
"@unhead/vue": "^1.10.4",
"@vue/shared": "^3.5.1",
"@vue/shared": "^3.5.2",
"acorn": "8.12.1",
"c12": "^2.0.0-beta.2",
"chokidar": "^3.6.0",
@ -117,7 +117,7 @@
"unplugin-vue-router": "^0.10.7",
"unstorage": "^1.11.1",
"untyped": "^1.4.2",
"vue": "^3.5.1",
"vue": "^3.5.2",
"vue-bundle-renderer": "^2.1.0",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.4.3"
@ -128,7 +128,7 @@
"@parcel/watcher": "2.4.1",
"@types/estree": "1.0.5",
"@vitejs/plugin-vue": "5.1.3",
"@vue/compiler-sfc": "3.5.1",
"@vue/compiler-sfc": "3.5.2",
"unbuild": "3.0.0-rc.7",
"vite": "5.4.3",
"vitest": "2.0.5"

View File

@ -42,8 +42,8 @@
"@unhead/schema": "1.10.4",
"@vitejs/plugin-vue": "5.1.3",
"@vitejs/plugin-vue-jsx": "4.0.1",
"@vue/compiler-core": "3.5.1",
"@vue/compiler-sfc": "3.5.1",
"@vue/compiler-core": "3.5.2",
"@vue/compiler-sfc": "3.5.2",
"@vue/language-core": "2.1.6",
"c12": "2.0.0-beta.2",
"esbuild-loader": "4.2.2",
@ -55,7 +55,7 @@
"unctx": "2.3.1",
"unenv": "1.10.0",
"vite": "5.4.3",
"vue": "3.5.1",
"vue": "3.5.2",
"vue-bundle-renderer": "2.1.0",
"vue-loader": "17.4.2",
"vue-router": "4.4.3",

View File

@ -29,7 +29,7 @@
"@types/estree": "1.0.5",
"rollup": "4.21.2",
"unbuild": "3.0.0-rc.7",
"vue": "3.5.1"
"vue": "3.5.2"
},
"dependencies": {
"@nuxt/kit": "workspace:*",

View File

@ -80,7 +80,7 @@
"@types/webpack-hot-middleware": "2.25.9",
"rollup": "4.21.2",
"unbuild": "3.0.0-rc.7",
"vue": "3.5.1"
"vue": "3.5.2"
},
"peerDependencies": {
"vue": "^3.3.4"

File diff suppressed because it is too large Load Diff

View File

@ -35,7 +35,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"206k"`)
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1382k"`)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1383k"`)
const packages = modules.files
.filter(m => m.endsWith('package.json'))
@ -73,7 +73,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const serverDir = join(rootDir, '.output-inline/server')
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"552k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"553k"`)
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"86.9k"`)