htmlmin.js 349 B

123456789101112131415161718
  1. module.exports = function(config) {
  2. return {
  3. build: {
  4. options:{
  5. removeComments: true,
  6. collapseWhitespace: true
  7. },
  8. expand: true,
  9. cwd: '<%= genDir %>',
  10. src: [
  11. //'index.html',
  12. 'app/panels/**/*.html',
  13. 'app/partials/**/*.html'
  14. ],
  15. dest: '<%= genDir %>'
  16. }
  17. };
  18. };