2025-01-10 00:36:51 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# motherfucking hate npm. Spent 3 hours debugging that when
|
|
|
|
# NODE_ENV is set to production, npm won't install anything
|
|
|
|
unset NODE_ENV
|
|
|
|
|
|
|
|
git pull
|
2025-02-25 16:04:15 +01:00
|
|
|
git reset --hard WeGoingBasic
|
2025-01-10 00:36:51 +01:00
|
|
|
|
2025-02-25 16:04:15 +01:00
|
|
|
npm ci
|
2025-01-10 00:36:51 +01:00
|
|
|
|
|
|
|
echo "Ready to build, building..."
|
|
|
|
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
echo "Done rebuilding!"
|