0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00

📎 Adjust exporter and frontend build scripts

This commit is contained in:
Andrey Antukh 2023-11-21 13:39:31 +01:00
parent d1fba8982e
commit af64c2c46e
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ rm -rf target
export NODE_ENV=production;
# Build the application
clojure -M:dev:shadow-cljs release main;
clojure -J-Xms100M -J-Xmx1000M -J-XX:+UseSerialGC -M:dev:shadow-cljs release main;
# Remove source
rm -rf target/app;

View file

@ -11,7 +11,7 @@ yarn install || exit 1;
yarn run build:clean || exit 1;
yarn run build:styles || exit 1;
clojure -J-Xms100M -J-Xmx800M -J-XX:+UseSerialGC -M:dev:shadow-cljs release main --config-merge "{:release-version \"${CURRENT_HASH}\"}" $EXTRA_PARAMS || exit 1
clojure -J-Xms100M -J-Xmx1000M -J-XX:+UseSerialGC -M:dev:shadow-cljs release main --config-merge "{:release-version \"${CURRENT_HASH}\"}" $EXTRA_PARAMS || exit 1
yarn run build:assets || exit 1;
yarn run build:copy || exit 1;