自动压缩 sencha touch 文件以传送到 Heroku
我有一个使用 MVC 构建并部署到 Heroku 上的 sencha 触摸应用程序。
Heroku 很棒,因为它可以从我的本地环境无缝交付到云。
然而,理想情况下,我希望传输到 Heroku 的过程将我的文件压缩为一个 cs 和一个 js。这样我就可以继续使用未压缩的文件进行本地开发,并更新应用程序压缩和部署优化版本。
截至目前,我的数据大小为 1.0MB,需要 3 秒。太多了! (当然我现在正在使用 sencha 的调试版本。)
有人有什么想法吗?
I have a sencha touch app built using MVC and deployed onto Heroku.
Heroku is awesome becuase it makes delivery to the cloud seamless from my local environment.
HOWEVER, IDEALLY, I'd like the process of transferring to Heroku compress my files into one cs and one js. This way i can continue developing locally using uncompressed files and updating the app compresses and deploys the optimized version.
As of now my data size is 1.0MB and takes 3 seconds. Too much! (of course I am using debug versions of sencha at the moment.)
Anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用 asset_packager - 基本上是一个 yml 文件,其中列出了所有 js 和 css 文件,然后在部署之前有一个 rake rask 会生成一个 js 和 css 文件,然后我们将其部署到 Heroku
we use asset_packager - basically a yml file which lists all your js and css files and then before deployment there's a rake rask which produces a single js and css file which we when then deploy to Heroku