-
-
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?
Conversation
ThangHuuVu
commented
Feb 22, 2025
•
edited
Loading
edited
- Upgrade typedoc & plugins
- Added jonchardy/typedoc-plugin-no-inherit
- remove warnings.mdx, instead put it in the source code. Updated the reference in the logs to point to the new destination
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #12690 +/- ##
==========================================
+ Coverage 39.46% 39.63% +0.17%
==========================================
Files 198 198
Lines 31306 31397 +91
Branches 1372 1372
==========================================
+ Hits 12354 12445 +91
Misses 18952 18952 ☔ View full report in Codecov by Sentry. |
@@ -32,6 +32,7 @@ packages/next-auth/providers | |||
# copied from @auth/core | |||
packages/frameworks-*/**/providers | |||
packages/*/*.js | |||
!packages/*/typedoc.config.js |
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
@@ -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 comment
The 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.
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.
had to convert this file to ESM because of [email protected]
], | ||
disableSources: true, | ||
excludeNotDocumented: true, | ||
excludeExternals: true, | ||
excludeInternal: true, | ||
excludePrivate: true, |
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.
is now the default
@@ -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 comment
The 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