node-watch
Advanced tools
Comparing version 0.5.7 to 0.5.8
# Changelog | ||
## 0.5.8 | ||
* Fix async function detection. | ||
## 0.5.7 | ||
* add `delay` option and set default to 100ms. | ||
* Add `delay` option and set default to 100ms. | ||
@@ -6,0 +9,0 @@ ## 0.5.6 |
@@ -26,3 +26,4 @@ var fs = require('fs'); | ||
func: function(item) { | ||
return matchObject(item, 'Function'); | ||
return matchObject(item, 'Function') | ||
|| matchObject(item, 'AsyncFunction'); | ||
}, | ||
@@ -29,0 +30,0 @@ number: function(item) { |
@@ -14,3 +14,3 @@ { | ||
], | ||
"version": "0.5.7", | ||
"version": "0.5.8", | ||
"bugs": { | ||
@@ -17,0 +17,0 @@ "url": "https://github.com/yuanchuan/node-watch/issues" |
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
37506
948