From d9a883569608fdfcfd8d0787f38de71538f9d842 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 14 Jun 2026 12:22:22 +0000 Subject: [PATCH] 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 --- package.json | 5 ----- pnpm-workspace.yaml | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) create mode 100644 pnpm-workspace.yaml diff --git a/package.json b/package.json index d743ef2..7666c0d 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,5 @@ "dependencies": { "@tailwindcss/cli": "^4.1.18", "flowbite": "^4.0.1" - }, - "pnpm": { - "overrides": { - "tar": "^7.5.11" - } } } diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..9a82d5c --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +overrides: + tar: ^7.5.11