DefinitelyTyped/types/gulp-html-prettify/gulp-html-prettify-tests.ts
TokugawaT_YD c9e7cb88b0 New types for Gulp-html-prettify (#35005)
* clear to tests

* clear to tests
2019-04-26 14:19:33 -07:00

12 lines
287 B
TypeScript

import * as gulp from 'gulp';
import prettifyHtml = require('gulp-html-prettify');
gulp.task('prettifyHtml', () => {
gulp.src('source/*.html')
.pipe(prettifyHtml({
indent_char: ' ',
indent_size: 2
}))
.pipe(gulp.dest('./dist/'));
});