1
0
Fork 0
mirror of synced 2024-06-03 02:55:14 +12:00
budibase/scripts/cleanup.sh
2022-10-21 21:09:54 +02:00

6 lines
195 B
Bash

#!/bin/bash
KEEP="dist|package.json|yarn.lock|client|builder|build|pm2.config.js|docker_run.sh"
echo "Removing unneeded build files:"
ls | egrep -v $KEEP | xargs rm -rfv
NODE_ENV=production yarn