chore: upgrade pnpm to v11 and migrate .npmrc to workspace config#78
chore: upgrade pnpm to v11 and migrate .npmrc to workspace config#78RedStar071 wants to merge 1 commit into
Conversation
- Upgrade pnpm from 10.33.3 to 11.4.0 - Migrate settings from .npmrc to pnpm-workspace.yaml - Switch onlyBuiltDependencies to allowBuilds (pnpm v11 API) - Add minimumReleaseAge to workspace config - Remove .npmrc file
|
Warning Review limit reached
More reviews will be available in 40 minutes and 36 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, 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 include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ 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 |
There was a problem hiding this comment.
Pull request overview
This PR upgrades the repository’s package manager tooling to pnpm v11 and consolidates previously .npmrc-based pnpm settings into pnpm-workspace.yaml, aligning with pnpm v11’s recommended configuration approach.
Changes:
- Bump pnpm from v10 to v11 via
package.json(packageManager) andmise.toml. - Migrate hoisting/workspace-root settings from
.npmrcintopnpm-workspace.yaml. - Update build-allowlisting config (
onlyBuiltDependencies→allowBuilds) and add a minimum release age guard.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pnpm-workspace.yaml | Moves pnpm config into workspace YAML, updates build allowlist key, and adds minimum release age settings. |
| package.json | Pins the repo to pnpm@11.4.0 via packageManager. |
| mise.toml | Updates the pnpm tool version to major v11 for local/dev tooling. |
| .npmrc | Removes redundant pnpm config after migrating it into workspace configuration. |
| "node": ">=24.0.0", | ||
| "pnpm": ">=10" | ||
| }, | ||
| "packageManager": "pnpm@10.33.3" | ||
| "packageManager": "pnpm@11.4.0" |
Upgrades pnpm from v10 to v11 and migrates all .npmrc configuration into `pnpm-workspace.yaml` as recommended by pnpm v11.
Changes