Добрый день! вопрос вот в чем pug минифицирует html файл а мне нужно чтоб но не минифицировал
Скриншот html как делает :
http://prntscr.com/fr4dyq
А нужно чтоб было так :
http://prntscr.com/fr4i08
Как настроен Gruntfile :
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
files: {
'css/style.css' : 'sass/style.scss'
}
}
},
cssmin: {
my_terget: {
files: [{
expand: true,
cwd: 'dist/css/',
src: ['*css', '!*.min.css'],
dest: 'build/css/',
ext: '.min.css'
}]
}
},
imagemin: {
dist: {
options: {
optimizationLevel: 6,
progressive: true
},
files: [{
expand: true,
cwd: 'dist/images/',
src: ['*.{png,jpg,gif}'],
dest: 'build/images/'
}]
}
},
pug: {
debug: {
options: {
data: {
debug: true
}
},
files: {
'build/index.html' : 'index.pug'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-pug');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.registerTask('default', ['imagemin', 'cssmin', 'sass', 'pug']);
};