summaryrefslogtreecommitdiffstats
path: root/lib/plugins/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugins/index.js')
-rw-r--r--lib/plugins/index.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/plugins/index.js b/lib/plugins/index.js
index ac595ac..14a323a 100644
--- a/lib/plugins/index.js
+++ b/lib/plugins/index.js
@@ -2,7 +2,7 @@ var _ = require('lodash');
var Promise = require('../utils/promise');
var BookPlugin = require('./plugin');
-
+var registry = require('./registry');
/*
PluginsManager is an interface to work with multiple plugins at once:
@@ -13,6 +13,7 @@ PluginsManager is an interface to work with multiple plugins at once:
function PluginsManager(output) {
this.output = output;
this.book = output.book;
+ this.log = this.book.log;
this.plugins = [];
}
@@ -62,4 +63,9 @@ PluginsManager.prototype._setup = function(plugin) {
};
+// Install all plugins for the book
+PluginsManager.prototype.install = function() {
+
+};
+
module.exports = PluginsManager;