我app.json
的 Sencha touch 2 应用程序文件包含。
"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"
},
现在我看到当我调用sencha app build production
它时,它将所有 sencha 类编译成一个巨大的app.js
文件。但是我所有的其他类都只是压缩到构建目录。它们没有串联。我怎样才能将它们包括在内app.js
?
常问问题
您的 json 文件已正确编写,对吗?
A. 是的,
app.json
没有任何语法错误。该项目在调用上成功构建sencha app build production