diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-28 11:15:51 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-28 11:15:51 +0200 |
commit | 4763f1342c1b63d2f43ae2f5060b93d4c09271fd (patch) | |
tree | 5ef83232fa187532efe01f59ce3d794476d56b60 /lib/index.js | |
parent | 9413e53b001c3a7ee9d07a362a7bdd69df4d4c1e (diff) | |
download | gitbook-4763f1342c1b63d2f43ae2f5060b93d4c09271fd.zip gitbook-4763f1342c1b63d2f43ae2f5060b93d4c09271fd.tar.gz gitbook-4763f1342c1b63d2f43ae2f5060b93d4c09271fd.tar.bz2 |
Add base modifiers for summary as SummaryModifier
Diffstat (limited to 'lib/index.js')
-rw-r--r-- | lib/index.js | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/index.js b/lib/index.js index a772efe..ffaea25 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,11 +1,10 @@ -var Book = require('./models/book'); -var FS = require('./models/fs'); -var Parse = require('./parse'); +var extend = require('extend'); + +var common = require('./browser'); +var Output = require('./output'); var cli = require('./cli'); -module.exports = { - Book: Book, - Parse: Parse, - FS: FS, +module.exports = extend({ + Output: Output, commands: cli.commands -}; +}, common); |