在发布过程中什么时候应该缩小我的 css 和 js 文件?

发布于 2024-11-26 13:43:07 字数 399 浏览 0 评论 0原文

目前我们有一个非常简单(但有效)的发布流程。我们在 SVN 中标记新版本。该版本将导出到测试环境。从那里我们同步到验收环境,然后再同步到生产环境。

现在我们要开始缩小 css 和 js 文件。我想在发布到验收的过程中对我们的测试环境进行缩小,以便在验收环境和生产环境中我们都有缩小的文件。但是,如果我缩小那里的文件,时间戳会发生变化,并且 rsync 每次都会传输所有 css 和 js 文件,即使缩小的内容没有改变。

我的问题是:解决这个问题的最佳实践是什么? 我应该使用与 rsync 不同的机制来发布新版本吗? 我应该将缩小版本放入 SVN 中吗?但我不希望在开发中缩小文件,那么缩小(并可能合并)它们的最佳时机是什么?

我们使用 PHP 5.3.6,我开始研究 Yui-compressor,因为我可以轻松地在脚本中使用它。

Currently we have a very simple (but effective) release process. We tag a new version in SVN. This version will is exported to a test environment. From there we rsync to the Acceptance environment and from there to Production.

Now we want to start minifying css and js files. I wanted to do this minifying on our test-environment in the process of releasing to Acceptance, so that both on the Acceptance environment and Production environment we have minified files. However, if I minify the files there, the timestamps change, and rsync will every time transfer ALL css and js files, even though the minified content hasn't changed.

My question is: what is best practice to solve this?
Should I use a different mechanism than rsync to release a new version?
Should I put the minified versions in SVN already? But I don't want minified files in development, so what is the best moment to minify (and possibly combine) them?

We use PHP 5.3.6 and I started looking at Yui-compressor because I can easily use it in scripts.

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

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

发布评论

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

评论(1

不打扰别人 2024-12-03 13:43:07

仅当源文件上的时间戳比已缩小的文件上的时间戳新时,才应再次缩小文件。如果你这样做,rsync 将正常工作并且只传输更改的文件。

如果您使用 Apache Ant 或 Phing 等构建软件,这应该很容易实现。他们有专门的测试来检测时间戳变化。

You should only minify the files again when the timestamp on the source files is newer than the timestamp on the already minified files. If you do that, rsync will work just fine and only transfer changed files.

If you use build software like Apache Ant or Phing this should be quite easy to achieve. They have testst specifically to detect timestamp changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文