YUI Compressor - 自动压缩 Javascript 但跳过一些文件

发布于 2024-12-06 00:09:04 字数 280 浏览 1 评论 0原文

我遵循此帖子中的建议答案:

如何自动化使用 YUI Compressor 压缩 JavaScript 文件?

但是,在我的 ~/Scripts 文件夹中,我有几个已经压缩和缩小的 jQuery 文件。我需要做什么才能以类似的方式实现自动化,但跳过 jQuery 文件?

I am following the suggested answer on this SO post:

How to automate JavaScript files compression with YUI Compressor?

However, in my ~/Scripts folder, I have several jQuery files that are already compressed and minified. What do I need to do to automate it in a similar fashion but skip the jQuery files?

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

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

发布评论

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

评论(2

假装不在乎 2024-12-13 00:09:04

您可以将所有未压缩的文件命名为 whatever.max.js,然后将规则更改为如下所示:

for %%a in (*.max.js) do @java -jar yuicompressor.jar "%%a" -o "deploy\%%a"

You could name all of your uncompressed files whatever.max.js, and then change the rule to something like this:

for %%a in (*.max.js) do @java -jar yuicompressor.jar "%%a" -o "deploy\%%a"
何以笙箫默 2024-12-13 00:09:04

也许是这样的:

cd ~/Scripts
find . -name "*jquery*" -prune -o -type d -o -exec java -jar yuicompressor.jar -o '.js$:-min.js' {} +

maybe something like this:

cd ~/Scripts
find . -name "*jquery*" -prune -o -type d -o -exec java -jar yuicompressor.jar -o '.js$:-min.js' {} +
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文