From a7c9b8d6ec2ffef9db27d1ac1c52835d21d1f2da Mon Sep 17 00:00:00 2001 From: Dimitar Nestorov <8790386+DimitarNestorov@users.noreply.github.com> Date: Mon, 16 Feb 2026 09:37:07 +0200 Subject: [PATCH] feat(purge): add common React Native targets (#461) --- lib/clean/project.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/clean/project.sh b/lib/clean/project.sh index 91dace8..51c09c5 100644 --- a/lib/clean/project.sh +++ b/lib/clean/project.sh @@ -40,6 +40,10 @@ readonly PURGE_TARGETS=( ".svelte-kit" # SvelteKit ".astro" # Astro "coverage" # Code coverage reports + "DerivedData" # Xcode + "Pods" # CocoaPods + ".cxx" # Android + ".expo" # Expo ) # Minimum age in days before considering for cleanup. readonly MIN_AGE_DAYS=7