diff options
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 |