Compare commits

...

5 commits
v1.0.0 ... main

Author SHA1 Message Date
D. Moonfire 781d855c7c chore: updating project setup 2022-10-15 13:48:49 -05:00
semantic-release-bot 378881e1aa chore(release): v1.0.2 [skip ci]
## [1.0.2](https://src.mfgames.com/fedran-sources/a-gut-feeling/compare/v1.0.1...v1.0.2) (2022-10-15)

### Bug Fixes

* updating build ([b406b3d](b406b3db6c))
2022-10-15 12:36:40 +00:00
D. Moonfire b406b3db6c fix: updating build 2022-10-15 07:29:34 -05:00
semantic-release-bot 68efbe33d4 chore(release): v1.0.1 [skip ci]
## [1.0.1](https://src.mfgames.com/fedran-sources/a-gut-feeling/compare/v1.0.0...v1.0.1) (2022-10-15)

### Bug Fixes

* updating build ([0a4498b](0a4498b7ed))
2022-10-15 05:23:28 +00:00
D. Moonfire 0a4498b7ed fix: updating build 2022-10-14 23:52:54 -05:00
6 changed files with 2619 additions and 9 deletions

View file

@ -3,6 +3,8 @@ clone:
image: woodpeckerci/plugin-git
settings:
tags: true
when:
event: [push, pull_request]
pipeline:
build:
@ -17,8 +19,7 @@ pipeline:
- s3_access_key_id
- s3_secret_access_key
when:
event: [push, pull_request, tag]
tag: v*
event: [push, pull_request]
release:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest

View file

@ -1,3 +1,17 @@
## [1.0.2](https://src.mfgames.com/fedran-sources/a-gut-feeling/compare/v1.0.1...v1.0.2) (2022-10-15)
### Bug Fixes
* updating build ([b406b3d](https://src.mfgames.com/fedran-sources/a-gut-feeling/commit/b406b3db6c90bb89b3b0f30c3b892adcfbaac2db))
## [1.0.1](https://src.mfgames.com/fedran-sources/a-gut-feeling/compare/v1.0.0...v1.0.1) (2022-10-15)
### Bug Fixes
* updating build ([0a4498b](https://src.mfgames.com/fedran-sources/a-gut-feeling/commit/0a4498b7edf0c44d59dfa3b9ba5fffe0953bdd1f))
# 1.0.0 (2022-10-13)

2594
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "a-gut-feeling",
"version": "1.0.0",
"version": "1.0.2",
"private": true,
"description": "\"A Gut Feeling\" is a story by D. Moonfire.",
"author": {

View file

@ -1,11 +1,11 @@
{
"metadata": {
"title": "{{edition.fedran.source.title}}",
"title": "A Gut Feeling",
"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