Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #41 from FireHost/report_min_only
Browse files Browse the repository at this point in the history
Only report minification statistics on compress
  • Loading branch information
sindresorhus committed Aug 6, 2013
2 parents 6d7fa93 + 272b6ff commit 72eb249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -27,7 +27,7 @@
},
"dependencies": {
"recess": "~1.1.6",
"grunt-lib-contrib": "~0.5.2"
"grunt-lib-contrib": "~0.6.0"
},
"devDependencies": {
"grunt": "~0.4.0",
Expand Down
2 changes: 1 addition & 1 deletion tasks/recess.js
Expand Up @@ -87,7 +87,7 @@ module.exports = function (grunt) {
grunt.log.writeln('File "' + dest + '" created.');

if (options.compress) {
helpers.minMaxInfo(min.join(separator), max.join(separator));
helpers.minMaxInfo(min.join(separator), max.join(separator), 'min');
}
} else {
grunt.fail.fatal('No destination specified. Required when options.compile is enabled.');
Expand Down

0 comments on commit 72eb249

Please sign in to comment.