-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reapply "docs: exclude inherits, update deps (#12628)" (#12645) #12690
base: main
Are you sure you want to change the base?
Changes from all commits
768bab2
25e439b
63ebfae
84ac776
3834e72
42dec27
cf6a282
b3d7dcf
b7b6e6a
b0be64a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ export default withNextra({ | |
{ | ||
source: "/:path(.*)", | ||
has: [{ type: "host", value: "warnings.authjs.dev" }], | ||
destination: "https://authjs.dev/reference/warnings/:path*", | ||
destination: "https://authjs.dev/reference/core/errors#warningcode", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TBD: should we put warning code under /errors or we make a new file for it in the source code. |
||
permanent: true, | ||
}, | ||
{ | ||
|
This file was deleted.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. had to convert this file to ESM because of |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,16 @@ module.exports = { | |
tsconfig: "./tsconfig.json", | ||
plugin: [ | ||
"typedoc-plugin-markdown", | ||
require.resolve("./typedoc-nextauth.cjs"), | ||
require.resolve("./typedoc-nextauth.js"), | ||
"typedoc-plugin-mdn-links", | ||
"typedoc-plugin-no-inherit", | ||
], | ||
disableSources: true, | ||
excludeNotDocumented: true, | ||
excludeExternals: true, | ||
excludeInternal: true, | ||
excludePrivate: true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is now the default |
||
excludeProtected: true, | ||
excludeReferences: true, | ||
cleanOutputDir: false, | ||
gitRevision: "main", | ||
githubPages: false, | ||
|
@@ -75,8 +76,5 @@ module.exports = { | |
expandObjects: true, | ||
parametersFormat: "table", | ||
indexFormat: "table", | ||
textContentMappings: { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure about this - I feel like it's unnecessary. This option is also deprecated |
||
"label.packages": "Integrations", | ||
}, | ||
useCodeBlocks: true, | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export default { | ||
entryPoints: ["src/index.ts"], | ||
entryPointStrategy: "expand", | ||
tsconfig: "./tsconfig.json", | ||
entryModule: "@auth/prisma-adapter", | ||
entryFileName: "../prisma-adapter.mdx", | ||
includeVersion: true, | ||
readme: 'none', | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
have to convert some files to .js so this will prevent the file from being deleted by
clean
scripts