chore: bump pnpm 10.33.0 to 11.0.9#119
Merged
CaseyHoover merged 1 commit intomainfrom May 9, 2026
Merged
Conversation
Closes #118. pnpm v11 removes the `pnpm.*` field from package.json — settings now live in pnpm-workspace.yaml. Migrated `onlyBuiltDependencies` (now an `allowBuilds` map) and `ignoredOptionalDependencies` accordingly. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Closes #118.
packageManagerin rootpackage.jsonRUN npm install -g pnpm@…in.devcontainer/Dockerfilepackage.json#pnpm.*settings intopnpm-workspace.yaml(pnpm v11 no longer reads them frompackage.json):onlyBuiltDependencies(list) →allowBuilds(boolean map). All previously-approved packages are kept allowed.ignoredOptionalDependenciesmoves verbatim.pnpm installregenerates the lockfile. v11's lockfile is more compact (drops some unused peer-dependency context tags), which accounts for most of the line delta.Notes on v11 compatibility
node:26.0-slim, so we're safe..npmrcis auth/registry-only: this repo doesn't have an.npmrc, so nothing to migrate.minimumReleaseAgedefaults to 1 day andblockExoticSubdepsdefaults totrue: defaults are kept.strictDepBuildstrue by default: every package previously listed inonlyBuiltDependenciesis nowtrueinallowBuilds, so no install error.Test plan
pnpm installcompletespnpm lint:pinning— Pinning policy: OKpnpm lint— 5/5 tasks successfulpnpm build— 3/3 tasks successfulpnpm test— 4 test files, 20 tests passednpm install -g pnpm@11.0.9line builds)🤖 Generated with Claude Code