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.