Comparing version 0.6.0 to 0.6.1
@@ -1,2 +0,5 @@ | ||
# Chokidar 0.6.0 (March 10, 2012) | ||
# Chokidar 0.6.1 (19 March 2013) | ||
* Added node.js 0.10 support. | ||
# Chokidar 0.6.0 (10 March 2013) | ||
* File attributes (stat()) are now passed to `add` and `change` events | ||
@@ -6,9 +9,9 @@ as second arguments. | ||
# Chokidar 0.5.3 (January 13, 2012) | ||
# Chokidar 0.5.3 (13 January 2013) | ||
* Removed emitting of `change` events before `unlink`. | ||
# Chokidar 0.5.2 (January 13, 2012) | ||
# Chokidar 0.5.2 (13 January 2013) | ||
* Removed postinstall script to prevent various npm bugs. | ||
# Chokidar 0.5.1 (January 6, 2012) | ||
# Chokidar 0.5.1 (6 January 2013) | ||
* When starting to watch non-existing paths, chokidar will no longer throw | ||
@@ -18,3 +21,3 @@ ENOENT error. | ||
# Chokidar 0.5.0 (December 9, 2012) | ||
# Chokidar 0.5.0 (9 December 2012) | ||
* Added a bunch of new options: | ||
@@ -26,3 +29,3 @@ * `ignoreInitial` that allows to ignore initial `add` events. | ||
# Chokidar 0.4.0 (July 26, 2012) | ||
# Chokidar 0.4.0 (26 July 2012) | ||
* Added `all` event that receives two args (event name and path) that | ||
@@ -33,32 +36,32 @@ combines `add`, `change` and `unlink` events. | ||
# Chokidar 0.3.0 (June 24, 2012) | ||
# Chokidar 0.3.0 (24 June 2012) | ||
* `unlink` event are no longer emitted for directories, for consistency | ||
with `add`. | ||
# Chokidar 0.2.6 (June 8, 2012) | ||
# Chokidar 0.2.6 (8 June 2012) | ||
* Prevented creating of duplicate 'add' events. | ||
# Chokidar 0.2.5 (June 8, 2012) | ||
# Chokidar 0.2.5 (8 June 2012) | ||
* Fixed a bug when new files in new directories hadn't been added. | ||
# Chokidar 0.2.4 (June 7, 2012) | ||
# Chokidar 0.2.4 (7 June 2012) | ||
* Fixed a bug when unlinked files emitted events after unlink. | ||
# Chokidar 0.2.3 (May 12, 2012) | ||
# Chokidar 0.2.3 (12 May 2012) | ||
* Fixed watching of files on windows. | ||
# Chokidar 0.2.2 (May 4, 2012) | ||
# Chokidar 0.2.2 (4 May 2012) | ||
* Fixed watcher signature. | ||
# Chokidar 0.2.1 (May 4, 2012) | ||
# Chokidar 0.2.1 (4 May 2012) | ||
* Fixed invalid API bug when using `watch()`. | ||
# Chokidar 0.2.0 (May 4, 2012) | ||
# Chokidar 0.2.0 (4 May 2012) | ||
* Rewritten in js. | ||
# Chokidar 0.1.1 (April 26, 2012) | ||
# Chokidar 0.1.1 (26 April 2012) | ||
* Changed api to `chokidar.watch()`. | ||
* Fixed compilation on windows. | ||
# Chokidar 0.1.0 (April 20, 2012) | ||
# Chokidar 0.1.0 (20 April 2012) | ||
* Initial release. |
{ | ||
"name": "chokidar", | ||
"description": "A neat wrapper around node.js fs.watch / fs.watchFile.", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"keywords": [ | ||
@@ -28,5 +28,2 @@ "fs", | ||
"main": "./lib/index", | ||
"engines": { | ||
"node": "~0.6.10 || 0.7 || 0.8 || 0.9" | ||
}, | ||
"scripts": { | ||
@@ -42,4 +39,4 @@ "prepublish": "coffee -o lib/ src/", | ||
"sinon-chai": "2.2.0", | ||
"coffee-script": "~1.4.0" | ||
"coffee-script": "~1.6.0" | ||
} | ||
} |
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
29997