From 59714b2d83957e88685ff91c861c7d1e7680b5f2 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 23 Nov 2025 03:41:31 -0800 Subject: [PATCH] fix: enable corepack and install yarn before pnpm install --- railpack-plan.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/railpack-plan.json b/railpack-plan.json index 2a789a7..16a8f40 100644 --- a/railpack-plan.json +++ b/railpack-plan.json @@ -1,7 +1,15 @@ { "packages": { "node": "20", - "pnpm": "9", - "yarn": "1" + "pnpm": "9" + }, + "steps": { + "install": { + "commands": [ + "corepack enable", + "corepack prepare yarn@1 --activate", + "..." + ] + } } }