-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(appendix-d): Une chaîne de publication basée sur Node.js
- Loading branch information
Thomas Parisot
committed
Jun 9, 2019
1 parent
a0f0317
commit ecf266e
Showing
4 changed files
with
79 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
:appendix-number: D | ||
:chapterId: appendix-d | ||
:sectnums: | ||
:nodeCurrentVersion: v12 | ||
:npmCurrentVersion: v6 | ||
:revdate: {docdate} | ||
:sourceDir: ./examples | ||
:imagesdir: {indir} | ||
ifdef::env[] | ||
:imagesdir: . | ||
endif::[] | ||
|
||
[appendix] | ||
= Une chaîne de publication basée sur Node.js | ||
|
||
include::../docs/web-header.adoc[] | ||
|
||
|
||
== Processus de publication | ||
|
||
Expliquer le fonctionnement entre l'auteurice, la maison d'édition et les librairies. | ||
|
||
== Une chaîne de publication pur texte | ||
|
||
|
||
Cf. principe publié dans Sciences du Design (https://www.cairn.info/revue-sciences-du-design-2018-2.htm), | ||
en libre accès sur http://antoinentl.gitlab.io/readme.book/ | ||
et dont le code source est sur http://gitlab.com/antoinentl/readme.book. | ||
|
||
=== Écrire : Asciidoc | ||
|
||
Format | ||
|
||
=== Outiller : Node.js | ||
|
||
Pour le convertisseur Asciidoc -> OpenDocument | ||
Pour le convertisseur Asciidoc -> HTML | ||
Pour la publication du module sur le registre npm | ||
|
||
=== Versionner : Git | ||
|
||
Pour garder l'historique | ||
|
||
=== Partager : GitHub | ||
|
||
Pour l'échange de l'historique et l'intégration des corrections extérieures | ||
(à un moment, aussi le lieu d'échange avec une éditrice) | ||
|
||
=== Automatiser : Travis CI | ||
|
||
Pour l'automatisation de la production des formats détachables et le module npm (cf. Annexe C). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "nodebook.appendix-d", | ||
"private": true, | ||
"version": "2.0.0", | ||
"description": "", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"engines": { | ||
"node": "^12.0.0" | ||
}, | ||
"author": "Thomas Parisot (https://oncletom.io)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/oncletom/nodebook/issues" | ||
}, | ||
"dependencies": {} | ||
} |