Показать сообщение отдельно
  #1 (permalink)  
Старый 03.07.2017, 18:27
Аспирант
Отправить личное сообщение для Giorgi Посмотреть профиль Найти все сообщения от Giorgi
 
Регистрация: 22.03.2014
Сообщений: 56

Настройка pug в Gruntfile
Добрый день! вопрос вот в чем 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']);

};
Ответить с цитированием