Comparing version 1.0.4 to 1.0.5
@@ -0,1 +1,4 @@ | ||
# Chokidar 1.0.5 (20 July 2015) | ||
* Fix regression with regexes/fns using in `ignored` | ||
# Chokidar 1.0.4 (15 July 2015) | ||
@@ -2,0 +5,0 @@ * Fix bug with `ignored` files/globs while `cwd` option is set |
@@ -214,2 +214,3 @@ 'use strict'; | ||
ignored = arrify(ignored).map(function (path) { | ||
if (typeof path !== 'string') return path; | ||
return isAbsolute(path) ? path : sysPath.join(cwd, path); | ||
@@ -216,0 +217,0 @@ }); |
{ | ||
"name": "chokidar", | ||
"description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"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
63964
1159