DefinitelyTyped/gulp-batch/gulp-batch-tests.ts
2017-03-10 15:02:04 -08:00

9 lines
244 B
TypeScript

import * as gulp from "gulp";
import * as batch from "gulp-batch";
gulp.task('default', function() {
gulp.watch([ 'lib/**', 'test/**' ], batch((events: any, cb: any) => {
events.on('data', console.log).on('end', cb);
}));
});