Created
January 7, 2020 21:13
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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