File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,10 @@ where
146
146
// Add the book.toml file to the watcher if it exists
147
147
let _ = watcher. watch ( book. root . join ( "book.toml" ) , NonRecursive ) ;
148
148
149
+ for dir in & book. config . build . extra_watch_dirs {
150
+ let _ = watcher. watch ( dir, Recursive ) ;
151
+ }
152
+
149
153
info ! ( "Listening for changes..." ) ;
150
154
151
155
loop {
Original file line number Diff line number Diff line change @@ -437,6 +437,8 @@ pub struct BuildConfig {
437
437
/// Should the default preprocessors always be used when they are
438
438
/// compatible with the renderer?
439
439
pub use_default_preprocessors : bool ,
440
+ /// Extra directories to trigger rebuild when watching/serving
441
+ pub extra_watch_dirs : Vec < PathBuf > ,
440
442
}
441
443
442
444
impl Default for BuildConfig {
@@ -445,6 +447,7 @@ impl Default for BuildConfig {
445
447
build_dir : PathBuf :: from ( "book" ) ,
446
448
create_missing : true ,
447
449
use_default_preprocessors : true ,
450
+ extra_watch_dirs : Vec :: new ( ) ,
448
451
}
449
452
}
450
453
}
You can’t perform that action at this time.
0 commit comments