DefinitelyTyped/types/gulp-batch/gulp-batch-tests.ts
2017-03-24 14:27:52 -07:00

9 lines
239 B
TypeScript

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