Very basic gitbook configuration added

This commit is contained in:
Sameer Rahmani 2017-09-14 16:33:02 +01:00
parent b7be7864a4
commit 47333f7af3
4 changed files with 2426 additions and 0 deletions

6
.gitignore vendored
View File

@ -21,3 +21,9 @@ misc/
.flooignore
node_modules/
examples/todomvc/.idea/
docs/build/_book/
docs/build/index.html
*.epub
*.pdf
*.mobi
*~

10
docs/build/book.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"title": "re-frame",
"description": "Documentation of re-frame framework",
"language": "en",
"root": "../",
"structure": {
"summary": "README.md"
}
}

17
package.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "re-frame-docs",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Day8/re-frame.git",
"scripts": {
"serve": "gitbook serve",
"epub": "gitbook epub docs/build/",
"mobi": "gitbook mobi docs/build/",
"pdf": "gitbook pdf docs/build/",
"html": "gitbook build docs/build/",
"build": "yarn html && yarn pdf && yarn mobi && yarn epub"
},
"dependencies": {
"gitbook-cli": "^2.3.2"
}
}

2393
yarn.lock Normal file

File diff suppressed because it is too large Load Diff