diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-29 10:17:16 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-29 10:17:16 +0200 |
commit | 93e701f4712ab9e476061f8f81fb03eda1c2af2a (patch) | |
tree | 8e07db9dcb7b44d07d29f2d0a4cd8eccb564302e /lib/index.js | |
parent | 68b9bf7e38867eed8763854a731f15959aaf65b5 (diff) | |
download | gitbook-93e701f4712ab9e476061f8f81fb03eda1c2af2a.zip gitbook-93e701f4712ab9e476061f8f81fb03eda1c2af2a.tar.gz gitbook-93e701f4712ab9e476061f8f81fb03eda1c2af2a.tar.bz2 |
Complete deprecated page.progress and this.navigation
Diffstat (limited to 'lib/index.js')
-rw-r--r-- | lib/index.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/index.js b/lib/index.js index 0a76e08..1f683e2 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,13 +1,10 @@ var extend = require('extend'); var common = require('./browser'); -var Output = require('./output'); -var cli = require('./cli'); -var initBook = require('./initBook'); module.exports = extend({ - initBook: initBook, + initBook: require('./init'), createNodeFS: require('./fs/node'), - Output: Output, - commands: cli.commands + Output: require('./output'), + commands: require('./cli') }, common); |