我使用 sencha create app 命令创建了我的应用程序。它在我的机器上以及我们的网络服务器上本地工作。我正在尝试为生产构建应用程序,但以下命令对我不起作用:
sencha app build 生产
我没有收到任何错误消息或输出。目录中没有任何变化。
以下命令:
sencha build -p appname.jsb3 -v -d 。
生成 jsb3 文件。但是,我的 index.html 永远不会更新以加载新文件。根据我在网上找到的信息,我的 index.html 应该更新为指向新文件。
我想我在某个地方遗漏了一些东西,但我在网上找不到任何适合我的教程。谁能指出我正确的方向?如果这有助于确定我做错了什么,我的 index.html 会粘贴在下面。
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>EGL Mobile</title>
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
}
#appLoadingIndicator {
position: absolute;
top: 50%;
left: 50%;
margin-top: -10px;
margin-left: -50px;
width: 100px;
height: 20px;
}
#appLoadingIndicator > * {
background-color: #FFFFFF;
float: left;
height: 20px;
margin-left: 11px;
width: 20px;
-webkit-animation-name: appLoadingIndicator;
-webkit-border-radius: 13px;
-webkit-animation-duration: 0.8s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: linear;
opacity: 0.3
}
#appLoadingIndicator > :nth-child(1) {
-webkit-animation-delay: 0.18s;
}
#appLoadingIndicator > :nth-child(2) {
-webkit-animation-delay: 0.42s;
}
#appLoadingIndicator > :nth-child(3) {
-webkit-animation-delay: 0.54s;
}
@-webkit-keyframes appLoadingIndicator{
0% {
opacity: 0.3
}
50% {
opacity: 1;
background-color:#1985D0
}
100% {
opacity:0.3
}
}
</style>
<script id="microloader" type="text/javascript" src="sdk/microloader/development.js"></script>
</head>
<body>
<div id="appLoadingIndicator">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>