From c5418446a8fdc160c6ff9c1f3bafd682bb341cc3 Mon Sep 17 00:00:00 2001 From: Tunghsiao Liu Date: Tue, 18 Oct 2016 14:05:59 +0800 Subject: [PATCH] feat(grunt): disable `removeEmptyElements` by default since it causes too much troble in the past, also props @Cee, should fix https://github.com/sparanoid/almace-scaffolding/issues/56 --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 1e7bfe759..0b092f4cd 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -179,7 +179,7 @@ module.exports = (grunt) -> useShortDoctype: false removeEmptyAttributes: true removeOptionalTags: true - removeEmptyElements: true + removeEmptyElements: false lint: false keepClosingSlash: false caseSensitive: true