Skip to content

Commit 24bcecf

Browse files
committed
Merge pull request #331 from theaqua/feature/311
Gitbook for static documentation website (#311)
2 parents 1e898af + c74a877 commit 24bcecf

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

SUMMARY.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Summary
2+
* Basics
3+
* [Core Ideas](docs/Basics/Core Ideas.md)
4+
* [Getting Started](docs/Basics/Getting Started.md)
5+
* [Migrating to Redux](docs/Basics/Migrating to Redux.md)
6+
* [Relation to Other Libraries](docs/Basics/Relation to Other Libraries.md)
7+
* [The Redux Flow](docs/Basics/The Redux Flow.md)
8+
* [Userland and Core](docs/Basics/Userland and Core.md)
9+
* [Why Redux](docs/Basics/Why Redux.md)
10+
* Recipes
11+
* [Anti-Patterns](docs/Recipes/Anti-Patterns.md)
12+
* [Asynchronous Data Fetching](docs/Recipes/Asynchronous Data Fetching.md)
13+
* [Authentication](docs/Recipes/Authentication.md)
14+
* [Code Splitting](docs/Recipes/Code Splitting.md)
15+
* [Connecting UI](docs/Recipes/Connecting UI.md)
16+
* [Derived Data](docs/Recipes/Derived Data.md)
17+
* [Developer Tools](docs/Recipes/Developer Tools.md)
18+
* [Expressing Dependencies](docs/Recipes/Expressing Dependencies.md)
19+
* [Hot Reloading](docs/Recipes/Hot Reloading.md)
20+
* [Immutability](docs/Recipes/Immutability.md)
21+
* [Logging](docs/Recipes/Logging.md)
22+
* [Middleware](docs/Recipes/Middleware.md)
23+
* [Optimistic Updates](docs/Recipes/Optimistic Updates.md)
24+
* [Optimizing Performance](docs/Recipes/Optimizing Performance.md)
25+
* [Pagination](docs/Recipes/Pagination.md)
26+
* [React Native](docs/Recipes/React Native.md)
27+
* [React Router](docs/Recipes/React Router.md)
28+
* [React](docs/Recipes/React.md)
29+
* [Recording and Replaying](docs/Recipes/Recording and Replaying.md)
30+
* [Relay and GraphQL](docs/Recipes/Relay and GraphQL.md)
31+
* [Side Effects](docs/Recipes/Side Effects.md)
32+
* [Stores Enhancers](docs/Recipes/Stores Enhancers.md)
33+
* [Thunks, Promises and Observables](docs/Recipes/Thunks, Promises and Observables.md)
34+
* [Time Travel](docs/Recipes/Time Travel.md)
35+
* [Undo and Redo](docs/Recipes/Undo and Redo.md)
36+
* [Unit Testing](docs/Recipes/Unit Testing.md)
37+
* [Universal Apps](docs/Recipes/Universal Apps.md)
38+
* Reference
39+
* [API](docs/Reference/API.md)
40+
* [Glossary](docs/Reference/Glossary.md)
41+
* Resources
42+
* [Articles](docs/Resources/Articles.md)
43+
* [Examples](docs/Resources/Examples.md)
44+
* [Getting Help](docs/Resources/Getting Help.md)
45+
* [Utilities](docs/Resources/Utilities.md)

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
"lint": "eslint src test examples",
99
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
1010
"test:watch": "npm test -- --watch",
11-
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
11+
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
1212
"check": "npm run lint && npm run test",
1313
"build:lib": "babel src --out-dir lib",
1414
"build:umd": "webpack src/index.js dist/redux.js && NODE_ENV=production webpack src/index.js dist/redux.min.js",
1515
"build": "npm run build:lib && npm run build:umd",
1616
"preversion": "npm run clean && npm run check",
1717
"version": "npm run build",
1818
"postversion": "git push && git push --tags && npm run clean",
19-
"prepublish": "npm run clean && npm run build"
19+
"prepublish": "npm run clean && npm run build",
20+
"docs:build": "$(npm bin)/gitbook build"
2021
},
2122
"repository": {
2223
"type": "git",
@@ -50,6 +51,7 @@
5051
"eslint-config-airbnb": "0.0.6",
5152
"eslint-plugin-react": "^2.3.0",
5253
"expect": "^1.6.0",
54+
"gitbook-cli": "^0.3.4",
5355
"isparta": "^3.0.3",
5456
"mocha": "^2.2.5",
5557
"rimraf": "^2.3.4",

0 commit comments

Comments
 (0)