Pon task to watch files
$ npm install pon-task-watch --save
'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()
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 |
This software is released under the Apache-2.0 License.