build: convert repo from npm to pnpm - #136
Conversation
|
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 17 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (5)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #136 +/- ##
=======================================
Coverage 96.83% 96.83%
=======================================
Files 8 8
Lines 316 316
Branches 54 54
=======================================
Hits 306 306
Misses 4 4
Partials 6 6 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
- import package-lock.json into pnpm-lock.yaml (preserves resolved versions), remove package-lock.json - add packageManager: pnpm@11.15.1 to package.json - convert npm-isms in scripts (npm ci -> pnpm install --frozen-lockfile, npm i --package-lock-only -> pnpm install --lockfile-only) - CI: add pnpm/action-setup@v6, cache: pnpm, pnpm install/run; bump codecov-action v6 -> v7 - update husky pre-commit hook, .gitignore, .prettierignore
ccbef17 to
c83bc8d
Compare
Converts the repo from npm to pnpm (pnpm 11.15.1).
package-lock.jsonintopnpm-lock.yamlviapnpm import(preserves resolved versions) and removedpackage-lock.json."packageManager": "pnpm@11.15.1"to package.json.npm ci->pnpm install --frozen-lockfile,npm i --package-lock-only->pnpm install --lockfile-only,npm run->pnpm run.pnpm/action-setup@v6before setup-node,cache: pnpm, pnpm install/run; bumpedcodecov/codecov-actionv6 -> v7.npm exec lint-staged->pnpm exec lint-staged),.prettierignore(package-lock.json -> pnpm-lock.yaml), and added lockfile ignores to.gitignore.workspace:ranges in the manifest sochangeset publishis unaffected.Verification:
pnpm install, build (tsc -b && rolldown -c), lint (@ci:lint), and tests (484 passed) all green locally.