fix: updating build
This commit is contained in:
parent
5e02f23087
commit
ce2ddfff3a
2 changed files with 9 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"metadata": {
|
||||
"title": "{{edition.fedran.source.title}}",
|
||||
"title": "Friend of the Guard",
|
||||
"author": "D. Moonfire",
|
||||
"language": "en",
|
||||
"theme": "@fedran/writing-theme",
|
||||
"outputDirectory": ".",
|
||||
"outputFilename": "dmoonfire-{{edition.fedran.source.title_slug}}-{{edition.name}}-{{edition.version}}.{{edition.ext}}",
|
||||
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
|
||||
"markdown": {
|
||||
"extensions": [
|
||||
{
|
||||
|
|
|
@ -10,9 +10,14 @@ cd $(dirname $(dirname $0))
|
|||
log "setting up project"
|
||||
./scripts/setup.sh || exit 1
|
||||
|
||||
# Clean up the old files.
|
||||
log "cleaning old builds"
|
||||
rm -f dmoonfire*
|
||||
|
||||
# Build the project outputs.
|
||||
log "building PDF"
|
||||
npm run build:pdf || exit 1
|
||||
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
|
||||
|
||||
log "building EPUB"
|
||||
npm run build:epub || exit 1
|
||||
./node_modules/.bin/mfgames-writing-format build epub || exit 1
|
||||
epubcheck dmoonfire*.epub || exit 1
|
||||
|
|
Loading…
Reference in a new issue