chore: migrate project from yarn to pnpm#799
Merged
Conversation
Co-authored-by: omer.moradd <omer.moradd@gmail.com>
Co-authored-by: omer.moradd <omer.moradd@gmail.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## next #799 +/- ##
=======================================
Coverage 92.54% 92.54%
=======================================
Files 26 26
Lines 590 590
Branches 99 99
=======================================
Hits 546 546
Misses 35 35
Partials 9 9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Co-authored-by: omer.moradd <omer.moradd@gmail.com>
omermorad
added a commit
that referenced
this pull request
Oct 24, 2025
omermorad
added a commit
that referenced
this pull request
Oct 26, 2025
omermorad
added a commit
that referenced
this pull request
Nov 15, 2025
omermorad
added a commit
that referenced
this pull request
Nov 15, 2025
omermorad
added a commit
that referenced
this pull request
Nov 15, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
The project currently uses Yarn for dependency management and CI/CD workflows.
Issue Number: N/A
What is the new behavior?
This PR migrates the entire project from Yarn to pnpm. This includes:
yarn.lock,.yarn/,.yarnrc.yml) with pnpm equivalents (pnpm-workspace.yaml,.npmrc,pnpm-lock.yaml).package.jsonscripts across the monorepo (root and individual packages) to usepnpmcommands instead ofyarn.lerna.jsonto specifypnpmas the npm client.tsconfig.build.jsonfiles in several packages to correctly excludedistdirectories and resolve inter-package dependencies.ci.yml,e2e.yml,publish-packages.yml,set-coverage.yml) to usepnpmfor installing dependencies, caching, building, linting, and testing.The migration ensures the project is fully functional with pnpm both locally and in CI/CD.
Does this PR introduce a breaking change?
Other information
All
build,lint, andtestcommands have been verified to pass successfully with pnpm.