aboutsummaryrefslogtreecommitdiff
path: root/node_modules/glob-watcher/index.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/glob-watcher/index.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/glob-watcher/index.js')
-rw-r--r--node_modules/glob-watcher/index.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/node_modules/glob-watcher/index.js b/node_modules/glob-watcher/index.js
deleted file mode 100644
index 907defd4e..000000000
--- a/node_modules/glob-watcher/index.js
+++ /dev/null
@@ -1,39 +0,0 @@
-var gaze = require('gaze');
-var EventEmitter = require('events').EventEmitter;
-
-module.exports = function(glob, opts, cb) {
- var out = new EventEmitter();
-
- if (typeof opts === 'function') {
- cb = opts;
- opts = {};
- }
-
- var watcher = gaze(glob, opts, function(err, rwatcher){
- if (err) out.emit('error', err);
- rwatcher.on('all', function(evt, path, old){
- var outEvt = {type: evt, path: path};
- if(old) outEvt.old = old;
- out.emit('change', outEvt);
- if(cb) cb(outEvt);
- });
- });
-
- watcher.on('end', out.emit.bind(out, 'end'));
- watcher.on('error', out.emit.bind(out, 'error'));
- watcher.on('ready', out.emit.bind(out, 'ready'));
- watcher.on('nomatch', out.emit.bind(out, 'nomatch'));
-
- out.end = function(){
- return watcher.close();
- };
- out.add = function(){
- return watcher.add.apply(watcher, arguments);
- };
- out.remove = function(){
- return watcher.remove();
- };
- out._watcher = watcher;
-
- return out;
-};