-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update typedoc to 0.26 #872
Conversation
🦋 Changeset detectedLatest commit: d5e3de5 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Warning Rate limit exceeded@kamiazya has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 12 minutes and 48 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThis update introduces several improvements across the project. It upgrades the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (5)
- example/package.json (1 hunks)
- example/tsdoc.json (1 hunks)
- package.json (3 hunks)
- src/plugin.ts (2 hunks)
- tsdoc.json (1 hunks)
Files skipped from review due to trivial changes (3)
- example/package.json
- example/tsdoc.json
- tsdoc.json
Additional comments not posted (5)
package.json (4)
12-13
: LGTM! Addedtsdoc.json
to exports.This change ensures that the
tsdoc.json
file is included in the package exports, making it available for other modules to import.
40-41
: LGTM! Addedtsdoc.json
to files.This change ensures that the
tsdoc.json
file is included in the package when it is published.
58-58
: LGTM! Updatedtypedoc
version range in peerDependencies.This change ensures compatibility with the latest version of
typedoc
.
66-66
: LGTM! Updatedtypedoc
version in devDependencies.This change updates the development dependency to the latest version of
typedoc
.src/plugin.ts (1)
96-97
: LGTM! Simplified event registration forPageEvent.END
.This change improves the readability and maintainability of the 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.
Actionable comments posted: 0
This pull request updates the typedoc version to 0.26.
The changes include adding a new file
tsdoc.json
and updating thepackage.json
file to include the new version of typedoc. Additionally, thesrc/plugin.ts
file has been modified to fix an issue with theonEndPage
event.Summary by CodeRabbit
New Features
@mermaid
tag in TSDoc comments using thetypedoc-plugin-mermaid
plugin.tsdoc.json
configuration file for TSDoc documentation.Bug Fixes
MermaidPlugin
class for improved performance.Documentation
@mermaid
tag and setting up TSDoc configuration.Chores
typedoc
version indevDependencies
to^0.26.3
.