mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
/// <reference path="gulp-strip-debug.d.ts" />
|
|
/// <reference path="../gulp/gulp.d.ts" />
|
|
|
|
import * as gulp from 'gulp';
|
|
import * as stripDebug from 'gulp-strip-debug';
|
|
|
|
// Example taken from https://www.npmjs.com/package/gulp-strip-debug
|
|
gulp.task('default', function () {
|
|
return gulp.src('src/app.js')
|
|
.pipe(stripDebug())
|
|
.pipe(gulp.dest('dist'));
|
|
});
|