From d7fc116d9ae28b6a2f2952b78c6f05bae8132760 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 27 Feb 2014 06:44:52 +0200 Subject: [PATCH] Update cssmin options. --- Gruntfile.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0059f17..f3af756 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,9 +79,14 @@ module.exports = function(grunt) { }, cssmin: { - combine: { + minify: { + options: { + banner: '', // set to empty ; see bellow + keepSpecialComments: '*', // set to '*' because we already add the banner in sass + report: 'min' + }, files: { - 'dist/<%= pkg.name %>.min.css': ['dist/<%= pkg.name %>.css'] + 'dist/<%= pkg.name %>.min.css': 'dist/<%= pkg.name %>.css' } } },