1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00
budibase/scripts/cleanup.sh

6 lines
195 B
Bash
Raw Normal View History

#!/bin/bash
2022-10-22 08:09:03 +13:00
KEEP="dist|package.json|yarn.lock|client|builder|build|pm2.config.js|docker_run.sh"
echo "Removing unneeded build files:"
2022-10-22 08:09:54 +13:00
ls | egrep -v $KEEP | xargs rm -rfv
NODE_ENV=production yarn