fix: enable publishing of enscli#2157
Conversation
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
3 Skipped Deployments
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthroughThe ENS CLI package manifest is updated to remove the ChangesPackage Publication Configuration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 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 |
Greptile SummaryRemoves
Confidence Score: 5/5Safe to merge — a one-line removal that simply unblocks the existing changesets publish pipeline for a name-reservation package. The only change is removing a single flag from a stub package that has no source code, no binaries, and no runtime consumers. The CHANGELOG history confirms the version has been tracking correctly all along; publishing at 1.14.0 is the expected next step. No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant CS as Changesets CI
participant NPM as npm Registry
Dev->>CS: Merge PR (private: true removed)
CS->>CS: Detect enscli in publishable packages
CS->>NPM: "Publish enscli@1.14.0"
NPM-->>CS: Published successfully
CS-->>Dev: Release created
Reviews (1): Last reviewed commit: "fix: enable publishing of enscli" | Re-trigger Greptile |
There was a problem hiding this comment.
Pull request overview
This PR enables publishing for the enscli package by removing its private flag so Changesets will include it in npm publishing.
Changes:
- Removed
"private": truefrompackages/enscli/package.jsonto allow publishing.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| "private": true, | ||
| "name": "enscli", | ||
| "version": "1.14.0", |
makes enscli package public so changesets starts to publish it