Licence
Apache-2.0
Version
4.0.1
Deps
1
Size
35 kB
Vulns
0
Weekly
0
pon-task-watch
Pon task to watch files
Installation
$ npm install pon-task-watch --save
Usage
'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.