mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
8c18e9bfbf
And make the devenv http server behave similar to a production environment (related to cache handling).
19 lines
374 B
Bash
Executable file
19 lines
374 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source ~/.bashrc
|
|
set -ex
|
|
|
|
TAG=`git log -n 1 --pretty=format:%H -- ./`
|
|
|
|
npm ci
|
|
|
|
export NODE_ENV=production;
|
|
|
|
# Clean the output directory
|
|
npx gulp clean || exit 1;
|
|
|
|
shadow-cljs release main --config-merge "{:release-version \"${TAG}\"}"
|
|
npx gulp build || exit 1;
|
|
npx gulp dist:clean || exit 1;
|
|
npx gulp dist:copy || exit 1;
|
|
npx gulp dist:gzip || exit 1;
|