not sure why post lost all my formatting
When I took the Fast Track to Ext JS 4 Development class, there was a chapter titled "Going to Production". This of course dealt with creating .jsb files and then using the SDK. Can someone provide me with the new and improved way of going to production using Sencha CMD?
I am currently running Sencha Cmd v3.0.0.250.
What I have done thus far:
1. Created a new application using 'sencha-s c:\ext-4.1.1a generate app AM .'
2. Built the app using 'sencha app build'
I managed to work thru all my circular reference and 'comma' issues and my build appears to finish successfully with all messages being of type [INF].
However, when I look into the all-classes.js file, I see the following:
1. ext-all.js code starting with [var Ext=Ext||] and ending with [return Ext.ClassManager.get(a)}});]
2.followed by my app.js file
3.followed by [Ext.define("Ext.data.connection", {mixins: {observable.....]
No where do I see my Ext.define statements for all my classes.
I did run the sencha app refresh to generate a new bootstrap.js file that looks to contain all my classes and I noticed that this file is referenced in the index.html file.
What am I missing? Are you all seeing the same using the sencha build tool?