Skip to content

Instantly share code, notes, and snippets.

@LeoFalco
Last active July 8, 2020 11:17
Show Gist options
  • Save LeoFalco/6c01ba7f7d9466b51b98abe1161464b1 to your computer and use it in GitHub Desktop.
Save LeoFalco/6c01ba7f7d9466b51b98abe1161464b1 to your computer and use it in GitHub Desktop.
cat $(find . -name package-lock.json | grep -v -e node_modules -e bower_components | paste -sd " ") | md5sum | cut -d ' ' -f 1
cat $(find . -name package-lock.json -not -path "*/node_modules/*" -not -path "*/bower_components/*" | paste -sd " ") | md5sum | cut -d ' ' -f 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment