From c2b7dc0bb3122f16779379f46c95212b25cc2098 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Thu, 24 Oct 2024 15:57:09 -0400 Subject: [PATCH] Add `<9.12.0` to `.engines.pnpm` (#39897) We're waiting on updating to pnpm 9.12+ due to the regression of pnpm/pnpm#3935. Update `.engines.pnpm` so Renovate stops trying to use 9.12 and then failing the "Lock files are up to date" check. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c45b68de818b3..61aea19924cbf 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,6 @@ }, "engines": { "node": "^22.9.0", - "pnpm": "^9.3.0" + "pnpm": "^9.3.0 <9.12.0" } }