yuicompressor-2.4.2.zip 中的 rhino-1.6R7.jar 和 jargs-1.0.jar
我将这两个文件放在 yuicompressor-2.4.2.zip 内的 lib 文件夹中。没有它们,我的压缩机运行得很好。它们是做什么用的?我错过了什么吗?
I have those two in the lib folder inside yuicompressor-2.4.2.zip. I ran the compressor completely fine without them. What are they for? Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 yui 源代码中的依赖关系后,很明显,jargs 类 CmdLineParser 正在直接被使用 - 并且当检查 ant 构建文件 lib 路径时,这种依赖关系也很清楚。
但是,yui 压缩器 jar 本身并不使用 lib 文件夹 - 它仅用于编译 yui 代码。实际的 yui 压缩罐包含 rhino 和 jargs jar 的所有内容 - 因此您实际上可以删除文件夹的所有其他内容,然后直接使用 yui 压缩罐。
Upon checking the dependency in yui source code it is clear that jargs class CmdLineParser is directly being used - and this dependency is also clear when one checks the ant build file lib path.
However, the lib folder is not used by the yui compressor jar itself - it is only used for compiling yui code. The actual yui compressor jar has all the contents of both the rhino and the jargs jar inside it - hence you can really just remove all the other contents of the folders and just use the yui compression jar directly.