UNPKG

kompendium

Version:

Documentation generator for Stencil components

9 lines (8 loc) 249 B
import chokidar from 'chokidar'; import nodeCleanup from 'node-cleanup'; export function createWatcher(path, type, callback) { const watcher = chokidar.watch(path).on(type, callback); nodeCleanup(async () => { await watcher.close(); }); }