Move tar override to pnpm-workspace.yaml

pnpm v11 (installed in CI via `npm install -g pnpm`) no longer reads the
`pnpm.overrides` field from package.json, which caused
ERR_PNPM_LOCKFILE_CONFIG_MISMATCH during the frozen install. Move the
override to pnpm-workspace.yaml, the new home for the setting, so CI's
pnpm reads it and matches the lockfile.

https://claude.ai/code/session_01NPQ9AiNNnapeoTQFAR1ShY
This commit is contained in:
Claude
2026-06-14 12:22:22 +00:00
parent 029c65da79
commit d9a8835696
2 changed files with 2 additions and 5 deletions
-5
View File
@@ -10,10 +10,5 @@
"dependencies": { "dependencies": {
"@tailwindcss/cli": "^4.1.18", "@tailwindcss/cli": "^4.1.18",
"flowbite": "^4.0.1" "flowbite": "^4.0.1"
},
"pnpm": {
"overrides": {
"tar": "^7.5.11"
}
} }
} }
+2
View File
@@ -0,0 +1,2 @@
overrides:
tar: ^7.5.11