Skip to content

Commit

Permalink
Add android & iOS to Node (react native) project
Browse files Browse the repository at this point in the history
  • Loading branch information
pashaie committed Oct 20, 2021
1 parent bba576d commit ed1b35e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/discover_projects/detect_cleanable_project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ pub fn detect_cleanable_project(path: &Path) -> Option<Project> {
project.add_cleanable_dir_if_exists(".cache");
project.add_cleanable_dir_if_exists("build");
project.add_cleanable_dir_if_exists("dist");
project.add_cleanable_dir_if_exists("android/app/build");
project.add_cleanable_dir_if_exists("android/build");
project.add_cleanable_dir_if_exists("android/.gradle");
project.add_cleanable_dir_if_exists("ios/build");
project.add_cleanable_dir_if_exists("ios/Pods");
}

// Java projects
Expand Down

0 comments on commit ed1b35e

Please sign in to comment.