gulp-batch
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "gulp-batch", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Event batcher for gulp-watcher", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -17,4 +17,4 @@ # [gulp](https://github.com/gulpjs/gulp)-batch [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Dependency Status][depstat-image]][depstat-url] | ||
gulp.watch(['lib/**', 'test/**'], batch(function(events) { | ||
return events.pipe(console.log); | ||
gulp.watch(['lib/**', 'test/**'], batch(function(events, cb) { | ||
events.on('data', console.log).on('end', cb); | ||
})); | ||
@@ -21,0 +21,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
6990