I cannot figure out why uglify does not want concat string as input or output ...
This works :
uglify: {
dev_uglify_js: {
files: {
'my_file.min.js': ['my_file.js']
}
}
}
For example, this does not works :
uglify: {
dev_uglify_js: {
files: {
'my'+'_file.min.js': ['my_file.js']
}
}
}
Do you have any idea why ? The output error is "SyntaxError: Unexpected token".
The real insterest here is to concatenate a timestamp to the file name. But just with 2 strings it does not work so ...
Thanks for your help !