-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the report
option
#259
Conversation
Use `grunt.log` so the `report` option displays.
report
option displaysreport
option
I seeeee, quite the contentious issue. We don't need a 5th issue about this so I'll close. My vote is for at least one success print, or an option to enable this |
I know this issue is closed, but I'll chime in here. I'm writing a chapter about Grunt for a book I'm co-authoring. The docs have this to say about the report option:
Nowhere in the docs does it indicate that -v is required to display the report. The docs should either be updated to reflect this requirement, or allow the report to display without verbose mode (my preference). I don't want ALL of the output, just the bits I'm explicitly requesting as per the documentation. |
+1 for this, doesn't make sense to have the option if we can't see the output anyway. |
+1 for non-verbose report output. The default |
…tes, this removes the gzip reported size from the uglifyjs task (which wasn’t accurate anyway). To show the gzip minified size, use `grunt -v` Related: gruntjs/grunt-contrib-uglify#259
+1 for the @zachleat solution, the option needs 3 values: |
For future visitors, I believe the discussion for this issue is currently taking place at #254. |
Fix the
report
option by usinggrunt.log
instead ofgrunt.verbose
I upgraded from
0.2.x
and thereuglify
had onegrunt.log
print:It seems to only
grunt.verbose
print now. Maybe this was on purpose?