Google 闭包编译器和 teamcity/tfs

发布于 2024-09-26 05:00:28 字数 135 浏览 5 评论 0原文

如何使 teamcity 和/或 TFS 2010 为项目中的 js 文件运行闭包编译器。 使用闭包编译器有 2 个原因:

  1. 错误/警告检测

  2. js 缩小/混淆 - 可选

How to make teamcity and/or TFS 2010 to run closure compiler for js files in a project.
There are 2 reasons for using closure compiler:

  1. error/warning detection

  2. js minification/obfuscation - optional

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无所的.畏惧 2024-10-03 05:00:29

我们使用 rake 构建和 TeamCity。它调用闭包来编译和缩小我们所有的 javascript,作为安装程序打包的一部分。

在 rake 中做到这一点非常简单,只需使用 sh 做一些类似的事情:

sh "java -jar #{JS_TOOLS_DIR}/google-closure.jar --js=#{js_file} --js_output_file=#{min_file} " + "--warning_level QUIET --compilation_level WHITESPACE_ONLY"

We use rake builds and TeamCity. It calls closure to compile and minify all of our javascript as part of packaging for installers.

Its pretty simple in rake to do this, just use sh to do somethinj like:

sh "java -jar #{JS_TOOLS_DIR}/google-closure.jar --js=#{js_file} --js_output_file=#{min_file} " + "--warning_level QUIET --compilation_level WHITESPACE_ONLY"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文