File tree Expand file tree Collapse file tree 3 files changed +28
-7
lines changed Expand file tree Collapse file tree 3 files changed +28
-7
lines changed Original file line number Diff line number Diff 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
1214frameworks . push ( "../packages/next-auth" , "../packages/core" )
Original file line number Diff line number Diff line change 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" }],
Original file line number Diff line number Diff line change 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/**" ,
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" : {
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" ,
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 },
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 ],
110124 ]
111125 }
112126 }
113- }
127+ }
You can’t perform that action at this time.
0 commit comments