19 lines
358 B
Bash
19 lines
358 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Set up logging.
|
||
|
log() { echo "🛠️ $(basename $0): $@"; }
|
||
|
|
||
|
# Move into the root folder.
|
||
|
cd $(dirname $(dirname $0))
|
||
|
|
||
|
# Make sure everything is set up.
|
||
|
log "setting up project"
|
||
|
./scripts/setup.sh || exit 1
|
||
|
|
||
|
# Build the project outputs.
|
||
|
log "building PDF"
|
||
|
npm run build:pdf || exit 1
|
||
|
|
||
|
log "building EPUB"
|
||
|
npm run build:epub || exit 1
|