Skip to content

Commit 327db65

Browse files
committed
docs: fix build
1 parent ad14406 commit 327db65

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

docs/typedoc.config.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ const frameworks = fs
77
.readdirSync(path.resolve(__dirname, "../packages"))
88
.filter((dir) => dir.startsWith("frameworks-"))
99
.filter((dir) => dir !== "frameworks-template")
10+
// TODO: Fix Qwik Auth API Reference generation
11+
.filter((dir) => dir !== "frameworks-qwik")
1012
.map((dir) => `../packages/${dir}`)
1113

1214
frameworks.push("../packages/next-auth", "../packages/core")

docs/vercel.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@
5353
"has": [{ "type": "host", "value": "nextjs.authjs.dev" }],
5454
"destination": "https://authjs.dev/reference/nextjs"
5555
},
56+
{
57+
"source": "/:path(.*)",
58+
"has": [{ "type": "host", "value": "qwik.authjs.dev" }],
59+
"destination": "https://authjs.dev/reference/qwik"
60+
},
5661
{
5762
"source": "/:path(.*)",
5863
"has": [{ "type": "host", "value": "errors.authjs.dev" }],

turbo.json

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"$schema": "https://turbo.build/schema.json",
33
"pipeline": {
44
"build": {
5-
"dependsOn": ["^build"],
5+
"dependsOn": [
6+
"^build"
7+
],
68
"outputs": [
79
".next",
810
"dist/**",
@@ -25,8 +27,13 @@
2527
"cache": false
2628
},
2729
"test": {
28-
"outputs": ["coverage/**"],
29-
"inputs": ["src/**/", "test/**/"],
30+
"outputs": [
31+
"coverage/**"
32+
],
33+
"inputs": [
34+
"src/**/",
35+
"test/**/"
36+
],
3037
"outputMode": "new-only"
3138
},
3239
"test:e2e": {
@@ -38,10 +45,15 @@
3845
]
3946
},
4047
"@auth/xata-adapter#test": {
41-
"env": ["XATA_API_KEY", "XATA_DATABASE_URL"]
48+
"env": [
49+
"XATA_API_KEY",
50+
"XATA_DATABASE_URL"
51+
]
4252
},
4353
"@auth/hasura-adapter#build": {
44-
"dependsOn": ["@auth/core#build"],
54+
"dependsOn": [
55+
"@auth/core#build"
56+
],
4557
"outputs": [
4658
"lib/**",
4759
"*.js",
@@ -56,7 +68,8 @@
5668
"@auth/core#build",
5769
"@auth/sveltekit#build",
5870
"@auth/express#build",
59-
"@auth/solid-start#build"
71+
"@auth/solid-start#build",
72+
"@auth/qwik#build"
6073
],
6174
"cache": false
6275
},
@@ -99,6 +112,7 @@
99112
"@auth/unstorage-adapter#build",
100113
"@auth/upstash-redis-adapter#build",
101114
"@auth/xata-adapter#build",
115+
"@auth/qwik#build",
102116
"next-auth#build",
103117
"^build"
104118
],
@@ -110,4 +124,4 @@
110124
]
111125
}
112126
}
113-
}
127+
}

0 commit comments

Comments
 (0)