npm-run.plugin.zsh
npm-run.plugin.zsh copied to clipboard
Hide "pre-" and "post-" scripts
When you run $ npm run test
, npm in reality runs $ npm run pretest && npm run test && npm run posttest
. These lifecycle scripts are not meant to be directly invoked, and as such shouldn't be shown imo. What do you think?