From dea1945b4769cf9097b5da67a587b29a982023e2 Mon Sep 17 00:00:00 2001 From: XhmikosR <xhmikosr@users.sourceforge.net> Date: Thu, 27 Mar 2014 19:45:25 +0200 Subject: [PATCH] Gruntfile.js: Remove default `report` option. --- Gruntfile.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index bf57054540..78f77a763e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,9 +107,6 @@ module.exports = function (grunt) { }, uglify: { - options: { - report: 'min' - }, bootstrap: { options: { banner: '<%= banner %>' @@ -178,8 +175,7 @@ module.exports = function (grunt) { }, minify: { options: { - cleancss: true, - report: 'min' + cleancss: true }, files: { 'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css', @@ -246,10 +242,9 @@ module.exports = function (grunt) { cssmin: { options: { + compatibility: 'ie8', keepSpecialComments: '*', - noAdvanced: true, // turn advanced optimizations off until the issue is fixed in clean-css - report: 'min', - compatibility: 'ie8' + noAdvanced: true // turn advanced optimizations off until the issue is fixed in clean-css }, docs: { src: [ -- GitLab