Skip to content

Instantly share code, notes, and snippets.

@ahmadalfy
Created May 20, 2015 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadalfy/88d3d23c5fdbf7e739b2 to your computer and use it in GitHub Desktop.
Save ahmadalfy/88d3d23c5fdbf7e739b2 to your computer and use it in GitHub Desktop.
htmlmin task options
htmlmin: {
dist: {
options: {
collapseBooleanAttributes: true,
collapseWhitespace: false,
conservativeCollapse: false,
removeAttributeQuotes: false,
removeCommentsFromCDATA: false,
removeEmptyAttributes: false,
removeOptionalTags: false,
removeRedundantAttributes: false,
useShortDoctype: true
},
files: [{
expand: true,
cwd: '.tmp',
src: '{,*/}*.html',
dest: '<%= config.dist %>'
}]
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment