gpt4 book ai didi

eclipse - 将 Google 闭包编译器与 Eclipse IDE 集成?

转载 作者:行者123 更新时间:2023-12-02 04:03:04 25 4
gpt4 key购买 nike

有人知道如何集成Google closure compiler使用 Eclipse IDE?我想做的事情是将 Google 闭包编译器配置为 Eclipse IDE 的外部工具。然后我就可以在 IDE 中运行闭包编译器并通过单击缩小我的 Javascript 文件。有人解决这个问题了吗?

最佳答案

Rock Star Apps 提供了一个鲜为人知的插件来执行此操作。我刚刚写了一篇关于它的博客文章:[已删除,因为不再存在了]。

经过一番谷歌搜索后,我也发现了这个,但尚未测试它:https://github.com/greggian/Eclipse-Closure-Compiler .

更新:Rock Star Apps 网站不再运行。如果我今天尝试这样做,我肯定会下载 closure compiler jar ,编写一个 ant 脚本来运行它(类似于下面的代码),然后为其创建一个项目构建器。

<target name="rebuild">

<taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask"
classpath="/opt/closure-compiler/compiler.jar"/>

<jscomp compilationLevel="simple" warning="quiet"
debug="false" output="js/all.closure.js">
<sources dir="js">
<file name="script1.js"/>
<file name="script2.js"/>
<file name="script3.js"/>
<file name="script4.js"/>
<file name="script5.js"/>
<file name="script6.js"/>
</sources>
</jscomp>

</target>

关于eclipse - 将 Google 闭包编译器与 Eclipse IDE 集成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3287771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com