Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
c95163476b | ||
f4b6951856 |
5 changed files with 19 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
|||
## [1.0.1](https://src.mfgames.com/fedran-sources/a-friendly-game/compare/v1.0.0...v1.0.1) (2022-10-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* updating build ([f4b6951](https://src.mfgames.com/fedran-sources/a-friendly-game/commit/f4b6951856026ff9fdc87e1939669502357d1692))
|
||||
|
||||
# 1.0.0 (2022-10-13)
|
||||
|
||||
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "a-friendly-game",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "a-friendly-game",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"license": "CC-BY-NC-SA-4.0",
|
||||
"dependencies": {
|
||||
"@fedran/writing-hyphen": "^1.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "a-friendly-game",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"description": "\"A Friendly Game\" is a flash by D. Moonfire.",
|
||||
"author": {
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"metadata": {
|
||||
"title": "{{edition.fedran.source.title}}",
|
||||
"title": "A Friendly Game",
|
||||
"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