My app.json
file of a Sencha touch 2 application contain.
"js": [
{
"path": "sdk/sencha-touch.js"
},
{"path": "js/mootools-1.2.5-core.js"}, // I want these files to be bundled too
{"path": "js/mootools-1.2.5.1-more.js"}, // <----------+
{"path": "js/soundmanager2-nodebug-jsmin.js"}, // <----+
... // <----+ and there are more.
...
{
"path": "app.js",
"bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
"update": "delta"
},
Now I see when I invoke sencha app build production
It compiles all the sencha classes into a giant app.js
file. But all my other classes are just compressed to build directory. They are not concatenated. how can I include them in app.js
?
F.A.Q.
Your json file is properly written, right?
A. Yes,
app.json
is written without any syntax error. The project builds successfully on invokingsencha app build production