8 lines
168 B
Bash
8 lines
168 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# build-pwa.sh — build the PWA into pwa/dist/
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")/pwa"
|
||
|
|
npm ci --silent
|
||
|
|
npm run build
|
||
|
|
echo "→ pwa/dist/ ready"
|