Comparing version 0.5.0 to 0.5.1
@@ -0,1 +1,6 @@ | ||
# Chokidar 0.5.1 (January 6, 2012) | ||
* When starting to watch non-existing paths, chokidar will no longer throw | ||
ENOENT error. | ||
* Fixed bug with absolute path. | ||
# Chokidar 0.5.0 (December 9, 2012) | ||
@@ -2,0 +7,0 @@ * Added a bunch of new options: |
@@ -210,6 +210,9 @@ // Generated by CoffeeScript 1.4.0 | ||
return fs.realpath(item, function(error, path) { | ||
if (error && error.code === 'ENOENT') { | ||
return; | ||
} | ||
if (error != null) { | ||
return _this.emit('error', error); | ||
} | ||
return fs.stat(item, function(error, stats) { | ||
return fs.stat(path, function(error, stats) { | ||
if (error != null) { | ||
@@ -216,0 +219,0 @@ return _this.emit('error', error); |
{ | ||
"name": "chokidar", | ||
"description": "A neat wrapper around node.js fs.watch / fs.watchFile.", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"keywords": ["fs", "watch", "watchFile", "watcher", "file"], | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/paulmillr/chokidar", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
29824
15
291