chore(pnpm): migrate to 11.15.1 and pin version in package.json#2295
Open
WalkQuackBack wants to merge 1 commit into
Open
chore(pnpm): migrate to 11.15.1 and pin version in package.json#2295WalkQuackBack wants to merge 1 commit into
WalkQuackBack wants to merge 1 commit into
Conversation
Migrates pnpm to 11.15.1 and pins the version in package.json. The version mismatch between CI and local enviornments has been creating issues with working with the documentation project, as in [pnpm 11.x](https://pnpm.io/blog/releases/11.0) onlyBuiltDependencies and related parameters were dropped and replaced with allowBuilds. In local enviornments, often times the latest version of pnpm would be installed on the local enviornment, which mismatched with the CI, which was locked to a 10.x version. By defining an engines and packageManager field, it avoids mismatch and enforces using a recent enough version of pnpm for the new configuration options.
uncenter
reviewed
Jul 21, 2026
Comment on lines
+6
to
+9
| "packageManager": "pnpm@11.15.1", | ||
| "engines": { | ||
| "pnpm": ">=11.8.0" | ||
| }, |
Member
There was a problem hiding this comment.
I think these two are supposed to be replaced with devEngines.pm.
Member
There was a problem hiding this comment.
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.
Migrates pnpm to 11.15.1 and pins the version in package.json.
The version mismatch between CI and local enviornments has been creating issues with working with the documentation project, as in pnpm 11.x onlyBuiltDependencies and related parameters were dropped and replaced with allowBuilds.
In local enviornments, often times the latest version of pnpm would be installed on the local enviornment, which mismatched with the CI, which was locked to a 10.x version. By defining an engines and packageManager field, it avoids mismatch and enforces using a recent enough version of pnpm for the new configuration options.