Skip to content

Commit bc52d21

Browse files
authored
chore: bump dependencies (#1040)
* chore: bump dependencies * chore: fix lints * chore: try using type module for playground local
1 parent 1585e1d commit bc52d21

7 files changed

Lines changed: 3630 additions & 4868 deletions

File tree

docs/recipes/community/laravel-passport.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export default defineNuxtConfig({
6969
```ts
7070
// ~/server/api/auth/[...].ts
7171
import { NuxtAuthHandler } from '#auth'
72+
7273
const { passport } = useRuntimeConfig() // get the values from the runtimeConfig
7374

7475
export default NuxtAuthHandler({

docs/recipes/community/strapi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export default defineNuxtConfig({
3838
// file: ~/server/api/auth/[...].ts
3939
import CredentialsProvider from 'next-auth/providers/credentials'
4040
import { NuxtAuthHandler } from '#auth'
41+
4142
const config = useRuntimeConfig()
4243

4344
export default NuxtAuthHandler({

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
"test:unit": "vitest"
3737
},
3838
"dependencies": {
39-
"@nuxt/kit": "^3.16.2",
39+
"@nuxt/kit": "^3.17.6",
4040
"defu": "^6.1.4",
41-
"h3": "^1.15.1",
41+
"h3": "^1.15.3",
4242
"knitwork": "^1.2.0",
43-
"nitropack": "^2.11.9",
43+
"nitropack": "^2.11.13",
4444
"requrl": "^3.0.2",
4545
"scule": "^1.3.0",
4646
"ufo": "^1.6.1"
@@ -49,20 +49,20 @@
4949
"next-auth": "~4.21.1"
5050
},
5151
"devDependencies": {
52-
"@antfu/eslint-config": "^4.12.0",
52+
"@antfu/eslint-config": "^4.16.2",
5353
"@nuxt/module-builder": "^0.8.4",
54-
"@nuxt/schema": "^3.16.2",
54+
"@nuxt/schema": "^3.17.6",
5555
"@nuxtjs/eslint-config-typescript": "^12.1.0",
56-
"@types/node": "^20.17.30",
57-
"eslint": "^9.25.1",
58-
"nuxt": "^3.15.4",
56+
"@types/node": "^20.19.6",
57+
"eslint": "^9.30.1",
58+
"nuxt": "^3.17.6",
5959
"ofetch": "^1.4.1",
60-
"oxlint": "^0.16.7",
60+
"oxlint": "^0.16.12",
6161
"ts-essentials": "^9.4.2",
6262
"typescript": "^5.8.3",
6363
"vitepress": "^1.6.3",
64-
"vitest": "^3.1.2",
65-
"vue-tsc": "^2.2.10"
64+
"vitest": "^3.2.4",
65+
"vue-tsc": "^2.2.12"
6666
},
6767
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
6868
}

playground-authjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"postinstall": "nuxt prepare"
1010
},
1111
"devDependencies": {
12-
"nuxt": "^3.15.4",
12+
"nuxt": "^3.17.6",
1313
"typescript": "^5.8.3",
14-
"vue-tsc": "^2.2.10"
14+
"vue-tsc": "^2.2.12"
1515
}
1616
}

playground-local/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "nuxt-auth-playground-local",
4+
"type": "module",
45
"scripts": {
56
"typecheck": "tsc --noEmit",
67
"dev": "nuxi prepare && nuxi dev",
@@ -12,17 +13,17 @@
1213
},
1314
"dependencies": {
1415
"jsonwebtoken": "^9.0.2",
15-
"zod": "^3.24.3"
16+
"zod": "^3.25.76"
1617
},
1718
"devDependencies": {
18-
"@nuxt/test-utils": "^3.17.2",
19-
"@playwright/test": "^1.52.0",
20-
"@types/jsonwebtoken": "^9.0.9",
21-
"@types/node": "^20.17.30",
19+
"@nuxt/test-utils": "^3.19.2",
20+
"@playwright/test": "^1.54.0",
21+
"@types/jsonwebtoken": "^9.0.10",
22+
"@types/node": "^20.19.6",
2223
"@vue/test-utils": "^2.4.6",
23-
"nuxt": "^3.15.4",
24+
"nuxt": "^3.17.6",
2425
"typescript": "^5.8.3",
25-
"vitest": "^1.6.1",
26-
"vue-tsc": "^2.2.10"
26+
"vitest": "^3.2.4",
27+
"vue-tsc": "^2.2.12"
2728
}
2829
}

0 commit comments

Comments
 (0)