Почему не сохраняется перенос строки и межстрочный интервал?
Исходник кода:

Как выглядит код после:

Вот код задачи:
gulp.task('html', function () {
let options = {
"indent_size": 4,
"indent_with_tabs": true,
"preserve_newlines": true,
"space_after_anon_function": true,
"brace_style": "collapse",
"keep_array_indentation": true,
"keep_function_indentation": true,
"space_before_conditional": true,
"break_chained_methods": true,
"eval_code": true,
"unescape_strings": false,
"wrap_line_length": 0,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"end_with_newline": true
};
gulp.src(['src/**/*.html'])
.pipe(htmlPartial({
basePath: 'src/partials/',
tagName: 'partial',
variablePrefix: '@@'
}))
.pipe(htmlbeautify(options))
.pipe(gulp.dest('dist/'));
});
Почему не сохраняется перенос строки и межстрочный интервал?