From 0e6e19179edb7636d95ba996c05e3550e77df75e Mon Sep 17 00:00:00 2001 From: Dan Poltawski Date: Tue, 28 Jun 2016 17:52:52 +0100 Subject: [PATCH] MDL-55048 grunt: make uglify task behave as before Don't output the status of uglifyied JS files, just the final result, will still report what happens in detail in verbose mode --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4e22a6eef68..467f13b6bab 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -132,7 +132,8 @@ module.exports = function(grunt) { expand: true, src: amdSrc, rename: uglifyRename - }] + }], + options: {report: 'none'} } }, less: { -- 2.43.0