From 6ca1a845579deb3575c6a9d3e20d59c06bad1507 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 10 Feb 2025 10:59:29 +0100 Subject: [PATCH] :bug: Backport build issue from staging Related to the devenv update --- frontend/scripts/build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/scripts/build b/frontend/scripts/build index 3ef7ce097b..b298015456 100755 --- a/frontend/scripts/build +++ b/frontend/scripts/build @@ -16,7 +16,10 @@ export TS=$(date +%s); # performant code on macros (example: rumext) export NODE_ENV=production; +corepack enable; +corepack up || exit 1; yarn install || exit 1; + rm -rf resources/public; rm -rf target/dist;