1. First problem is that the js code is broken once minified. I am using 14 files as input, JQuery, Knockout, YUI, etc., as well as my own code. One thing I am doing though is that I am using the already minified versions of the vendors' files listed above. Not sure if this is allowed but it would be handy (if not, why?). I have tried to use the following switches to no evail:
–global:YUI,JQuery,$,ko -evals:safeall -fnames:keep<
I am doing many Ajax calls and I wonder if this is not what gets broken (I saw there was a problem with that; not sure if it's been fixed).
2. Another problem is that the output files do not get overwritten with every build even though I use the "-clobber:true" switch. If not resolved, this problem would be definitely a show stopper (i.e. find another solution) as we do automatic builds on a build server and need to be sure the files will be renewed every time.
Thanks, Yves
Comments: ** Comment from web user: ycourbier **
One more thing: I just tried the same ajaxmin config with the jquery.dataTables.min.js file BUT with the -minify:no -line:M arguments and the output looks normal, as follows (which is logical since -minify:no)
```
function V(a, b)
{
var c = h(b).children("tr"),
d,
i,
f,
g,
e,
j,
o,
k,
m,
p;
a.splice(0, a.length);
f = 0;
for (j = c.length; f < j; f++)
a.push([]);
f = 0;
```
The source (minified) is as follows, in line with output above.
```
function V(a,b){var c=h(b).children("tr"),d,i,f,g,e,j,o,k,m,p;a.splice(0,a.length);
```
So there is definitely a problem in the minification of the minified file ;).