-
Notifications
You must be signed in to change notification settings - Fork 0
fix(docs): correct TypeDoc entry point path #78
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
Conversation
- Change social config from array to object format for Starlight compatibility - Fix find command to use docs-dist instead of dist in workflow Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Use packages/core/src/index.ts instead of src/index.ts and make step non-blocking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Warning Rate limit exceeded
⌛ 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. 📒 Files selected for processing (7)
Note Other AI code review bot(s) detectedCodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary of ChangesHello @jbdevprimary, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request aims to improve the reliability of the documentation build and deployment pipeline. It addresses a critical misconfiguration in the TypeDoc setup by updating the entry point path, which was causing documentation generation to fail. Furthermore, it enhances the overall deployment stability by making the TypeDoc step non-blocking, preventing documentation build issues from impeding the successful deployment of the GitHub Pages site. Highlights
Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request aims to fix the TypeDoc entry point path for the documentation site. However, the current changes only include generated build artifacts from Astro located in the docs-site/.astro/ directory. Committing these files is not a good practice as they can bloat the repository and cause conflicts. The actual source code changes that fix the TypeDoc configuration are missing from this PR. I recommend removing the generated files, adding docs-site/.astro/ to the .gitignore file, and committing the relevant source files that contain the intended fixes.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|



Summary
src/index.tstopackages/core/src/index.tsContext
The GitHub Pages deployment was failing because TypeDoc couldn't find
src/index.ts- the monorepo usespackages/core/src/index.tsinstead.Test plan
🤖 Generated with Claude Code