2.0.0 • Published 3 years ago
build-notifier v2.0.0
Build Notifier
Reads your build output from stdin, pipes it straight to stdout and notifies
you if the build passed or failed once an EOF is received.
It notifies you via node-notifier.
Installation
npm install --save-dev build-notifierUsage
Use with JSCS:
jscs lib/**.js test/**.js | node_modules/.bin/notify -t JSCSor with JSHint:
jshint lib/**.js test/**.js | node_modules/.bin/notify -t JSHintor even better, in the scripts section of your package.json:
{
"scripts" : {
"jscs": "jscs lib/**.js test/**.js | notify -t JSCS",
"prehint": "npm -s run jscs",
"hint": "jshint lib/**.js test/**.js | notify -t JSHint",
"pretest": "npm -s run hint",
"test": "your favorite test tool"
}
}