MultiplayerMinesweeper/build.sh
Alexander Bass ee9aa12d19 cleanup
2023-04-03 15:34:28 -04:00

15 lines
383 B
Bash

rm -rf dist
mkdir -p dist/server
mkdir -p dist/www/
echo "Compiling SCSS......."
scss client/scss/main.scss dist/www/style.css
rm -rf .sass-cache
echo "Moving Static Webpage object to www......"
cp -r client/www/* dist/www
echo "Rolling up ES6 Modules into bundle......"
npx rollup -c
echo "Compiling TypeScript"
npx tsc
echo "Starting server on port 8082."
node dist/server/main.js