From b8b099ddac3aff2162579fc8c7a64c69e91f8204 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 16 Jul 2016 21:22:39 -0700 Subject: [PATCH] Gruntfile.js: Use single quotes in htmlmin config to make JSCS happy (#20314) [skip validator] [skip sauce] --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index b4541e17b6..994a500871 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -321,7 +321,7 @@ module.exports = function (grunt) { conservativeCollapse: true, decodeEntities: false, minifyCSS: { - compatibility: "ie8", + compatibility: 'ie8', keepSpecialComments: 0 }, minifyJS: true, -- 2.47.2