Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(cli): dev server reload on .DS_Store nonsense

+14
+7
.sampo/changesets/wily-runesinger-joukahainen.md
··· 1 + --- 2 + packages: 3 + - maudit-cli 4 + release: patch 5 + --- 6 + 7 + Fixed dev server reloading for no apparent reason on macOS
+7
crates/maudit-cli/src/dev/filterer.rs
··· 24 24 } 25 25 26 26 if let Tag::Path { path, file_type: _ } = tag { 27 + if let Some(file_name) = path.file_name() { 28 + if file_name == ".DS_Store" { 29 + result = false; 30 + break; 31 + } 32 + } 33 + 27 34 // TODO: Customizable dist path 28 35 if path.ancestors().any(|p| p.ends_with("dist")) { 29 36 result = false;