@@ -29,7 +29,7 @@ function typedocAdapter(name) {
2929 watch : process . env . TYPEDOC_WATCH ,
3030 entryPoints : [ `../packages/adapter-${ slug } /src/index.ts` ] ,
3131 tsconfig : `../packages/adapter-${ slug } /tsconfig.json` ,
32- out : `reference/adapter/${ slug } ` ,
32+ out : `docs/ reference/adapter/${ slug } ` ,
3333 ...typedocConfig ,
3434 } ,
3535 ]
@@ -46,8 +46,7 @@ function typedocFramework(pkgDir, entrypoints) {
4646 watch : process . env . TYPEDOC_WATCH ,
4747 entryPoints : entrypoints . map ( ( e ) => `../packages/${ pkgDir } /src/${ e } ` ) ,
4848 tsconfig : `../packages/${ pkgDir } /tsconfig.json` ,
49- out : `reference/${ id === "next-auth" ? "nextjs" : id } ` ,
50- skipIndexPage : true ,
49+ out : `docs/reference/${ id === "next-auth" ? "nextjs" : id } ` ,
5150 } ,
5251 ]
5352}
@@ -273,16 +272,16 @@ const docusaurusConfig = {
273272 plugins : [
274273 typedocFramework ( "core" , [ "index.ts" , "adapters.ts" , "errors.ts" , "jwt.ts" , "types.ts" ] . concat ( providers ) ) ,
275274 typedocFramework ( "frameworks-sveltekit" , [ "lib/index.ts" , "lib/client.ts" ] ) ,
276- typedocFramework ( "next-auth" , [ "index.tsx" , "react.tsx" , "jwt.ts" , "adapters.ts" , " next.ts", "types.ts" , "middleware.ts" ] ) ,
275+ typedocFramework ( "next-auth" , [ "index.tsx" , "react.tsx" , "jwt.ts" , "next.ts" , "types.ts" , "middleware.ts" ] ) ,
277276 ...( process . env . TYPEDOC_SKIP_ADAPTERS
278277 ? [ ]
279278 : [
280279 typedocAdapter ( "Azure Tables" ) ,
281280 typedocAdapter ( "D1" ) ,
282- typedocAdapter ( "EdgeDb" ) ,
283281 typedocAdapter ( "Dgraph" ) ,
284282 typedocAdapter ( "Drizzle" ) ,
285283 typedocAdapter ( "DynamoDB" ) ,
284+ typedocAdapter ( "EdgeDb" ) ,
286285 typedocAdapter ( "Fauna" ) ,
287286 typedocAdapter ( "Firebase" ) ,
288287 typedocAdapter ( "Hasura" ) ,
@@ -293,10 +292,10 @@ const docusaurusConfig = {
293292 typedocAdapter ( "PG" ) ,
294293 typedocAdapter ( "PouchDB" ) ,
295294 typedocAdapter ( "Prisma" ) ,
296- typedocAdapter ( "TypeORM" ) ,
297295 typedocAdapter ( "Sequelize" ) ,
298296 typedocAdapter ( "Supabase" ) ,
299297 typedocAdapter ( "SurrealDB" ) ,
298+ typedocAdapter ( "TypeORM" ) ,
300299 typedocAdapter ( "Upstash Redis" ) ,
301300 typedocAdapter ( "Xata" ) ,
302301 ] ) ,
0 commit comments