This helped me, thanks man :)
Don't you think adding -type d to the find command might improve it a little, so it would be
-type d
find . -name "node_modules" -type d -exec rm -rf '{}' +
This helped me, thanks man :)
Don't you think adding
-type d
to the find command might improve it a little, so it would befind . -name "node_modules" -type d -exec rm -rf '{}' +