YUI 压缩器支持多个文件的捆绑吗?
我使用 jQuery 创建了一个模块化系统。是否有类似于 Dojo 的 Shrinksafe 的构建系统,可以将我的所有模块文件合并到一个用于生产的文件中?
YUI Compresser 是否只支持单个文件压缩,还是也支持捆绑模块文件? JavascriptMVC 使用 Shrinksafe 的自定义构建。有关该方向的任何链接或信息也会有所帮助。提前致谢。
I created a moduling system using jQuery. Is there any build system something similar to Dojo's Shrinksafe, that could combine all my module files into one single file for production?
Does YUI Compresser is all about single file compression or does it support bundling the module files as well? JavascriptMVC uses a custom build of Shrinksafe. Any links or info on that direction will also help. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RequireJS 有 一个优化工具,可以将多个文件组合在一起,它使用 Google 的 Closure Compiler 进行 JavaScript 缩小/注释剥离。该优化工具基于我在 Dojo 构建系统中所做的工作,但它更独立工作。
免责声明:我开发 RequireJS
RequireJS has an optimization tool that can combine multiple files together, and it uses Google's Closure Compiler to do JavaScript minification/comment stripping. The optimization tool was based on the work I did in the Dojo build system, but it is something that works more stand-alone.
Disclaimer: I develop RequireJS