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

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-06-21 09:33:00 +01:00 committed by GitHub
parent 69f09fbae1
commit 3a59c02cfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 417 additions and 612 deletions

View File

@ -54,9 +54,9 @@
"@testing-library/vue": "8.1.0",
"@types/eslint__js": "8.42.3",
"@types/fs-extra": "11.0.4",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@types/semver": "7.5.8",
"@unhead/schema": "1.9.13",
"@unhead/schema": "1.9.14",
"@vitejs/plugin-vue": "5.0.4",
"@vitest/coverage-v8": "1.6.0",
"@vue/test-utils": "2.4.6",
@ -71,8 +71,8 @@
"execa": "9.2.0",
"fs-extra": "11.2.0",
"globby": "14.0.1",
"h3": "1.11.1",
"happy-dom": "14.12.0",
"h3": "1.12.0",
"happy-dom": "14.12.3",
"jiti": "1.21.6",
"markdownlint-cli": "0.41.0",
"nitropack": "2.9.6",
@ -85,7 +85,7 @@
"rimraf": "5.0.7",
"semver": "7.6.2",
"std-env": "3.7.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"ufo": "1.5.3",
"vitest": "1.6.0",
"vitest-environment-nuxt": "1.0.0",

View File

@ -65,9 +65,9 @@
"@nuxt/schema": "workspace:*",
"@nuxt/telemetry": "^2.5.4",
"@nuxt/vite-builder": "workspace:*",
"@unhead/dom": "^1.9.13",
"@unhead/ssr": "^1.9.13",
"@unhead/vue": "^1.9.13",
"@unhead/dom": "^1.9.14",
"@unhead/ssr": "^1.9.14",
"@unhead/vue": "^1.9.14",
"@vue/shared": "^3.4.29",
"acorn": "8.12.0",
"c12": "^1.11.1",
@ -81,7 +81,7 @@
"estree-walker": "^3.0.3",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"h3": "^1.11.1",
"h3": "^1.12.0",
"hookable": "^5.5.3",
"ignore": "^5.3.1",
"jiti": "^1.21.6",

View File

@ -39,7 +39,7 @@
"@types/file-loader": "5.0.4",
"@types/pug": "2.0.10",
"@types/sass-loader": "8.0.8",
"@unhead/schema": "1.9.13",
"@unhead/schema": "1.9.14",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "4.0.0",
"@vue/compiler-core": "3.4.29",
@ -47,7 +47,7 @@
"@vue/language-core": "2.0.21",
"c12": "1.11.1",
"esbuild-loader": "4.2.0",
"h3": "1.11.1",
"h3": "1.12.0",
"ignore": "5.3.1",
"nitropack": "2.9.6",
"ofetch": "1.3.4",

View File

@ -48,7 +48,7 @@
"externality": "^1.0.2",
"fs-extra": "^11.2.0",
"get-port-please": "^3.1.2",
"h3": "^1.11.1",
"h3": "^1.12.0",
"knitwork": "^1.1.0",
"magic-string": "^0.30.10",
"mlly": "^1.7.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.11.1",
"h3": "^1.12.0",
"hash-sum": "^2.0.0",
"lodash-es": "4.17.21",
"magic-string": "^0.30.10",

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(`"209k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"210k"`)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1340k"`)
@ -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(`"530k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"531k"`)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"76.2k"`)