Improve build process

Remove hardcoded yarn version on devenv
This commit is contained in:
Andrey Antukh 2025-01-31 13:39:16 +01:00
parent f871f88f30
commit d15f0f1fd0
8 changed files with 12 additions and 16 deletions

View file

@ -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;