Conversation
Module content is delivered via git clone in the bmm installer, not via npm packages. Remove publish.yaml workflow, npm publish step from manual-release.yaml, and mark package as private.
|
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. WalkthroughThe pull request disables npm publishing for the package by removing the publish workflow triggered on version tags, eliminating NPM publishing steps from the manual release workflow, and marking the package as private in its manifest. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~4 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
🤖 Augment PR SummarySummary: Disables npm publishing for this module, aligning distribution with the installer’s git-clone delivery model. Changes:
Technical Notes: The release workflow now focuses on version bumping, git tags, and GitHub releases; any “version lookup” behavior previously relying on npm should be replaced with git tags. 🤖 Was this summary useful? React with 👍 or 👎 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@package.json`:
- Line 4: The package.json file contains the change to the "private": true field
but fails Prettier formatting checks; run the project's formatter (e.g., npm run
format:fix or npx prettier --write package.json) to normalize package.json,
verify Prettier no longer reports errors, and commit the updated package.json so
CI/Prettier --check passes; target the package.json file and ensure only
formatting changes are included alongside the existing "private": true entry.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: f9370fb9-b4a5-4536-8965-b49b23b57a83
📒 Files selected for processing (3)
.github/workflows/manual-release.yaml.github/workflows/publish.yamlpackage.json
💤 Files with no reviewable changes (2)
- .github/workflows/publish.yaml
- .github/workflows/manual-release.yaml
Summary
publish.yamlworkflow (tag-triggered npm auto-publish)manual-release.yaml"private": truetopackage.jsonto prevent accidental publishesModule content is delivered via git clone in the bmm installer, not npm packages. The npm publish was only being used as a version lookup service for the installer's status/update-check, which can be replaced with git tags.
Test plan
manual-release.yamlstill creates git tags and GitHub releasesnpm publishfails locally due to"private": trueSummary by CodeRabbit