Skip to content

Instantly share code, notes, and snippets.

@kdmurray
Created October 19, 2023 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdmurray/51adb24c7a249b56b3ad8e1152611d73 to your computer and use it in GitHub Desktop.
Save kdmurray/51adb24c7a249b56b3ad8e1152611d73 to your computer and use it in GitHub Desktop.
node-modules-cleanup.ps1
Get-ChildItem -Directory | ForEach-Object {
if (Test-Path "$($_.FullName)\node_modules")
{
Remove-Item "$($_.FullName)\node_modules" -Recurse -Force
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment