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

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] 2023-12-05 15:52:34 +00:00 committed by GitHub
parent 6a1c054012
commit 4981e3259d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 236 additions and 418 deletions

View File

@ -35,8 +35,8 @@
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"nuxt": "workspace:*",
"vite": "5.0.4",
"vue": "3.3.9",
"vite": "5.0.5",
"vue": "3.3.10",
"magic-string": "^0.30.5"
},
"devDependencies": {
@ -44,7 +44,7 @@
"@nuxt/test-utils": "3.8.1",
"@nuxt/webpack-builder": "workspace:*",
"@types/fs-extra": "11.0.4",
"@types/node": "20.10.2",
"@types/node": "20.10.3",
"@types/semver": "7.5.6",
"@vitest/coverage-v8": "0.33.0",
"case-police": "0.6.1",
@ -75,10 +75,10 @@
"std-env": "3.6.0",
"typescript": "5.3.2",
"ufo": "1.3.2",
"vite": "5.0.4",
"vite": "5.0.5",
"vitest": "0.33.0",
"vitest-environment-nuxt": "0.11.5",
"vue": "3.3.9",
"vue": "3.3.10",
"vue-eslint-parser": "9.3.2",
"vue-router": "4.2.5",
"vue-tsc": "1.8.24"

View File

@ -52,7 +52,7 @@
"lodash-es": "4.17.21",
"nitropack": "2.8.1",
"unbuild": "latest",
"vite": "5.0.4",
"vite": "5.0.5",
"vitest": "0.33.0",
"webpack": "5.89.0"
},

View File

@ -68,7 +68,7 @@
"@unhead/dom": "^1.8.8",
"@unhead/ssr": "^1.8.8",
"@unhead/vue": "^1.8.8",
"@vue/shared": "^3.3.9",
"@vue/shared": "^3.3.10",
"acorn": "8.11.2",
"c12": "^1.5.1",
"chokidar": "^3.5.3",
@ -109,7 +109,7 @@
"unplugin": "^1.5.1",
"unplugin-vue-router": "^0.7.0",
"untyped": "^1.4.0",
"vue": "^3.3.9",
"vue": "^3.3.10",
"vue-bundle-renderer": "^2.0.0",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.2.5"
@ -120,7 +120,7 @@
"@types/fs-extra": "11.0.4",
"@vitejs/plugin-vue": "4.5.1",
"unbuild": "latest",
"vite": "5.0.4",
"vite": "5.0.5",
"vitest": "0.33.0"
},
"peerDependencies": {

View File

@ -41,7 +41,7 @@
"@unhead/schema": "1.8.8",
"@vitejs/plugin-vue": "4.5.1",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-core": "3.3.9",
"@vue/compiler-core": "3.3.10",
"c12": "1.5.1",
"esbuild-loader": "4.0.2",
"h3": "1.9.0",
@ -50,8 +50,8 @@
"ofetch": "1.3.3",
"unbuild": "latest",
"unctx": "2.3.1",
"vite": "5.0.4",
"vue": "3.3.9",
"vite": "5.0.5",
"vue": "3.3.10",
"vue-bundle-renderer": "2.0.0",
"vue-loader": "17.3.1",
"vue-router": "4.2.5",

View File

@ -29,7 +29,7 @@
"@types/estree": "1.0.5",
"@types/fs-extra": "11.0.4",
"unbuild": "latest",
"vue": "3.3.9"
"vue": "3.3.10"
},
"dependencies": {
"@nuxt/kit": "workspace:*",
@ -56,12 +56,12 @@
"perfect-debounce": "^1.0.0",
"pkg-types": "^1.0.3",
"postcss": "^8.4.32",
"rollup-plugin-visualizer": "^5.9.3",
"rollup-plugin-visualizer": "^5.10.0",
"std-env": "^3.6.0",
"strip-literal": "^1.3.0",
"ufo": "^1.3.2",
"unplugin": "^1.5.1",
"vite": "^5.0.4",
"vite": "^5.0.5",
"vite-node": "^0.33.0",
"vite-plugin-checker": "^0.6.2",
"vue-bundle-renderer": "^2.0.0"

View File

@ -77,7 +77,7 @@
"@types/webpack-hot-middleware": "2.25.9",
"@types/webpack-virtual-modules": "0.1.3",
"unbuild": "latest",
"vue": "3.3.9"
"vue": "3.3.10"
},
"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('"199k"')
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"1843k"')
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"1845k"')
const packages = modules.files
.filter(m => m.endsWith('package.json'))