Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Catalyst-View-JavaScript-Minifier-XS CPAN distribution.

Report information
The Basics
Id: 48814
Status: resolved
Priority: 0/
Queue: Catalyst-View-JavaScript-Minifier-XS

People
Owner: Nobody in particular
Requestors: frioux [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: Don't minify when debug is on
I just think it would be nice if you didn't minify during debug mode. Seems reasonable for those of us who do a lot of js work. Here's the code I wrote to do that: if ( @output ) { # minifying them if any files loaded at all $c->res->body( $c->debug ? join(" ",@output) : minify(join(" ",@output)) ); } else { $c->res->body( " " ); } That's near line 158 on the current version.