0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 07:50:43 -05:00
penpot/exporter/scripts/build
2022-01-20 14:27:03 +01:00

22 lines
348 B
Bash
Executable file

#!/usr/bin/env bash
set -ex
CURRENT_VERSION=$1;
yarn install
rm -rf target
export NODE_ENV=production;
# Build the application
clojure -M:dev:shadow-cljs release main;
# Remove source
rm -rf target/app;
# Copy package*.json files
cp yarn.lock target/;
cp package.json target/;
sed -i -re "s/\%version\%/$CURRENT_VERSION/g" ./target/app.js;