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

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-02-26 17:33:54 +00:00 committed by GitHub
parent 12503658ed
commit c05239901a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 216 additions and 349 deletions

View File

@ -40,7 +40,7 @@
"rollup": "^4.12.0",
"nuxt": "workspace:*",
"vite": "5.1.4",
"vue": "3.4.19",
"vue": "3.4.20",
"magic-string": "^0.30.7"
},
"devDependencies": {
@ -67,8 +67,8 @@
"execa": "8.0.1",
"fs-extra": "11.2.0",
"globby": "14.0.1",
"h3": "1.10.2",
"happy-dom": "13.5.0",
"h3": "1.11.1",
"happy-dom": "13.6.2",
"jiti": "1.21.0",
"markdownlint-cli": "0.39.0",
"nitropack": "2.8.1",
@ -85,7 +85,7 @@
"ufo": "1.4.0",
"vitest": "1.3.1",
"vitest-environment-nuxt": "1.0.0",
"vue": "3.4.19",
"vue": "3.4.20",
"vue-eslint-parser": "9.4.2",
"vue-router": "4.3.0",
"vue-tsc": "1.8.27"

View File

@ -69,7 +69,7 @@
"@unhead/dom": "^1.8.10",
"@unhead/ssr": "^1.8.10",
"@unhead/vue": "^1.8.10",
"@vue/shared": "^3.4.19",
"@vue/shared": "^3.4.20",
"acorn": "8.11.3",
"c12": "^1.9.0",
"chokidar": "^3.6.0",
@ -82,7 +82,7 @@
"estree-walker": "^3.0.3",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"h3": "^1.10.2",
"h3": "^1.11.1",
"hookable": "^5.5.3",
"jiti": "^1.21.0",
"klona": "^2.0.6",
@ -110,7 +110,7 @@
"unplugin": "^1.7.1",
"unplugin-vue-router": "^0.7.0",
"untyped": "^1.4.2",
"vue": "^3.4.19",
"vue": "^3.4.20",
"vue-bundle-renderer": "^2.0.0",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.3.0"

View File

@ -41,10 +41,10 @@
"@unhead/schema": "1.8.10",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-core": "3.4.19",
"@vue/compiler-core": "3.4.20",
"c12": "1.9.0",
"esbuild-loader": "4.0.3",
"h3": "1.10.2",
"h3": "1.11.1",
"ignore": "5.3.1",
"nitropack": "2.8.1",
"ofetch": "1.3.3",
@ -52,7 +52,7 @@
"unctx": "2.3.1",
"unenv": "1.9.0",
"vite": "5.1.4",
"vue": "3.4.19",
"vue": "3.4.20",
"vue-bundle-renderer": "2.0.0",
"vue-loader": "17.4.2",
"vue-router": "4.3.0",

View File

@ -29,7 +29,7 @@
"@types/estree": "1.0.5",
"@types/fs-extra": "11.0.4",
"unbuild": "latest",
"vue": "3.4.19"
"vue": "3.4.20"
},
"dependencies": {
"@nuxt/kit": "workspace:*",
@ -47,7 +47,7 @@
"externality": "^1.0.2",
"fs-extra": "^11.2.0",
"get-port-please": "^3.1.2",
"h3": "^1.10.2",
"h3": "^1.11.1",
"knitwork": "^1.0.0",
"magic-string": "^0.30.7",
"mlly": "^1.6.1",

View File

@ -38,7 +38,7 @@
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"fs-extra": "^11.2.0",
"h3": "^1.10.2",
"h3": "^1.11.1",
"hash-sum": "^2.0.0",
"lodash-es": "4.17.21",
"magic-string": "^0.30.7",
@ -78,7 +78,7 @@
"@types/webpack-hot-middleware": "2.25.9",
"@types/webpack-virtual-modules": "0.1.3",
"unbuild": "latest",
"vue": "3.4.19"
"vue": "3.4.20"
},
"peerDependencies": {
"vue": "^3.3.4"

File diff suppressed because it is too large Load Diff

View File

@ -32,7 +32,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const serverDir = join(rootDir, '.output/server')
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"202k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"204k"`)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1334k"`)
@ -72,7 +72,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(`"520k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"522k"`)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"77.2k"`)