0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-07 23:08:24 -05:00

Generate .gz files for dist build.

This commit is contained in:
Andrey Antukh 2017-02-21 11:25:01 +01:00
parent a546811b40
commit 835dcb15d7
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
3 changed files with 3 additions and 0 deletions

View file

@ -1,2 +1,3 @@
#!/bin/sh #!/bin/sh
lein trampoline run -m clojure.main scripts/dist-main.clj lein trampoline run -m clojure.main scripts/dist-main.clj
gzip -9c dist/js/main.js > dist/js/main.js.gz

View file

@ -1,2 +1,3 @@
#!/bin/sh #!/bin/sh
lein trampoline run -m clojure.main scripts/dist-view.clj lein trampoline run -m clojure.main scripts/dist-view.clj
gzip -9c dist/js/view.js > dist/js/view.js.gz

View file

@ -1,2 +1,3 @@
#!/bin/sh #!/bin/sh
lein trampoline run -m clojure.main scripts/dist-worker.clj lein trampoline run -m clojure.main scripts/dist-worker.clj
gzip -9c dist/js/worker.js > dist/js/worker.js.gz