From de79cb04f6272b4e74d80246a6ef8adb7d46447f Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Tue, 7 Apr 2026 12:00:41 +0200 Subject: [PATCH] scrollprize.org: fix vercel deployment It seems vercel started failing probably because of some transitive dependency resolution hiccups. According to claude, vercel's yarn classic build might be not picking up our lock file which would prevent the issue and the fix is to pin a package manager version. --- scrollprize.org/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/scrollprize.org/package.json b/scrollprize.org/package.json index 7c3e9cc0d..e6d6ee25b 100644 --- a/scrollprize.org/package.json +++ b/scrollprize.org/package.json @@ -2,6 +2,7 @@ "name": "my-website", "version": "0.0.0", "private": true, + "packageManager": "yarn@4.6.0", "scripts": { "preinstall": "[ \"${AGENTS_AGENT_MODE:-0}\" != \"1\" ] || [ \"${AGENTS_ALLOW_INSTALL:-0}\" = \"1\" ] || { echo \"Install is disabled by default in agent mode. Set AGENTS_ALLOW_INSTALL=1 to install dependencies.\"; exit 1; }", "docusaurus": "docusaurus",