Skip to content

Commit 6f81575

Browse files
committed
chore: bump deps and lint
1 parent b32ab0f commit 6f81575

File tree

17 files changed

+1442
-1379
lines changed

17 files changed

+1442
-1379
lines changed

docs/0.nuxt/head/guides/1.core-concepts/0.reactivity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@ You can also use this pattern with more complex state management:
250250

251251
```vue
252252
<script setup lang="ts">
253-
import { usePageStore } from '@/stores/page'
254253
import { useHead } from '@unhead/vue'
255254
import { storeToRefs } from 'pinia'
255+
import { usePageStore } from '@/stores/page'
256256
257257
const store = usePageStore()
258258
// Destructure with storeToRefs to maintain reactivity

docs/0.vue/head/guides/1.core-concepts/0.reactivity-and-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ You can also use this pattern with more complex state management:
260260

261261
```vue
262262
<script setup lang="ts">
263-
import { usePageStore } from '@/stores/page'
264263
import { useHead } from '@unhead/vue'
265264
import { storeToRefs } from 'pinia'
265+
import { usePageStore } from '@/stores/page'
266266
267267
const store = usePageStore()
268268
// Destructure with storeToRefs to maintain reactivity

docs/0.vue/head/guides/1.core-concepts/3.options-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ that prefer it.
1010

1111
## Setup
1212

13-
To use the options API, you need to install the mixin `VueHeadMixin` with Vue.
13+
To use the options API, you need to install the mixin `VueHeadMixin` with Vue.
1414

1515
The mixin is exported by both the client and server entry files
1616
of Unhead, `@unhead/vue/client`{lang="ts"} and `@unhead/vue/server`{lang="ts"} respectively and you'll need

examples/angular/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@
1212
},
1313
"private": true,
1414
"dependencies": {
15-
"@angular/animations": "^19.2.9",
16-
"@angular/common": "^19.2.9",
17-
"@angular/compiler": "^19.2.9",
18-
"@angular/core": "^19.2.9",
19-
"@angular/forms": "^19.2.9",
20-
"@angular/platform-browser": "^19.2.9",
21-
"@angular/platform-browser-dynamic": "^19.2.9",
22-
"@angular/platform-server": "^19.2.9",
23-
"@angular/router": "^19.2.9",
24-
"@angular/ssr": "^19.2.10",
15+
"@angular/animations": "^19.2.11",
16+
"@angular/common": "^19.2.11",
17+
"@angular/compiler": "^19.2.11",
18+
"@angular/core": "^19.2.11",
19+
"@angular/forms": "^19.2.11",
20+
"@angular/platform-browser": "^19.2.11",
21+
"@angular/platform-browser-dynamic": "^19.2.11",
22+
"@angular/platform-server": "^19.2.11",
23+
"@angular/router": "^19.2.11",
24+
"@angular/ssr": "^19.2.12",
2525
"@unhead/angular": "workspace:*",
2626
"express": "^5.1.0",
2727
"rxjs": "~7.8.2",
2828
"tslib": "^2.8.1",
2929
"zone.js": "~0.15.0"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "^19.2.10",
33-
"@angular/build": "^19.2.10",
34-
"@angular/cli": "^19.2.10",
35-
"@angular/compiler-cli": "^19.2.9",
36-
"@types/express": "^5.0.1",
37-
"@types/node": "^22.15.3",
32+
"@angular-devkit/build-angular": "^19.2.12",
33+
"@angular/build": "^19.2.12",
34+
"@angular/cli": "^19.2.12",
35+
"@angular/compiler-cli": "^19.2.11",
36+
"@types/express": "^5.0.2",
37+
"@types/node": "^22.15.18",
3838
"ng-packagr": "^19.2.2",
3939
"typescript": "~5.8.3"
4040
}

examples/vite-ssr-react-ts/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
"express": "^5.1.0",
1818
"react": "^19.1.0",
1919
"react-dom": "^19.1.0",
20-
"react-router-dom": "^7.5.3",
20+
"react-router-dom": "^7.6.0",
2121
"sirv": "^3.0.1"
2222
},
2323
"devDependencies": {
24-
"@types/express": "^5.0.1",
25-
"@types/node": "^22.15.3",
26-
"@types/react": "^19.1.2",
27-
"@types/react-dom": "^19.1.3",
24+
"@types/express": "^5.0.2",
25+
"@types/node": "^22.15.18",
26+
"@types/react": "^19.1.4",
27+
"@types/react-dom": "^19.1.5",
2828
"@vitejs/plugin-react": "^4.4.1",
2929
"cross-env": "^7.0.3",
3030
"typescript": "~5.8.3",
31-
"vite": "^6.3.4"
31+
"vite": "^6.3.5"
3232
}
3333
}

examples/vite-ssr-svelte/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"devDependencies": {
2222
"@sveltejs/vite-plugin-svelte": "^5.0.3",
2323
"@tsconfig/svelte": "^5.0.4",
24-
"@types/express": "^5.0.1",
25-
"@types/node": "^22.15.3",
24+
"@types/express": "^5.0.2",
25+
"@types/node": "^22.15.18",
2626
"cross-env": "^7.0.3",
27-
"svelte": "^5.28.2",
28-
"svelte-check": "^4.1.7",
27+
"svelte": "^5.30.2",
28+
"svelte-check": "^4.2.1",
2929
"tslib": "^2.8.1",
3030
"typescript": "~5.8.3",
31-
"vite": "^6.3.4"
31+
"vite": "^6.3.5"
3232
}
3333
}

examples/vite-ssr-ts/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"sirv": "^3.0.1"
1717
},
1818
"devDependencies": {
19-
"@types/express": "^5.0.1",
20-
"@types/node": "^22.15.3",
19+
"@types/express": "^5.0.2",
20+
"@types/node": "^22.15.18",
2121
"cross-env": "^7.0.3",
2222
"typescript": "~5.8.3",
23-
"vite": "^6.3.4"
23+
"vite": "^6.3.5"
2424
}
2525
}

examples/vite-ssr-vue-prerender/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"@unhead/vue": "workspace:*",
1919
"pinia": "^3.0.2",
2020
"unhead": "workspace:*",
21-
"unplugin-auto-import": "^19.1.2",
22-
"vite": "^6.3.4",
21+
"unplugin-auto-import": "^19.2.0",
22+
"vite": "^6.3.5",
2323
"vue-router": "^4.5.1"
2424
},
2525
"devDependencies": {
@@ -29,6 +29,6 @@
2929
"express": "^5.1.0",
3030
"serve-static": "^2.2.0",
3131
"vite-plugin-inspect": "10.1.0",
32-
"vue": "^3.5.13"
32+
"vue": "^3.5.14"
3333
}
3434
}

examples/vite-ssr-vue-streaming/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"@unhead/vue": "workspace:*",
2222
"pinia": "^3.0.2",
2323
"unhead": "workspace:*",
24-
"unplugin-auto-import": "^19.1.2",
25-
"vite": "^6.3.4",
24+
"unplugin-auto-import": "^19.2.0",
25+
"vite": "^6.3.5",
2626
"vue-router": "^4.5.1"
2727
},
2828
"devDependencies": {
@@ -31,6 +31,6 @@
3131
"compression": "^1.8.0",
3232
"express": "^5.1.0",
3333
"serve-static": "^2.2.0",
34-
"vue": "^3.5.13"
34+
"vue": "^3.5.14"
3535
}
3636
}

examples/vite-ssr-vue/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
"express": "^5.1.0",
1818
"rollup-plugin-visualizer": "^5.14.0",
1919
"sirv": "^3.0.1",
20-
"vite-bundle-analyzer": "^0.20.1",
21-
"vue": "^3.5.13"
20+
"vite-bundle-analyzer": "^0.20.2",
21+
"vue": "^3.5.14"
2222
},
2323
"devDependencies": {
24-
"@types/express": "^5.0.1",
25-
"@types/node": "^22.15.3",
26-
"@vitejs/plugin-vue": "^5.2.3",
24+
"@types/express": "^5.0.2",
25+
"@types/node": "^22.15.18",
26+
"@vitejs/plugin-vue": "^5.2.4",
2727
"cross-env": "^7.0.3",
2828
"typescript": "~5.8.3",
29-
"vite": "^6.3.4",
29+
"vite": "^6.3.5",
3030
"vue-tsc": "^2.2.10"
3131
}
3232
}

0 commit comments

Comments
 (0)