mirror of
https://github.com/penpot/penpot.git
synced 2025-01-25 07:58:49 -05:00
17 lines
280 B
Bash
17 lines
280 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
source ~/.bashrc
|
||
|
export NODE_ENV=production;
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
npx gulp dist:clean || exit 1;
|
||
|
npx gulp dist || exit 1;
|
||
|
|
||
|
cp -r ./target/dist ./target/dist2
|
||
|
mv ./target/dist2 ./target/dist/dbg
|
||
|
|
||
|
clojure -Adev tools.clj dist:all || exit 1;
|
||
|
|
||
|
npx gulp dist:gzip || exit 1;
|