invoiceshelf: use pnpm instead of yarn for frontend build (#15312)

This commit is contained in:
CanbiZ (MickLesk)
2026-06-22 22:02:17 +02:00
committed by GitHub
parent d879050293
commit cfb5114d8b
+4 -5
View File
@@ -53,12 +53,11 @@ function update_script() {
cd /opt/invoiceshelf
$STD composer install --no-dev --optimize-autoloader
if command -v corepack >/dev/null 2>&1; then
$STD corepack yarn install
$STD corepack yarn build
$STD corepack pnpm install
$STD corepack pnpm run build
else
$STD yarn install
$STD yarn build
$STD pnpm install
$STD pnpm run build
fi
$STD php artisan migrate --force
$STD php artisan optimize:clear