Created
May 19, 2018 19:02
-
-
Save mathiasrw/6b20e59c0a1ba5ea472730eb6bf40015 to your computer and use it in GitHub Desktop.
Get commands to fix npm audit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm audit | ggrep -oP '(?<=# Run..).+(?=..to resolve)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uses GNU grep. Get it for your mac with
brew install grep
(and yes, it will be installed asggrep
)