I have a few javacsript files, and I'm using a js packer to pack them, then combine them all and include them in a page.
The problem is that after they are packed I'm getting this error:
Error: missing ; before statement
I assume it's because somewhere in the js file a new line is used instead of the ;
character, and since the packer removes new lines you get the error
so, how could I find where ;
is ommited in the script(s)?