diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-29 15:27:53 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-29 15:27:53 +0200 |
commit | 730298110cea46e0c861e65d0c2c3fd82c0edd18 (patch) | |
tree | 60c7992a9c631ad5e713cb2cbea376aceea23375 /lib/cli/index.js | |
parent | 07a5daefb025868ecf41054713a18d50e01511c0 (diff) | |
download | gitbook-730298110cea46e0c861e65d0c2c3fd82c0edd18.zip gitbook-730298110cea46e0c861e65d0c2c3fd82c0edd18.tar.gz gitbook-730298110cea46e0c861e65d0c2c3fd82c0edd18.tar.bz2 |
Add ebook commands pdf/mobi/epub
Diffstat (limited to 'lib/cli/index.js')
-rw-r--r-- | lib/cli/index.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/cli/index.js b/lib/cli/index.js index bb65578..f1fca1d 100644 --- a/lib/cli/index.js +++ b/lib/cli/index.js @@ -1,8 +1,12 @@ +var buildEbook = require('./buildEbook'); module.exports = [ require('./build'), require('./serve'), require('./install'), require('./parse'), - require('./init') + require('./init'), + buildEbook('pdf'), + buildEbook('epub'), + buildEbook('mobi') ]; |