Created
November 9, 2021 14:19
-
-
Save obedparla/c126e38c83e538b32b1383c0fe580c28 to your computer and use it in GitHub Desktop.
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 how much all your node modules weigh | |
find . -name "node_modules" -type d -prune -print | xargs du -chs | |
# To delete them AT YOUR OWN RISK: | |
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment