Skip to content

Instantly share code, notes, and snippets.

@aharris
Created January 29, 2021 14:12
Show Gist options
  • Save aharris/e75b8014491e6c53a14e8f90570f8bf7 to your computer and use it in GitHub Desktop.
Save aharris/e75b8014491e6c53a14e8f90570f8bf7 to your computer and use it in GitHub Desktop.
Clean up space

Different methods to clean up storage on mac

Yarn

$ yarn cache clean

Delete all node_modules found in a Directory:

$ find . -name "node_modules" -type d -prune -exec rm -rf '{}' +

Docker

$ docker system prune --all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment