whisper-watch
v0.1.0
Published
Watches for certain events and runs tasks based on them!
Downloads
3
Readme
Whisper: Watch
Watches for certain events and runs tasks based on them!
Example
Define watch scripts in your .whisper
file:
module.exports = function(whisper) {
whisper.configure({
watch: {
js: { type: 'file'
, files: ['src/src/']
, tasks: ['coffee-script']
}
}
})
require('whisper-watch')(whisper)
}
And invoke the whisper watch
task on your project to watch for events:
$ whisper watch
Installing
Just grab it from NPM:
$ npm install whisper-watch
Documentation
Just invoke whisper help watch
to show the manual page for the watch
task.
Licence
MIT/X11. ie.: do whatever you want.