Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / test / test-79-npm / chokidar / chokidar.js
201 bytesRaw
1 | ; |
2 | |
3 | var chokidar = require('chokidar'); |
4 | |
5 | var watcher = chokidar.watch('./chokidar.js', { |
6 | persistent: true |
7 | }); |
8 | |
9 | watcher.on('ready', function () { |
10 | console.log('ok'); |
11 | process.exit(); |
12 | }); |
13 |
Built with git-ssb-web