From 2970b72b81daefd832dcc47f352083c09c2e2d34 Mon Sep 17 00:00:00 2001 From: Samuel Reed Date: Wed, 16 Sep 2026 00:57:23 -0400 Subject: [PATCH] build: pin packageManager to yarn 1.22.22 The repo ships a yarn 1 lockfile but corepack defaulted to yarn 4, so install and any make target invoking `yarn bin` failed until npx yarn@1.22.22 was used. corepack now resolves explicitly. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 81b7f2c3..94cbb83f 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "Samuel Reed (http://strml.net/)" ], "license": "MIT", + "packageManager": "yarn@1.22.22", "bugs": { "url": "https://github.com/react-grid-layout/react-draggable/issues" },