├─ license
├─ readme.md <- you are here
├─ claude.md
├─ elm.json
└─ src
├─ _redirects
├─ index.html
├─ style.css
└─ Main.elm
mkdir -p dist
cp src/* dist
npx elm make src/Main.elm --optimize --output=dist/index.jsListen for file changes and automatically rebuild:
fswatch -o src/ | while read f; do cp src/* dist && npx elm make src/Main.elm --debug --output=dist/index.js; doneServe dist locally in "SPA-mode":
npx serve dist -s -C -S -n