diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-01-19 16:53:20 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-01-19 16:53:20 +0100 |
commit | ad233c0d8e242957288a9edb3a2f358e21a45a7d (patch) | |
tree | 4e1a910a23f9fce5807f5bfbee64f2b8bd468543 /lib/index.js | |
parent | 41c3db4c049c98f1a6fc5af9068757306ef26214 (diff) | |
download | gitbook-ad233c0d8e242957288a9edb3a2f358e21a45a7d.zip gitbook-ad233c0d8e242957288a9edb3a2f358e21a45a7d.tar.gz gitbook-ad233c0d8e242957288a9edb3a2f358e21a45a7d.tar.bz2 |
Improve plugins installation to prevent installation of default plugins
Diffstat (limited to 'lib/index.js')
-rw-r--r-- | lib/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/index.js b/lib/index.js index a71d325..5f8648e 100644 --- a/lib/index.js +++ b/lib/index.js @@ -36,7 +36,9 @@ module.exports = { return book.config.load() .then(function() { - return Plugin.install(input, book.options.plugins); + return book.config.installPlugins({ + log: true + }); }); } } |