diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-06 13:47:29 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-06 13:47:29 -0700 |
commit | abce29866e359e78fd1d18b70e7a1291b6200cb5 (patch) | |
tree | a972302b7b9fc4d1bce8649237cd95e362ec6682 /lib/generate/index.js | |
parent | 014b2f9c6902235216fee390078ece0049344c0b (diff) | |
download | gitbook-abce29866e359e78fd1d18b70e7a1291b6200cb5.zip gitbook-abce29866e359e78fd1d18b70e7a1291b6200cb5.tar.gz gitbook-abce29866e359e78fd1d18b70e7a1291b6200cb5.tar.bz2 |
Return options after generate
Diffstat (limited to 'lib/generate/index.js')
-rw-r--r-- | lib/generate/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/generate/index.js b/lib/generate/index.js index 5f44633..b0456f7 100644 --- a/lib/generate/index.js +++ b/lib/generate/index.js @@ -134,6 +134,11 @@ var generate = function(options) { }); } }) + + // Return all options + .then(function() { + return options; + }); }; module.exports = { |