Compare commits

...

2 commits

Author SHA1 Message Date
semantic-release-bot cb69060d66 chore(release): v1.0.4 [skip ci]
## [1.0.4](https://src.mfgames.com/fedran-sources/i-will-hurt-you-only-once/compare/v1.0.3...v1.0.4) (2022-10-15)

### Bug Fixes

* updating build ([8d6367d](8d6367df51))
2022-10-15 13:43:47 +00:00
D. Moonfire 8d6367df51 fix: updating build 2022-10-15 07:33:13 -05:00
5 changed files with 19 additions and 7 deletions

View file

@ -1,3 +1,10 @@
## [1.0.4](https://src.mfgames.com/fedran-sources/i-will-hurt-you-only-once/compare/v1.0.3...v1.0.4) (2022-10-15)
### Bug Fixes
* updating build ([8d6367d](https://src.mfgames.com/fedran-sources/i-will-hurt-you-only-once/commit/8d6367df5105ea85a1e01c4e6f76978dd4c0d09b))
## [1.0.3](https://src.mfgames.com/fedran-sources/i-will-hurt-you-only-once/compare/v1.0.2...v1.0.3) (2022-10-13)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "i-will-hurt-you-only-once",
"version": "1.0.3",
"version": "1.0.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "i-will-hurt-you-only-once",
"version": "1.0.3",
"version": "1.0.4",
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
"@fedran/writing-hyphen": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "i-will-hurt-you-only-once",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"description": "\"I Will Hurt You Only Once\" is a story by D. Moonfire.",
"author": {

View file

@ -1,11 +1,11 @@
{
"metadata": {
"title": "{{edition.fedran.source.title}}",
"title": "I Will Hurt You Only Once",
"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": [
{

View file

@ -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