diff options
author | David Graf <davidagraf@gmail.com> | 2014-05-15 08:07:24 +0200 |
---|---|---|
committer | David Graf <davidagraf@gmail.com> | 2014-05-15 08:07:24 +0200 |
commit | 0b0ac46e342d92959099e78c5cf1a8b26d309dbd (patch) | |
tree | 792a0bd158d61d404488811606c0e3a42f0f6c3d /bin/gitbook.js | |
parent | 622bbcb8ea24238cbb34bed2cbd7105f6d4d7351 (diff) | |
download | gitbook-0b0ac46e342d92959099e78c5cf1a8b26d309dbd.zip gitbook-0b0ac46e342d92959099e78c5cf1a8b26d309dbd.tar.gz gitbook-0b0ac46e342d92959099e78c5cf1a8b26d309dbd.tar.bz2 |
Introducing option to disable cache manifest generation
Diffstat (limited to 'bin/gitbook.js')
-rwxr-xr-x | bin/gitbook.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/gitbook.js b/bin/gitbook.js index 88083b9..1fd8797 100755 --- a/bin/gitbook.js +++ b/bin/gitbook.js @@ -26,6 +26,7 @@ build.command(prog.command('serve [source_dir]')) .description('Build then serve a gitbook from a directory') .option('-p, --port <port>', 'Port for server to listen on', 4000) .option('--no-watch', 'Disable restart with file watching') +.option('--no-cache', 'Disable cache manifest generation') .action(function(dir, options) { var server = new Server(); |