Files
flit/build-pwa.sh

8 lines
168 B
Bash
Raw Permalink Normal View History

#!/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"