UNPKG

@antv/torch

Version:
14 lines (11 loc) 252 B
const chokidar = require('chokidar'); module.exports = (globs, callback) => { const watcher = chokidar.watch(globs, { ignored: [ /(^|[/\\])\../, /node_modules|[/\\]\./ ] }); watcher.on('all', callback); return watcher; };