Created
May 20, 2015 14:53
-
-
Save ahmadalfy/88d3d23c5fdbf7e739b2 to your computer and use it in GitHub Desktop.
htmlmin task options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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