1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00
budibase/scripts/cleanup.sh
2022-10-21 21:09:03 +02:00

6 lines
194 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 -rf
NODE_ENV=production yarn