1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-22 22:21:50 +00:00

Closes #117: fix templates minification

This commit is contained in:
Benjamin Gamard
2017-11-06 00:48:55 +01:00
parent cf9101d157
commit 4d161aea07
2 changed files with 10 additions and 12 deletions

View File

@@ -72,12 +72,12 @@ module.exports = function(grunt) {
options: {
append: true,
htmlmin: {
collapseBooleanAttributes: true,
collapseBooleanAttributes: false,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeAttributeQuotes: false,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeEmptyAttributes: false,
removeRedundantAttributes: false,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
@@ -90,12 +90,12 @@ module.exports = function(grunt) {
options: {
append: true,
htmlmin: {
collapseBooleanAttributes: true,
collapseBooleanAttributes: false,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeAttributeQuotes: false,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeEmptyAttributes: false,
removeRedundantAttributes: false,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}