mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
17 lines
215 B
Bash
Executable File
17 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source ~/.bashrc
|
|
|
|
set -ex
|
|
|
|
npm ci
|
|
|
|
export NODE_ENV=production;
|
|
|
|
npx gulp dist:clean || exit 1;
|
|
npx gulp dist || exit 1;
|
|
|
|
clojure -Adev tools.clj dist:all || exit 1
|
|
|
|
npx gulp dist:gzip || exit 1
|
|
|