Skip to content

Instantly share code, notes, and snippets.

@meftunca
Created January 7, 2020 21:13
Show Gist options
  • Save meftunca/77f853f4a83690ce50e0578bd5f51252 to your computer and use it in GitHub Desktop.
Save meftunca/77f853f4a83690ce50e0578bd5f51252 to your computer and use it in GitHub Desktop.
Mac veya linux için npm ve react native(android, ios) proje sonrası gereksiz dosyaları(node_modules,**/build, Pods) temizleme kodu
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + && find . -name "Pods" -type d -prune -exec rm -rf '{}' + && find . -name "build" -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment