diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gitbook.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/gitbook.js b/bin/gitbook.js index ca68142..84f5a8f 100755 --- a/bin/gitbook.js +++ b/bin/gitbook.js @@ -45,7 +45,9 @@ build.command(prog.command('serve [source_dir]')) server.stop() .then(function() { - return build.folder(dir, options); + return build.folder(dir, _.extend(options || {}, { + defaultsPlugins: ["livereload"] + })); }) .then(function(_options) { console.log(); |