4.0.1 • Published 5 years ago
pon-task-watch v4.0.1
pon-task-watch
Pon task to watch files
Installation
$ npm install pon-task-watch --saveUsage
'use strict'
const pon = require('pon')
const watch = require('pon-task-watch')
async function tryExample () {
let run = pon({
myWatch: watch('src/**/*.txt', (event, filename) => {
console.log('File changed', filename)
})
})
run('myWatch')
}
tryExample()Signatures
define(filenames, handler, options) -> function
Define task
| Param | type | Description |
|---|---|---|
| filenames | string|string[] | Filenames or glob pattern to watch |
| handler | function | Change handler function |
| options | Object | Optional settings |
| options.delay | number | Delay to trigger watch |
| options.events | string | Target events |
License
This software is released under the Apache-2.0 License.