DefinitelyTyped/gulp-debug/gulp-debug-tests.ts
2016-05-04 16:30:29 -07:00

15 lines
210 B
TypeScript

import * as gulp from 'gulp';
import * as debug from 'gulp-debug';
gulp.task('default', () =>
gulp.src('foo.js')
.pipe(debug({title: 'unicorn:'}))
.pipe(gulp.dest('dist'))
);
debug();