summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/output/base.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/output/base.js b/lib/output/base.js
index f268008..025e850 100644
--- a/lib/output/base.js
+++ b/lib/output/base.js
@@ -69,6 +69,9 @@ Output.prototype.generate = function() {
// Initialize the generation
.then(function() {
+ return that.plugins.hook('init');
+ })
+ .then(function() {
that.log.info.ln('preparing the generation');
return that.prepare();
})