diff --git a/.gitignore b/.gitignore index e6cba9e..fdd7a05 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ elm-stuff repl-temp-* leaderboard.js -leaderboard.min.js \ No newline at end of file +leaderboard.min.js +leaderboard.opt.js \ No newline at end of file diff --git a/justfile b/justfile index 3c9b1e7..42ceaec 100644 --- a/justfile +++ b/justfile @@ -12,8 +12,8 @@ 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 + elm make src/Leaderboard.elm --optimize --output=leaderboard.opt.js + uglifyjs leaderboard.opt.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.js deploy: build_release - rsync index.html leaderboard.min.js anthonycicchetti.com:/var/www/crossword.anthonycicchetti.com/public \ No newline at end of file + rsync index.html leaderboard.js anthonycicchetti.com:/var/www/crossword.anthonycicchetti.com/public \ No newline at end of file