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

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-03 11:34:56 +01:00 committed by GitHub
parent be49918139
commit 59b58b8485
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 234 additions and 234 deletions

View File

@ -37,7 +37,7 @@
"@nuxt/schema": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"rollup": "^4.13.2",
"rollup": "^4.14.0",
"nuxt": "workspace:*",
"vite": "5.2.7",
"vue": "3.4.21",
@ -50,7 +50,7 @@
"@nuxt/webpack-builder": "workspace:*",
"@testing-library/vue": "8.0.3",
"@types/fs-extra": "11.0.4",
"@types/node": "20.12.2",
"@types/node": "20.12.3",
"@types/semver": "7.5.8",
"@vitest/coverage-v8": "1.4.0",
"@vue/test-utils": "2.4.5",
@ -71,7 +71,7 @@
"happy-dom": "14.3.10",
"jiti": "1.21.0",
"markdownlint-cli": "0.39.0",
"nitropack": "2.9.5",
"nitropack": "2.9.6",
"nuxi": "3.11.1",
"nuxt": "workspace:*",
"nuxt-content-twoslash": "0.0.10",

View File

@ -50,7 +50,7 @@
"@types/lodash-es": "4.17.12",
"@types/semver": "7.5.8",
"lodash-es": "4.17.21",
"nitropack": "2.9.5",
"nitropack": "2.9.6",
"unbuild": "latest",
"vite": "5.2.7",
"vitest": "1.4.0",

View File

@ -64,7 +64,7 @@
"@nuxt/kit": "workspace:*",
"@nuxt/schema": "workspace:*",
"@nuxt/telemetry": "^2.5.3",
"@nuxt/ui-templates": "^1.3.1",
"@nuxt/ui-templates": "^1.3.2",
"@nuxt/vite-builder": "workspace:*",
"@unhead/dom": "^1.9.4",
"@unhead/ssr": "^1.9.4",
@ -89,7 +89,7 @@
"knitwork": "^1.1.0",
"magic-string": "^0.30.8",
"mlly": "^1.6.1",
"nitropack": "^2.9.5",
"nitropack": "^2.9.6",
"nuxi": "^3.11.1",
"nypm": "^0.3.8",
"ofetch": "^1.3.4",

View File

@ -48,7 +48,7 @@
"esbuild-loader": "4.1.0",
"h3": "1.11.1",
"ignore": "5.3.1",
"nitropack": "2.9.5",
"nitropack": "2.9.6",
"ofetch": "1.3.4",
"unbuild": "latest",
"unctx": "2.3.1",
@ -59,10 +59,10 @@
"vue-loader": "17.4.2",
"vue-router": "4.3.0",
"webpack": "5.91.0",
"webpack-dev-middleware": "7.2.0"
"webpack-dev-middleware": "7.2.1"
},
"dependencies": {
"@nuxt/ui-templates": "^1.3.1",
"@nuxt/ui-templates": "^1.3.2",
"consola": "^3.2.3",
"defu": "^6.1.4",
"hookable": "^5.5.3",

View File

@ -64,7 +64,7 @@
"vue-loader": "^17.4.2",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-dev-middleware": "^7.2.0",
"webpack-dev-middleware": "^7.2.1",
"webpack-hot-middleware": "^2.26.1",
"webpack-virtual-modules": "^0.6.1",
"webpackbar": "^6.0.1"

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('"208k"')
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot('"209k"')
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"1335k"')
@ -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('"526k"')
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot('"527k"')
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"75.6k"')