Compare commits

...

2 commits

Author SHA1 Message Date
semantic-release-bot bb36fcaa6c chore(release): v1.0.1 [skip ci]
## [1.0.1](https://src.mfgames.com/fedran-sources/a-poisoned-gift/compare/v1.0.0...v1.0.1) (2022-10-15)

### Bug Fixes

* updating build ([e244ab6](e244ab6592))
2022-10-15 13:07:12 +00:00
D. Moonfire e244ab6592 fix: updating build 2022-10-15 07:29:52 -05:00
5 changed files with 19 additions and 7 deletions

View file

@ -1,3 +1,10 @@
## [1.0.1](https://src.mfgames.com/fedran-sources/a-poisoned-gift/compare/v1.0.0...v1.0.1) (2022-10-15)
### Bug Fixes
* updating build ([e244ab6](https://src.mfgames.com/fedran-sources/a-poisoned-gift/commit/e244ab6592176c911310864d05cfbc2433fc046b))
# 1.0.0 (2022-10-13) # 1.0.0 (2022-10-13)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "a-poisoned-gift", "name": "a-poisoned-gift",
"version": "1.0.0", "version": "1.0.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "a-poisoned-gift", "name": "a-poisoned-gift",
"version": "1.0.0", "version": "1.0.1",
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"dependencies": { "dependencies": {
"@fedran/writing-hyphen": "^1.0.0", "@fedran/writing-hyphen": "^1.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "a-poisoned-gift", "name": "a-poisoned-gift",
"version": "1.0.0", "version": "1.0.1",
"private": true, "private": true,
"description": "\"A Poisoned Gift\" is a flash by D. Moonfire.", "description": "\"A Poisoned Gift\" is a flash by D. Moonfire.",
"author": { "author": {

View file

@ -1,11 +1,11 @@
{ {
"metadata": { "metadata": {
"title": "{{edition.fedran.source.title}}", "title": "A Poisoned Gift",
"author": "D. Moonfire", "author": "D. Moonfire",
"language": "en", "language": "en",
"theme": "@fedran/writing-theme", "theme": "@fedran/writing-theme",
"outputDirectory": ".", "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": { "markdown": {
"extensions": [ "extensions": [
{ {

View file

@ -10,9 +10,14 @@ cd $(dirname $(dirname $0))
log "setting up project" log "setting up project"
./scripts/setup.sh || exit 1 ./scripts/setup.sh || exit 1
# Clean up the old files.
log "cleaning old builds"
rm -f dmoonfire*
# Build the project outputs. # Build the project outputs.
log "building PDF" log "building PDF"
npm run build:pdf || exit 1 ./node_modules/.bin/mfgames-writing-format build pdf || exit 1
log "building EPUB" log "building EPUB"
npm run build:epub || exit 1 ./node_modules/.bin/mfgames-writing-format build epub || exit 1
epubcheck dmoonfire*.epub || exit 1