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

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-02-27 11:02:11 -08:00 committed by GitHub
parent 57b8ff5b6c
commit 8bfc66d6f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 293 additions and 234 deletions

View File

@ -49,14 +49,14 @@
"@nuxt/webpack-builder": "workspace:*",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/crawler": "^1.2.2",
"@types/node": "^18.14.0",
"@types/node": "^18.14.2",
"@types/rimraf": "^3",
"@types/semver": "^7.3.13",
"@unocss/reset": "^0.50.0",
"case-police": "^0.5.11",
"@unocss/reset": "^0.50.1",
"case-police": "^0.5.13",
"changelogen": "^0.4.1",
"crawler": "^1.4.0",
"eslint": "^8.34.0",
"eslint": "^8.35.0",
"eslint-plugin-jsdoc": "^40.0.0",
"execa": "^7.0.0",
"expect-type": "^0.15.0",
@ -74,10 +74,10 @@
"ufo": "^1.1.0",
"unbuild": "^1.1.2",
"vite": "^4.1.4",
"vitest": "^0.28.5",
"vue-tsc": "^1.1.7"
"vitest": "^0.29.1",
"vue-tsc": "^1.2.0"
},
"packageManager": "pnpm@7.27.1",
"packageManager": "pnpm@7.28.0",
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}

View File

@ -47,10 +47,10 @@
"@nuxt/telemetry": "^2.1.10",
"@nuxt/ui-templates": "^1.1.1",
"@nuxt/vite-builder": "3.2.2",
"@unhead/ssr": "^1.0.22",
"@unhead/ssr": "^1.1.11",
"@vue/reactivity": "^3.2.47",
"@vue/shared": "^3.2.47",
"@vueuse/head": "^1.0.26",
"@vueuse/head": "^1.1.9",
"chokidar": "^3.5.3",
"cookie-es": "^0.5.0",
"defu": "^6.1.2",
@ -77,7 +77,7 @@
"ufo": "^1.1.0",
"unctx": "^2.1.2",
"unenv": "^1.2.1",
"unhead": "^1.0.22",
"unhead": "^1.1.11",
"unimport": "^2.2.4",
"unplugin": "^1.1.0",
"untyped": "^1.2.2",

View File

@ -4,7 +4,6 @@ import { hash } from 'ohash'
import { appendHeader } from 'h3'
// eslint-disable-next-line import/no-restricted-paths
import type { NuxtIslandResponse } from '../../core/runtime/nitro/renderer'
import type { MetaObject } from 'nuxt/schema'
import { useNuxtApp } from '#app/nuxt'
import { useRequestEvent } from '#app/composables/ssr'
import { useHead } from '#app/composables/head'
@ -34,7 +33,7 @@ export default defineComponent({
const event = useRequestEvent()
const html = ref<string>('')
const cHead = ref<MetaObject>({ link: [], style: [] })
const cHead = ref<Record<'link' | 'style', Array<Record<string, string>>>>({ link: [], style: [] })
useHead(cHead)
function _fetchComponent () {

View File

@ -16,7 +16,7 @@
"devDependencies": {
"@types/lodash.template": "^4",
"@types/semver": "^7.3.13",
"@unhead/schema": "^1.0.22",
"@unhead/schema": "^1.1.11",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"nitropack": "^2.2.3",

View File

@ -24,9 +24,9 @@
"pathe": "^1.1.0"
},
"devDependencies": {
"playwright": "^1.31.0",
"playwright": "^1.31.1",
"unbuild": "latest",
"vitest": "^0.28.5"
"vitest": "^0.29.1"
},
"peerDependencies": {
"vue": "^3.2.47"

View File

@ -44,13 +44,13 @@
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"rollup": "^3.17.2",
"rollup": "^3.17.3",
"rollup-plugin-visualizer": "^5.9.0",
"strip-literal": "^1.0.1",
"ufo": "^1.1.0",
"unplugin": "^1.1.0",
"vite": "~4.1.4",
"vite-node": "^0.28.5",
"vite-node": "^0.29.1",
"vite-plugin-checker": "^0.5.6",
"vue-bundle-renderer": "^1.0.2"
},

File diff suppressed because it is too large Load Diff

View File

@ -40,10 +40,10 @@ describe.skipIf(isWindows)('minimal nuxt application', () => {
it('default server bundle size', async () => {
stats.server = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
expect(stats.server.totalBytes).toBeLessThan(92700)
expect(stats.server.totalBytes).toBeLessThan(92800)
const modules = await analyzeSizes('node_modules/**/*', serverDir)
expect(modules.totalBytes).toBeLessThan(2710200)
expect(modules.totalBytes).toBeLessThan(2721900)
const packages = modules.files
.filter(m => m.endsWith('package.json'))