differences between "ext.js" and "ext-debug.js":
- "ext-debug" is not compressed (or "minified").
- "ext-debug" does not start through the Cmd optimizer.
These files otherwise contain exactly the same code. In addition, both flyers load the required classes from the src folder. In short, both of these files are designed to support debugging.
To improve performance, to reduce downloads to as many files as possible, you can use Sencha Cmd. something like that
sencha fs minify -yui -from=ext-debug.js -to=ext.js
For Cmd ext 4.2.2 partitions, the doc set is more relevant and you can access dec here
Hope this can help you.
source share