bitburner-src/tools/build.sh
omuretsu e8e107254d Update build commands
build:dev now works
2023-01-30 19:45:24 -05:00

14 lines
250 B
Bash

#!/bin/bash
# builds the game in the root folder
webpack --mode $1
# Clear out any files remaining from old builds and recreate folder
rm -rf .app
mkdir .app
# Should be all the files needed.
cp index.html .app
cp favicon.ico .app
cp -r dist .app