0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00
penpot/frontend/scripts/dist-main

10 lines
269 B
Bash
Executable file

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