UglifyJS uses commas to chain function, object and variable declarations. This is fine for productions and when the file is being minified however it makes it extremely hard to walk through the javascript with breakpoints when debugging js. I need to know how to turn this feature off in the UglifyJS Grunt Plugin.
Below is what the output looks like.
var boom = function(a) {
...
},
bing = function(b){
...
},
bam = function(c) {
...
};