Last active
August 29, 2015 14:13
-
-
Save jakecraige/ee6076799664226f107f to your computer and use it in GitHub Desktop.
Silent `npm run`
This file contains hidden or 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
{ | |
"scripts": { | |
"test": "npm run --silent test-ci | node_modules/tap-spec/bin/cmd.js", | |
"test-ci": "node_modules/tape/bin/tape test/*.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now if only I could somehow make npm silent on the
test-ci
script.. Anyone know that's possible?