diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-01-21 11:33:33 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-01-21 11:33:33 +0100 |
commit | be2da0fab1c467f84c33517950d67da3c9b5768d (patch) | |
tree | d5840c8c1cb97bd8f8a8a192c545ffb4577a8e3b /lib/generator.js | |
parent | 0da50819d663b94bb85ffcaae4231a635921431c (diff) | |
download | gitbook-be2da0fab1c467f84c33517950d67da3c9b5768d.zip gitbook-be2da0fab1c467f84c33517950d67da3c9b5768d.tar.gz gitbook-be2da0fab1c467f84c33517950d67da3c9b5768d.tar.bz2 |
Fix json template preparation
Diffstat (limited to 'lib/generator.js')
-rw-r--r-- | lib/generator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/generator.js b/lib/generator.js index fa6b8b0..d8fd38a 100644 --- a/lib/generator.js +++ b/lib/generator.js @@ -22,13 +22,13 @@ BaseGenerator.prototype.callHook = function(name, data) { }; // Prepare the genertor -BaseGenerator.prototype.load = function() { +BaseGenerator.prototype.prepare = function() { return this.preparePlugins(); }; BaseGenerator.prototype.preparePlugins = function() { var that = this; - + return Q(); }; // Write a parsed file to the output |