node-watch
Advanced tools
Comparing version 0.3.3 to 0.3.4
@@ -215,3 +215,3 @@ /** | ||
var parent = path.resolve(fpath, '..'); | ||
fs.watch(parent, function(evt, fname) { | ||
fs.watch(parent, options, function(evt, fname) { | ||
if (path.basename(fpath) === fname) { | ||
@@ -222,3 +222,3 @@ normalizeCall(fpath, options, cb); | ||
} else if (is.dir(fpath)) { | ||
fs.watch(fpath, function(evt, fname) { | ||
fs.watch(fpath, options, function(evt, fname) { | ||
if (fname) { | ||
@@ -225,0 +225,0 @@ normalizeCall(path.join(fpath, fname), options, cb); |
{ | ||
"name": "node-watch" | ||
, "version": "0.3.3" | ||
, "version": "0.3.4" | ||
, "description": "fs.watch() wrapper of Nodejs " | ||
@@ -5,0 +5,0 @@ , "url": "https://github.com/yuanchuan/node-watch" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8956