if useSourceUrl = true, and optimize = "uglify", the minification/uglification process is applied at the wrong time:
Current result:
- all file contents get wrapped in eval("...") calls.
- the minification is applied.
At the time of the minification the file contents are represented as strings inside the eval() call, so they are left as they are. No minification/uglification applied
Expected result:
- minification should be applied fist
- once they are minified, they should be wrapped up in the eval("...") calls.
I hope it made sense.
Cheers,
Zoltan