fix: update package name references from @aossie/support-us-button to… - #17
Conversation
… support-us-button
WalkthroughThe package is being renamed from a scoped package name ( Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Suggested labels
Poem
🚥 Pre-merge checks | ✅ 2✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
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 Tip CodeRabbit can use your project's `biome` configuration to improve the quality of JS/TS/CSS/JSON code reviews.Add a configuration file to your project to customize how CodeRabbit runs |
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 `@rollup.config.js`:
- Line 33: Change the Rollup UMD global name from a kebab-case string to a valid
JS identifier: update the output.name setting (currently "support-us-button") to
a PascalCase identifier such as "SupportUsButton" so the bundle uses dot
notation (global.SupportUsButton) instead of bracket notation; locate the
output.name entry in the rollup.config.js and replace the quoted kebab-case
value with the new identifier.
🪄 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: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: 54a807c3-ed20-4b37-a1a1-d5901ff72776
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (3)
README.mdpackage.jsonrollup.config.js
Change Package Name to support-us-button
This PR updates the package name in package.json from:
@aossie/support-us-button
to
support-us-button
Reason for the Change
Scoped packages such as @aossie/* require publishing permissions under the corresponding npm organization. Since publishing access to the @aossie npm scope is restricted to organization members, the package name has been updated to a non-scoped name to allow successful public publishing and testing on npm.
Impact
The package can now be published publicly without requiring npm organization permissions.
to:
Checklist
We encourage contributors to use AI tools responsibly when creating Pull Requests. While AI can be a valuable aid, it is essential to ensure that your contributions meet the task requirements, build successfully, include relevant tests, and pass all linters. Submissions that do not meet these standards may be closed without warning to maintain the quality and integrity of the project. Please take the time to understand the changes you are proposing and their impact.
Summary by CodeRabbit