From 44e68a0ae1e678e6d54df0dfa1a4aa6575e00468 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Fri, 17 Oct 2025 21:29:18 -0300 Subject: [PATCH] :wrench: chore(install): install and update project deps before build --- install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4838e28..2afdd41 100755 --- a/install.sh +++ b/install.sh @@ -85,7 +85,10 @@ if [[ "$answer" == y ]] || [[ "$skip_prompts" ]]; then cp -rf $repo_directory/config/$dir "$dest" # copy done - Send_log "Building colorshell..." + Send_log "Updating dependencies" + pnpm i && pnpm update + + Send_log "Building colorshell" prev_wd=`pwd` cd "$repo_directory" pnpm build:release