mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
16 lines
197 B
Bash
Executable File
16 lines
197 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;
|
|
|
|
shadow-cljs release main
|
|
|
|
npx gulp dist:gzip || exit 1;
|