chore: use strict eol after generation

This commit is contained in:
Alex Gyoshev 2017-03-16 10:59:06 +02:00 коммит произвёл Иван Жеков
Родитель 6ee09e0eac
Коммит a2fd9aae8f
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -52,6 +52,8 @@ module.exports = function(dest, context) {
});
return new Promise(function(done, error) {
fs.writeFile(path.join('docs', 'customization.md'), template(data));
let output = template(data);
output = output.replace(/\r?\n/g, '\n');
fs.writeFile(path.join('docs', 'customization.md'), output);
});
};