13 lines
251 B
Bash
13 lines
251 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
|
||
|
|
# node/npm are installed via Homebrew (node@22) but not linked onto PATH.
|
||
|
|
export PATH="/opt/homebrew/opt/node@22/bin:$PATH"
|
||
|
|
|
||
|
|
if [ ! -d node_modules ]; then
|
||
|
|
npm install
|
||
|
|
fi
|
||
|
|
|
||
|
|
exec npm run dev
|