DefinitelyTyped/gulp-debug/gulp-debug-tests.ts
2015-12-30 19:34:32 +08:00

15 lines
292 B
TypeScript

/// <reference path="gulp-debug.d.ts" />
/// <reference path="../gulp/gulp.d.ts" />
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();