UNPKG

apeman-react-range

Version:
22 lines (17 loc) 388 B
#!/usr/bin/env node /** * Watch files. */ "use strict"; process.chdir(__dirname + '/..'); const apeWatching = require('ape-watching'), childProcess = require('child_process'); let timer = null; apeWatching.watchFiles([ 'lib/**/*.jsx' ], (ev, filename) => { clearTimeout(timer); timer = setTimeout(() => { childProcess.fork('ci/compile.js'); }, 300); });