elm-crossword-front/justfile

19 lines
No EOL
709 B
Makefile

watch: build
elm-live src/Leaderboard.elm --open -- --output=leaderboard.js
build:
elm make src/Leaderboard.elm --output=leaderboard.js
install:
yarn global add elm-format elm-test elm-oracle elm-live
nodenv rehash
debug:
elm-live src/Leaderboard.elm --open -- --debug --output=leaderboard.js
build_release:
elm make src/Leaderboard.elm --optimize --output=leaderboard.js
uglifyjs leaderboard.js --compress "pure_funcs=[F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9],pure_getters,keep_fargs=false,unsafe_comps,unsafe" | uglifyjs --mangle --output=leaderboard.min.js
deploy: build_release
rsync index.html leaderboard.min.js anthonycicchetti.com:/var/www/crossword.anthonycicchetti.com/public