From 7466ea38bef430bfad4ee2647342a794d72a7aea Mon Sep 17 00:00:00 2001 From: arctic-hen7 Date: Fri, 19 Jul 2024 14:19:28 +1000 Subject: [PATCH] style: ran `cargo fmt` --- packages/perseus-cli/src/lib.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/perseus-cli/src/lib.rs b/packages/perseus-cli/src/lib.rs index 2298c16559..275a50e70e 100644 --- a/packages/perseus-cli/src/lib.rs +++ b/packages/perseus-cli/src/lib.rs @@ -128,5 +128,11 @@ pub fn get_user_crate_name(dir: &Path) -> Result { /// *Note: following v0.4.0-beta.18, these will only affect the top-level paths /// with these names, rather than any paths with these names. Further exclusions /// should be manually specified.* -pub static WATCH_EXCLUSIONS: &[&str] = - &["dist", "target", "target_engine", "target_browser", ".git", "node_modules"]; +pub static WATCH_EXCLUSIONS: &[&str] = &[ + "dist", + "target", + "target_engine", + "target_browser", + ".git", + "node_modules", +];