Skip to content

Commit f9d9cc9

Browse files
committed
chore: bump deps
1 parent 8853333 commit f9d9cc9

File tree

12 files changed

+2235
-2383
lines changed

12 files changed

+2235
-2383
lines changed

.nuxtrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
imports.autoImport=false
1+
imports.autoImport=true

client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"@iconify-json/carbon": "^1.2.8",
1515
"@nuxt/devtools-kit": "^2.4.1",
1616
"@nuxt/devtools-ui-kit": "^2.4.1",
17-
"@nuxt/kit": "^3.17.3",
18-
"nuxt": "^3.17.3",
19-
"vue": "^3.5.14",
17+
"@nuxt/kit": "^3.17.4",
18+
"nuxt": "^3.17.4",
19+
"vue": "^3.5.16",
2020
"vue-router": "latest"
2121
}
2222
}

docs/app/app.vue

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ provide('topGuides', computed(() => {
4040
</script>
4141

4242
<template>
43-
<UApp>
44-
<div class="bg-white dark:bg-gray-950">
45-
<NuxtLoadingIndicator color="#FFF" />
43+
<UApp>
44+
<div class="bg-white dark:bg-gray-950">
45+
<NuxtLoadingIndicator color="#FFF" />
4646

47-
<Header />
47+
<Header />
4848

49-
<NuxtLayout>
50-
<NuxtPage />
51-
</NuxtLayout>
49+
<NuxtLayout>
50+
<NuxtPage />
51+
</NuxtLayout>
5252

53-
<Footer />
53+
<Footer />
5454

55-
<ClientOnly>
56-
<LazyContentSearch
57-
:files="files"
58-
:navigation="navigation"
59-
:fuse="{ resultLimit: 42 }"
60-
/>
61-
</ClientOnly>
62-
</div>
63-
</UApp>
55+
<ClientOnly>
56+
<LazyContentSearch
57+
:files="files"
58+
:navigation="navigation"
59+
:fuse="{ resultLimit: 42 }"
60+
/>
61+
</ClientOnly>
62+
</div>
63+
</UApp>
6464
</template>
6565

6666
<style>

docs/app/components/Header.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import type { NavItem } from '@nuxt/contents'
33
4-
const navigation = inject<NavItem[]>('navigation', [])
4+
inject<NavItem[]>('navigation', [])
55
// const { metaSymbol } = useShortcuts()
66
const { header } = useAppConfig()
77
const links = [
@@ -25,18 +25,18 @@ const links = [
2525
<UNavigationMenu :items="links" />
2626

2727
<template #title>
28-
<div class="flex items-center gap-3">
29-
<Logo />
30-
<UBadge class="hidden md:block" size="sm" color="warning" variant="subtle">
31-
Beta
32-
</UBadge>
33-
</div>
28+
<div class="flex items-center gap-3">
29+
<Logo />
30+
<UBadge class="hidden md:block" size="sm" color="warning" variant="subtle">
31+
Beta
32+
</UBadge>
33+
</div>
3434
</template>
3535

3636
<template #right>
37-
<!-- <UTooltip text="Search" :shortcuts="[metaSymbol, 'K']" :popper="{ strategy: 'absolute' }">-->
38-
<!-- <UContentSearchButton :label="null" />-->
39-
<!-- </UTooltip>-->
37+
<!-- <UTooltip text="Search" :shortcuts="[metaSymbol, 'K']" :popper="{ strategy: 'absolute' }"> -->
38+
<!-- <UContentSearchButton :label="null" /> -->
39+
<!-- </UTooltip> -->
4040
<UColorModeButton />
4141
<template v-if="header?.links">
4242
<UButton

docs/app/error.vue

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ useSeoMeta({
1212
</script>
1313

1414
<template>
15-
<UApp>
16-
<div>
17-
<Header />
15+
<UApp>
16+
<div>
17+
<Header />
1818

19-
<UContainer>
20-
<UMain class="flex flex-col items-center justify-center">
21-
<div class="mb-14">
22-
<h1>{{ error.statusCode === 404 ? 'Oops... we can\'t find that.' : 'Uh oh, looks like an error :(' }}</h1>
23-
<div v-if="error.statusCode !== 404">
24-
{{ error.message }}
19+
<UContainer>
20+
<UMain class="flex flex-col items-center justify-center">
21+
<div class="mb-14">
22+
<h1>{{ error.statusCode === 404 ? 'Oops... we can\'t find that.' : 'Uh oh, looks like an error :(' }}</h1>
23+
<div v-if="error.statusCode !== 404">
24+
{{ error.message }}
25+
</div>
26+
<div v-else>
27+
Go back <NuxtLink to="/docs/public" class="underline">
28+
home
29+
</NuxtLink>.
30+
</div>
2531
</div>
26-
<div v-else>
27-
Go back <NuxtLink to="/docs/public" class="underline">
28-
home
29-
</NuxtLink>.
30-
</div>
31-
</div>
32-
</UMain>
33-
</UContainer>
34-
</div>
35-
</UApp>
32+
</UMain>
33+
</UContainer>
34+
</div>
35+
</UApp>
3636
</template>

docs/app/pages/[...slug].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ defineOgImageComponent('Docs', {
5656
<hr v-if="surround?.length || page.path === '/docs/getting-started'">
5757

5858
<UContentSurround :surround="surround" />
59-
<UContentSurround v-if="page.path === '/docs/getting-started'" :surround="surroundIntroduction" />
59+
<UContentSurround v-if="page.path === '/docs/getting-started'" :surround="surroundIntroduction" />
6060
</UPageBody>
6161

6262
<!-- <template v-if="page.toc !== false" #right> -->

docs/nuxt.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ export default defineNuxtConfig({
4444
},
4545
},
4646

47-
css: ['~/assets/css/main.css'],
48-
4947
devtools: {
5048
enabled: true,
5149
},
5250

51+
css: ['~/assets/css/main.css'],
52+
5353
site: {
5454
name: 'Nuxt Scripts',
5555
url: 'scripts.nuxt.com',

docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
"@iconify-json/heroicons": "^1.2.2",
1313
"@iconify-json/noto": "^1.2.3",
1414
"@iconify-json/ph": "^1.2.2",
15-
"@iconify-json/simple-icons": "^1.2.34",
15+
"@iconify-json/simple-icons": "^1.2.37",
1616
"@nuxt/content": "^3.5.1",
1717
"@nuxt/fonts": "^0.11.4",
1818
"@nuxt/image": "^1.10.0",
1919
"@nuxt/scripts": "workspace:*",
20-
"@nuxt/ui-pro": "^3.1.2",
20+
"@nuxt/ui-pro": "^3.1.3",
2121
"@nuxthq/studio": "^2.2.1",
2222
"@nuxtjs/seo": "^3.0.3",
23-
"@vueuse/core": "^13.2.0",
24-
"@vueuse/nuxt": "^13.2.0",
23+
"@vueuse/core": "^13.3.0",
24+
"@vueuse/nuxt": "^13.3.0",
2525
"nuxt-content-twoslash": "^0.1.2",
2626
"nuxt-llms": "^0.1.2",
2727
"ohash": "^2.0.11",

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
},
9696
"dependencies": {
9797
"@nuxt/kit": "catalog:",
98-
"@vueuse/core": "^13.2.0",
98+
"@vueuse/core": "^13.3.0",
9999
"consola": "^3.4.2",
100100
"defu": "^6.1.4",
101101
"h3": "^1.15.3",
@@ -107,43 +107,43 @@
107107
"sirv": "^3.0.1",
108108
"std-env": "^3.9.0",
109109
"ufo": "^1.6.1",
110-
"unplugin": "^2.3.4",
110+
"unplugin": "^2.3.5",
111111
"unstorage": "^1.16.0",
112112
"valibot": "^1.1.0"
113113
},
114114
"devDependencies": {
115115
"@nuxt/devtools-kit": "^2.4.1",
116116
"@nuxt/devtools-ui-kit": "^2.4.1",
117-
"@nuxt/eslint-config": "^1.4.0",
117+
"@nuxt/eslint-config": "^1.4.1",
118118
"@nuxt/module-builder": "^1.0.1",
119119
"@nuxt/scripts": "workspace:*",
120-
"@nuxt/test-utils": "3.19.0",
120+
"@nuxt/test-utils": "3.19.1",
121121
"@types/semver": "^7.7.0",
122-
"@typescript-eslint/typescript-estree": "^8.32.1",
122+
"@typescript-eslint/typescript-estree": "^8.33.0",
123123
"acorn-loose": "^8.5.0",
124124
"bumpp": "^10.1.1",
125125
"changelogen": "^0.6.1",
126-
"eslint": "9.27.0",
126+
"eslint": "9.28.0",
127127
"eslint-plugin-n": "^17.18.0",
128-
"happy-dom": "^17.4.7",
128+
"happy-dom": "^17.5.6",
129129
"knitwork": "^1.2.0",
130130
"nuxt": "catalog:",
131131
"playwright-core": "^1.52.0",
132132
"shiki": "3.4.2",
133133
"typescript": "5.8.2",
134-
"vitest": "^3.1.3",
135-
"vue": "^3.5.14",
134+
"vitest": "^3.1.4",
135+
"vue": "^3.5.16",
136136
"vue-router": "^4.5.1",
137137
"vue-tsc": "^2.2.10"
138138
},
139139
"resolutions": {
140140
"@nuxt/schema": "catalog:",
141141
"@nuxt/scripts": "workspace:*",
142-
"@unhead/vue": "^2.0.8",
143-
"nuxt": "^3.17.3",
142+
"@unhead/vue": "^2.0.10",
143+
"nuxt": "^3.17.4",
144144
"typescript": "^5.8.3",
145-
"unhead": "^2.0.8",
146-
"vue": "^3.5.14",
145+
"unhead": "^2.0.10",
146+
"vue": "^3.5.16",
147147
"vue-router": "^4.5.1"
148148
},
149149
"pnpm": {

0 commit comments

Comments
 (0)