Google 闭包编译器和 teamcity/tfs
如何使 teamcity 和/或 TFS 2010 为项目中的 js 文件运行闭包编译器。 使用闭包编译器有 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:
error/warning detection
js minification/obfuscation - optional
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用 rake 构建和 TeamCity。它调用闭包来编译和缩小我们所有的 javascript,作为安装程序打包的一部分。
在 rake 中做到这一点非常简单,只需使用 sh 做一些类似的事情:
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: