mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
287 B
TypeScript
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/'));
|
|
});
|