mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
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:
parent
57b8ff5b6c
commit
8bfc66d6f7
14
package.json
14
package.json
@ -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"
|
||||
}
|
||||
|
@ -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",
|
||||
|
@ -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 () {
|
||||
|
@ -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",
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
},
|
||||
|
490
pnpm-lock.yaml
490
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -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'))
|
||||
|
Loading…
Reference in New Issue
Block a user