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

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-11-28 10:12:02 +00:00 committed by GitHub
parent dc0e8347bf
commit 2820dfee52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 332 additions and 333 deletions

View File

@ -36,7 +36,7 @@
"@nuxt/webpack-builder": "workspace:*",
"nuxt": "workspace:*",
"vite": "5.0.2",
"vue": "3.3.8",
"vue": "3.3.9",
"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.9.4",
"@types/node": "20.10.0",
"@types/semver": "7.5.6",
"@vitest/coverage-v8": "0.33.0",
"case-police": "0.6.1",
@ -78,12 +78,12 @@
"vite": "5.0.2",
"vitest": "0.33.0",
"vitest-environment-nuxt": "0.11.5",
"vue": "3.3.8",
"vue": "3.3.9",
"vue-eslint-parser": "9.3.2",
"vue-router": "4.2.5",
"vue-tsc": "1.8.22"
},
"packageManager": "pnpm@8.10.5",
"packageManager": "pnpm@8.11.0",
"engines": {
"node": "^14.18.0 || >=16.10.0"
},

View File

@ -59,7 +59,7 @@
},
"dependencies": {
"@nuxt/devalue": "^2.0.2",
"@nuxt/devtools": "^1.0.3",
"@nuxt/devtools": "^1.0.4",
"@nuxt/kit": "workspace:*",
"@nuxt/schema": "workspace:*",
"@nuxt/telemetry": "^2.5.3",
@ -68,7 +68,7 @@
"@unhead/dom": "^1.8.8",
"@unhead/ssr": "^1.8.8",
"@unhead/vue": "^1.8.8",
"@vue/shared": "^3.3.8",
"@vue/shared": "^3.3.9",
"acorn": "8.11.2",
"c12": "^1.5.1",
"chokidar": "^3.5.3",
@ -76,7 +76,7 @@
"defu": "^6.1.3",
"destr": "^2.0.2",
"devalue": "^4.3.2",
"esbuild": "^0.19.7",
"esbuild": "^0.19.8",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"fs-extra": "^11.1.1",
@ -109,7 +109,7 @@
"unplugin": "^1.5.1",
"unplugin-vue-router": "^0.7.0",
"untyped": "^1.4.0",
"vue": "^3.3.8",
"vue": "^3.3.9",
"vue-bundle-renderer": "^2.0.0",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.2.5"

View File

@ -41,7 +41,7 @@
"@unhead/schema": "1.8.8",
"@vitejs/plugin-vue": "4.5.0",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-core": "3.3.8",
"@vue/compiler-core": "3.3.9",
"c12": "1.5.1",
"esbuild-loader": "4.0.2",
"h3": "1.9.0",
@ -51,7 +51,7 @@
"unbuild": "latest",
"unctx": "2.3.1",
"vite": "5.0.2",
"vue": "3.3.8",
"vue": "3.3.9",
"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.8"
"vue": "3.3.9"
},
"dependencies": {
"@nuxt/kit": "workspace:*",
@ -41,7 +41,7 @@
"consola": "^3.2.3",
"cssnano": "^6.0.1",
"defu": "^6.1.3",
"esbuild": "^0.19.7",
"esbuild": "^0.19.8",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"externality": "^1.0.2",
@ -56,7 +56,7 @@
"perfect-debounce": "^1.0.0",
"pkg-types": "^1.0.3",
"postcss": "^8.4.31",
"rollup-plugin-visualizer": "^5.9.2",
"rollup-plugin-visualizer": "^5.9.3",
"std-env": "^3.5.0",
"strip-literal": "^1.3.0",
"ufo": "^1.3.2",

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.8"
"vue": "3.3.9"
},
"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('"1840k"')
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"1843k"')
const packages = modules.files
.filter(m => m.endsWith('package.json'))
@ -71,7 +71,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('"508k"')
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot('"509k"')
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot('"76.9k"')