MultiplayerMinesweeper/build.sh

15 lines
383 B
Bash
Raw Normal View History

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
2023-04-03 19:26:24 +00:00
echo "Starting server on port 8082."
node dist/server/main.js