Files
penpot/frontend/scripts/dist-worker
2017-02-21 12:19:27 +01:00

11 lines
279 B
Bash
Executable File

#!/bin/sh
lein trampoline run -m clojure.main scripts/dist-worker.clj
if [ -x "$(command -v gzip)" ]; then
gzip -9c dist/js/worker.js > dist/js/worker.js.gz
fi
if [ -x "$(command -v bro)" ]; then
bro --verbose --input dist/js/worker.js --output dist/js/worker.js.br
fi