From ac561905b2f8b1aeae340cad820cc6fdadaffad6 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Tue, 25 Aug 2026 10:28:18 +0200 Subject: [PATCH] Add dev enviroment to rebuild during update (#16747) --- ct/excalidash.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/excalidash.sh b/ct/excalidash.sh index 09a265fcd..aacf5e3f9 100644 --- a/ct/excalidash.sh +++ b/ct/excalidash.sh @@ -47,11 +47,11 @@ function update_script() { msg_ok "Configured Database Provider" msg_info "Rebuilding Application" - $STD npm ci + $STD npm ci --include=dev $STD npx prisma generate $STD npx tsc cd /opt/excalidash/frontend - $STD npm ci + $STD npm ci --include=dev $STD npm run build cp -r /opt/excalidash/frontend/dist/. /var/www/excalidash/ msg_ok "Rebuilt Application"