Compare commits

..

2 Commits

Author SHA1 Message Date
MickLesk
75bf2bc152 fix(wanderer): remove --omit=dev from update script to allow npm run build 2026-05-19 08:28:25 +02:00
MickLesk
0eebf13148 fix(wanderer): include dev dependencies during build 2026-05-19 08:02:54 +02:00
2 changed files with 2 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ function update_script() {
$STD go mod tidy
$STD go build
cd /opt/wanderer/source/web
$STD npm ci --omit=dev
$STD npm ci
$STD npm run build
msg_ok "Updated wanderer"

View File

@@ -24,8 +24,7 @@ cd /opt/wanderer/source/db
$STD go mod tidy
$STD go build
cd /opt/wanderer/source/web
$STD npm ci -s vitest
$STD npm ci --omit=dev
$STD npm ci
$STD npm run build
msg_ok "Installed wanderer"