From a409166978225aa1ba7b2e511fee1f8ae7426057 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 9 Aug 2026 17:33:04 +0000 Subject: [PATCH 1/2] chore(deps): update pnpm to v11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d7fa22c..26e6688 100644 --- a/package.json +++ b/package.json @@ -27,5 +27,5 @@ "engines": { "node": ">=24.19.0" }, - "packageManager": "pnpm@10.34.1" + "packageManager": "pnpm@11.21.0" } From be0aafca4e49517f6a07d22f96dcd0b7f18175ae Mon Sep 17 00:00:00 2001 From: kazukit Date: Mon, 10 Aug 2026 22:16:47 +0900 Subject: [PATCH 2/2] fix(deps): replace onlyBuiltDependencies with allowBuilds for pnpm v11 pnpm 11 removed `onlyBuiltDependencies` in favour of the `allowBuilds` map, so the previous setting was silently ignored and `lefthook` again tripped `ERR_PNPM_IGNORED_BUILDS` (`strictDepBuilds` now defaults to true). Co-Authored-By: Claude Opus 5 (1M context) --- pnpm-workspace.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 09a4508..65e23ae 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -5,5 +5,5 @@ useNodeVersion: 24.19.0 nodeVersion: 24.19.0 engineStrict: true -onlyBuiltDependencies: - - lefthook +allowBuilds: + lefthook: true