build: updating publication packages
This commit is contained in:
parent
7fff774726
commit
c95ac57946
5 changed files with 9981 additions and 887 deletions
39
.gitignore
vendored
39
.gitignore
vendored
|
@ -1,36 +1,11 @@
|
||||||
*~
|
*~
|
||||||
*.pdf
|
|
||||||
*.mobi
|
|
||||||
*.epub
|
|
||||||
*.doc
|
|
||||||
*.rtf
|
|
||||||
*.docx
|
|
||||||
*.bak
|
|
||||||
*.fo
|
|
||||||
|
|
||||||
book*markdown
|
|
||||||
dmoonfire*markdown
|
|
||||||
dmoonfire*yaml
|
|
||||||
|
|
||||||
\#*
|
|
||||||
.#*
|
|
||||||
|
|
||||||
penflip
|
|
||||||
build/
|
build/
|
||||||
.backup/
|
tmp/
|
||||||
t/
|
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
cover-??.png
|
# Output
|
||||||
cover-??-*.png
|
*-*.*.*.epub
|
||||||
|
*-*.*.*.pdf
|
||||||
# XML Files that are generated or copied around.
|
*-*.*.*.mobi
|
||||||
about.xml
|
*-*.*.*.html
|
||||||
curiouscabbit.xml
|
*-*.*.*.docx
|
||||||
|
|
||||||
# Other generated files
|
|
||||||
abbrev.el
|
|
||||||
latex.out
|
|
||||||
|
|
||||||
# Covers
|
|
||||||
backmatter/*.jpg
|
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
image: dmoonfire/mfgames-writing-js:1.1.0
|
image: dmoonfire/mfgames-writing-js:1.1.1
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- review
|
|
||||||
- publish
|
- publish
|
||||||
|
|
||||||
review:
|
publish:
|
||||||
stage: review
|
stage: publish
|
||||||
only:
|
|
||||||
- master
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
script:
|
script:
|
||||||
# Install the basic requirements including the free fonts.
|
# Install the basic requirements including the free fonts.
|
||||||
- npm ci
|
- npm ci
|
||||||
|
|
||||||
|
# Verify that the commits are good.
|
||||||
|
- npx commitlint --from=master to=CI_BUILD_REF_NAME
|
||||||
|
|
||||||
# Corda is a non-free font that we use for the books. It was
|
# Corda is a non-free font that we use for the books. It was
|
||||||
# picked before Source Serif Pro was created and will continue to
|
# picked before Source Serif Pro was created and will continue to
|
||||||
# be used until SSP can handle proper italics. To get around this,
|
# be used until SSP can handle proper italics. To get around this,
|
||||||
|
@ -25,21 +25,17 @@ review:
|
||||||
- mv *.otf ~/.fonts/
|
- mv *.otf ~/.fonts/
|
||||||
- fc-cache -rf
|
- fc-cache -rf
|
||||||
|
|
||||||
# We need the covers and the previous version so we can generate the
|
# We need the covers for generation.
|
||||||
# "previously" chapter.
|
|
||||||
- mkdir -p build/repos
|
- mkdir -p build/repos
|
||||||
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/fedran-covers.git build/repos/fedran-covers
|
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/fedran-covers.git build/repos/fedran-covers
|
||||||
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/sand-and-blood.git build/repos/sand-and-blood
|
|
||||||
- 'echo "---" > build/previously.markdown'
|
|
||||||
- 'echo "title: Previously" >> build/previously.markdown'
|
|
||||||
- 'echo "---" >> build/previously.markdown'
|
|
||||||
- 'cat build/repos/sand-and-blood/spoilers/plot.markdown >> build/previously.markdown'
|
|
||||||
|
|
||||||
# Build the files.
|
# Trigger the release if needed.
|
||||||
|
- npx semantic-release
|
||||||
|
|
||||||
|
# Build the files.
|
||||||
- npm run build
|
- npm run build
|
||||||
- kindlegen *.epub
|
|
||||||
|
|
||||||
# Trigger the website to rebuild.
|
# Trigger the Fedran website to rebuild.
|
||||||
- "curl -X POST -F token=$fedranAccessKey -F ref=master https://gitlab.com/api/v4/projects/4027285/trigger/pipeline"
|
- "curl -X POST -F token=$fedranAccessKey -F ref=master https://gitlab.com/api/v4/projects/4027285/trigger/pipeline"
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
|
@ -48,16 +44,5 @@ review:
|
||||||
- "*.pdf"
|
- "*.pdf"
|
||||||
- "*.epub"
|
- "*.epub"
|
||||||
- "*.mobi"
|
- "*.mobi"
|
||||||
|
- "*.docx"
|
||||||
publish:
|
- "*.html"
|
||||||
stage: publish
|
|
||||||
when: manual
|
|
||||||
script:
|
|
||||||
- echo Published
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- "*.pdf"
|
|
||||||
- "*.epub"
|
|
||||||
- "*.mobi"
|
|
||||||
dependencies:
|
|
||||||
- review
|
|
||||||
|
|
10647
package-lock.json
generated
10647
package-lock.json
generated
File diff suppressed because it is too large
Load diff
59
package.json
59
package.json
|
@ -12,14 +12,59 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:pdf": "mfgames-writing-format build pdf",
|
"build:pdf": "mfgames-writing-format build pdf",
|
||||||
"build:epub": "mfgames-writing-format build epub",
|
"build:epub": "mfgames-writing-format build epub",
|
||||||
"build": "npm run build:pdf && npm run build:epub"
|
"build": "npm run build:epub && npm run build:mobi && npm run build:pdf && npm run build:html && npm run build:docx",
|
||||||
|
"build:html": "mfgames-writing-format build html",
|
||||||
|
"build:docx": "sed 's@­@@g' < dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.html | pandoc -f html -t docx -o dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.docx",
|
||||||
|
"build:mobi": "kindlegen dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.epub",
|
||||||
|
"commitmsg": "commitlint -E GIT_PARAMS"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fedran-hyphen": "^0.2.0",
|
"@fedran/writing-hyphen": "^1.0.0",
|
||||||
"fedran-theme": "^1.0.1",
|
"@fedran/writing-theme": "^1.2.5",
|
||||||
"mfgames-writing-epub": "^1.1.1",
|
"@mfgames-writing/epub2": "^1.1.3",
|
||||||
"mfgames-writing-format": "^1.0.1",
|
"@mfgames-writing/format": "^2.0.0",
|
||||||
"mfgames-writing-hyphen": "^0.4.2",
|
"@mfgames-writing/guillemet": "^1.0.0",
|
||||||
"mfgames-writing-weasyprint": "^3.0.1"
|
"@mfgames-writing/html": "^0.1.1",
|
||||||
|
"@mfgames-writing/hyphen": "^0.4.3",
|
||||||
|
"@mfgames-writing/weasyprint": "^3.0.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@commitlint/cli": "^7.0.0",
|
||||||
|
"@commitlint/config-conventional": "^7.0.1",
|
||||||
|
"@semantic-release/changelog": "^3.0.0",
|
||||||
|
"@semantic-release/git": "^7.0.2",
|
||||||
|
"commitizen": "^2.10.1",
|
||||||
|
"cz-conventional-changelog": "^2.1.0",
|
||||||
|
"husky": "^0.14.3",
|
||||||
|
"semantic-release": "^15.9.9"
|
||||||
|
},
|
||||||
|
"private": true,
|
||||||
|
"release": {
|
||||||
|
"branch": "master",
|
||||||
|
"message": "chore(release): v${nextRelease.version}\n\n${nextRelease.notes}",
|
||||||
|
"verifyConditions": [
|
||||||
|
"@semantic-release/changelog",
|
||||||
|
"@semantic-release/git"
|
||||||
|
],
|
||||||
|
"analyzeCommits": [
|
||||||
|
"@semantic-release/commit-analyzer"
|
||||||
|
],
|
||||||
|
"prepare": [
|
||||||
|
"@semantic-release/changelog",
|
||||||
|
"@semantic-release/git"
|
||||||
|
],
|
||||||
|
"publish": [],
|
||||||
|
"success": [],
|
||||||
|
"fail": []
|
||||||
|
},
|
||||||
|
"commitlint": {
|
||||||
|
"extends": [
|
||||||
|
"@commitlint/config-conventional"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"commitizen": {
|
||||||
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,15 +17,15 @@ metadata:
|
||||||
- Drama
|
- Drama
|
||||||
language: en
|
language: en
|
||||||
date: 2015-05-18
|
date: 2015-05-18
|
||||||
theme: fedran-theme
|
theme: "@fedran/writing-theme"
|
||||||
outputDirectory: .
|
outputDirectory: .
|
||||||
outputFilename: dmoonfire-100-01-sand-and-ash-{{edition.version}}.{{edition.editionName}}
|
outputFilename: dmoonfire-0100-01-sand-and-ash-{{edition.version}}.{{edition.editionName}}
|
||||||
|
|
||||||
editions:
|
editions:
|
||||||
epub:
|
epub:
|
||||||
format: mfgames-writing-epub
|
format: "@mfgames-writing/epub2"
|
||||||
pdf:
|
pdf:
|
||||||
format: mfgames-writing-weasyprint
|
format: "@mfgames-writing/weasyprint"
|
||||||
isbn: 978-1-940509-16-7
|
isbn: 978-1-940509-16-7
|
||||||
images:
|
images:
|
||||||
grayscale: true
|
grayscale: true
|
||||||
|
@ -74,8 +74,8 @@ contents:
|
||||||
start: true
|
start: true
|
||||||
page: 1
|
page: 1
|
||||||
pipeline: &pipelines
|
pipeline: &pipelines
|
||||||
- module: ../../fedran-hyphen/lib/fedran-hyphen
|
- module: "@fedran/writing-hyphen"
|
||||||
- module: mfgames-writing-hyphen
|
- module: "@mfgames-writing/hyphen"
|
||||||
- element: appendix
|
- element: appendix
|
||||||
source: backmatter/about.markdown
|
source: backmatter/about.markdown
|
||||||
- element: appendix
|
- element: appendix
|
||||||
|
|
Loading…
Reference in a new issue