Is it possible?
currently it does the Minification/Uglyfying/Packing for every single file.
But the way I have structured my project, I have seperated everything into seperate files (simular to how you would organize c# classes etc.)
so I have 116 files being minified seperatly. and its not done corretly because it doesn't see all the references between the file.
--example could be.
__Game.js__
```
var Game = {
...
}
```
__Game.Objects.js__
```
Game.Objects = {
...
}
```
__Game.Objects.Player.js__
```
Game.Objects.Player = function() {
...
}
```
and so on.
But its actually a really "closed" project. and nothing break if I combined all 116 files in one single file, wrapped everything in an anonymous function and obfuscate it to oblivion. (this is really what i want it to do).
currently it does the Minification/Uglyfying/Packing for every single file.
But the way I have structured my project, I have seperated everything into seperate files (simular to how you would organize c# classes etc.)
so I have 116 files being minified seperatly. and its not done corretly because it doesn't see all the references between the file.
--example could be.
__Game.js__
```
var Game = {
...
}
```
__Game.Objects.js__
```
Game.Objects = {
...
}
```
__Game.Objects.Player.js__
```
Game.Objects.Player = function() {
...
}
```
and so on.
But its actually a really "closed" project. and nothing break if I combined all 116 files in one single file, wrapped everything in an anonymous function and obfuscate it to oblivion. (this is really what i want it to do).