Normally the git diff
in a Node.js project with a package-lock.json present is a bit noisy. TIL to exclude a file from the diff.
git diff -- . ':!package-lock.json'
-->
Normally the git diff
in a Node.js project with a package-lock.json present is a bit noisy. TIL to exclude a file from the diff.
git diff -- . ':!package-lock.json'