diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-25 16:23:13 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-25 16:23:13 +0200 |
commit | 83d8c16853a056ef34360150a805b2a7ac52dd4f (patch) | |
tree | 740c72fc044d30750b0a127250bd55d6f6dbdb68 /bin/build.js | |
parent | 47e9506397afb37fea8f164e1fc41b625fdcd1bc (diff) | |
download | gitbook-83d8c16853a056ef34360150a805b2a7ac52dd4f.zip gitbook-83d8c16853a056ef34360150a805b2a7ac52dd4f.tar.gz gitbook-83d8c16853a056ef34360150a805b2a7ac52dd4f.tar.bz2 |
Add file watcher in "gitbook serve" command (Fix #47, #89, #140)
Diffstat (limited to 'bin/build.js')
-rw-r--r-- | bin/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build.js b/bin/build.js index 6f90e1d..37415bd 100644 --- a/bin/build.js +++ b/bin/build.js @@ -44,7 +44,7 @@ var makeBuildFunc = function(converter) { }) .then(function(repoID) { return converter( - _.extend(options || {}, { + _.extend({}, options || {}, { input: dir, output: outputDir, title: options.title, |