Skip to content

Commit

Permalink
Ignore node modules when scanning project for changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lynzrand committed Jan 23, 2025
1 parent 60ac39e commit ecffab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/moonutil/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ impl MooncOpt {

pub const DEP_PATH: &str = ".mooncakes";

pub const IGNORE_DIRS: &[&str] = &["target", ".git", DEP_PATH];
pub const IGNORE_DIRS: &[&str] = &["target", ".git", "node_modules", DEP_PATH];

pub fn dialoguer_ctrlc_handler() {
// Fix cursor disappears after ctrc+c
Expand Down

0 comments on commit ecffab2

Please sign in to comment.