summaryrefslogtreecommitdiffstats
path: root/lib/cli/index.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-04-28 21:25:58 +0200
committerSamy Pesse <samypesse@gmail.com>2016-04-28 21:25:58 +0200
commit826f90505c1a70ad2a8cf3715bac6d5efaeba22c (patch)
treea35600d555ff0268f6eb2fc1bd9c44c06438eb27 /lib/cli/index.js
parent7ae36f16c84238340dd6b39a75423f5e95f27bbc (diff)
downloadgitbook-826f90505c1a70ad2a8cf3715bac6d5efaeba22c.zip
gitbook-826f90505c1a70ad2a8cf3715bac6d5efaeba22c.tar.gz
gitbook-826f90505c1a70ad2a8cf3715bac6d5efaeba22c.tar.bz2
Add command "init"
Diffstat (limited to 'lib/cli/index.js')
-rw-r--r--lib/cli/index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/cli/index.js b/lib/cli/index.js
index b93b7b1..4afb090 100644
--- a/lib/cli/index.js
+++ b/lib/cli/index.js
@@ -1,9 +1,10 @@
module.exports = {
commands: [
- require('./parse'),
require('./build'),
require('./serve'),
- require('./install')
+ require('./install'),
+ require('./parse'),
+ require('./init')
]
};