D. Moonfire
edb2f36b57
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
15 lines
264 B
Bash
Executable file
15 lines
264 B
Bash
Executable file
# !/usr/bin/env bash
|
|
|
|
#mfgames-project:setup@v0.0.0
|
|
log() { echo "🚧 $(basename $0): $@"; }
|
|
cd $(dirname $(dirname $0))
|
|
#mfgames-project:setup
|
|
|
|
log "cleaning old files"
|
|
rm -f *.epub *.pdf
|
|
|
|
log "installing NPM"
|
|
npm install --ci
|
|
|
|
log "running build"
|
|
npm run build
|