Skip to content

Instantly share code, notes, and snippets.

@drodil
Created September 21, 2023 08:12
Show Gist options
  • Save drodil/049b1ae42ef96fae6ee6ba3b5221bab9 to your computer and use it in GitHub Desktop.
Save drodil/049b1ae42ef96fae6ee6ba3b5221bab9 to your computer and use it in GitHub Desktop.
Run npm-check to all package.json files in monorepo
find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir readlink -f {} \; -execdir npm-check \; > deps.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment