Skip to content

Instantly share code, notes, and snippets.

@jhnlsn
Last active May 8, 2019 00:46
Show Gist options
  • Save jhnlsn/c807b83da87fbd709423d88231ab9898 to your computer and use it in GitHub Desktop.
Save jhnlsn/c807b83da87fbd709423d88231ab9898 to your computer and use it in GitHub Desktop.
Clean node_modules folders recursively
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment