mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import * as gulp from 'gulp';
|
|
import stripDebug = require('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'));
|
|
});
|