mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import * as gulp from 'gulp';
|
|
import debug = require('gulp-debug');
|
|
|
|
gulp.task('default', () =>
|
|
gulp.src('foo.js')
|
|
.pipe(debug({title: 'unicorn:'}))
|
|
.pipe(gulp.dest('dist'))
|
|
);
|
|
|
|
debug();
|