Comparing version 1.0.2 to 1.0.3
@@ -0,3 +1,6 @@ | ||
# Chokidar 1.0.3 (4 June 2015) | ||
* Fix race issue with `alwaysStat` option and removed files | ||
# Chokidar 1.0.2 (30 May 2015) | ||
* Fix bug with absolute paths and ENAMETOOLONG error. | ||
* Fix bug with absolute paths and ENAMETOOLONG error | ||
@@ -4,0 +7,0 @@ # Chokidar 1.0.1 (8 April 2015) |
@@ -145,2 +145,5 @@ 'use strict'; | ||
fs.stat(path, function(error, stats) { | ||
// Suppress event when fs.stat fails, to avoid sending undefined 'stat' | ||
if (error || !stats) return; | ||
args.push(stats); | ||
@@ -147,0 +150,0 @@ emitEvent(); |
{ | ||
"name": "chokidar", | ||
"description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "fs", |
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
63414
1144