mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
/// <reference path="gulp-debug.d.ts" />
|
|
/// <reference path="../gulp/gulp.d.ts" />
|
|
|
|
import gulp = require('gulp');
|
|
import debug = require('gulp-debug');
|
|
|
|
gulp.task('default', () =>
|
|
gulp.src('foo.js')
|
|
.pipe(debug({title: 'unicorn:'}))
|
|
.pipe(gulp.dest('dist'))
|
|
);
|
|
|
|
|
|
debug();
|