mirror of
https://github.com/penpot/penpot.git
synced 2025-02-21 22:36:12 -05:00
20 lines
267 B
Bash
20 lines
267 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
source ~/.bashrc
|
||
|
set -ex
|
||
|
|
||
|
npm ci
|
||
|
rm -rf target
|
||
|
|
||
|
export NODE_ENV=production;
|
||
|
|
||
|
# Build the application
|
||
|
npx shadow-cljs release main
|
||
|
|
||
|
# Remove source
|
||
|
rm -rf target/app
|
||
|
|
||
|
# Copy package*.json files
|
||
|
cp package-lock.json target/
|
||
|
cp package.json target/
|