chore(deps): remove redundant pnpm overrides#16732
Merged
matthewp merged 2 commits intoMay 14, 2026
Merged
Conversation
|
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.
Changes
Removes
overridesfield inpnpm-workspace.yaml. This is a follow-up to #16716 (comment)Remove
overrides > vite. This is required for the branchnextwhere we don't want to install vite v7 at all.Remove
overrides > picomatch. This resolves the peer dep warning below:Before:
$ pnpm --version 11.0.9 $ pnpm peers check Issues with peer dependencies found ✕ unmet peer picomatch Installed: 4.0.4 Wanted: ^2.3.2: fdir@6.5.0 ✕ unmet peer zod Installed: 4.3.6 Wanted: ^3.22.4: simple-stack-form@0.1.12 ✕ unmet peer @cloudflare/workers-types Installed: 4.20260228.0 Wanted: ^4.20260415.1: wrangler@4.83.0After:
$ pnpm --version 11.0.9 $ pnpm peers check Issues with peer dependencies found ✕ unmet peer zod Installed: 4.3.6 Wanted: ^3.22.4: simple-stack-form@0.1.12 ✕ unmet peer @cloudflare/workers-types Installed: 4.20260228.0 Wanted: ^4.20260415.1: wrangler@4.83.0Sometimes
overridesfield is required to tweakpnpm-lock.yaml, however, in general, it should not remain in the repository ifpnpm-lock.yamlremains valid after removingoverrides.Testing
CI should pass
Docs
N/A