git ssb

0+

cel-desktop / ssb-pkg



Tree: e9d9dec1d00ff365112ca0f981bbda15e3682528

Files: e9d9dec1d00ff365112ca0f981bbda15e3682528 / test / test-79-npm / chokidar / chokidar.js

201 bytesRaw
1'use strict';
2
3var chokidar = require('chokidar');
4
5var watcher = chokidar.watch('./chokidar.js', {
6 persistent: true
7});
8
9watcher.on('ready', function () {
10 console.log('ok');
11 process.exit();
12});
13

Built with git-ssb-web