4

Sigh :/ The npm default to print its own logging messages is so annoying I now do this:

alias npm='npm -s'

npm run my-script // only the output of my script
\npm run my-script // be annoyed by npm log messages

Comments
  • 0
    Downside now is though that

    npm run

    won't show the available commans anymore. I have to call then \npm run.
Add Comment