使用谷歌闭包编译器将文件夹中的所有js压缩到新文件夹?

发布于 2024-11-26 23:28:23 字数 456 浏览 1 评论 0原文

如何将文件夹中的所有js压缩到新文件夹

我在谷歌和stackoverflow上进行了搜索,我发现的只是 使用 Google Closure 压缩所有 .js 文件一个文件中的编译器应用程序 将所有内容合二为一..+我们可以添加通配符或其他东西吗?

所以我可以做一些类似的事情,

java -jar bin/compiler.jar ../../path/my/*.js --js_output_file ../../path/new/*.js

感谢您查看

Adam Ramadhan

how can i compress all my js in a folder to a new folder ?

i have search around google and stackoverflow, what i found is just
Compress all file .js with Google Closure Compiler Application in one File
that puting it all to one.. + can we put a wildcard or something?

so i can do something like

java -jar bin/compiler.jar ../../path/my/*.js --js_output_file ../../path/new/*.js

thanks for looking in

Adam Ramadhan

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

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

发布评论

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

评论(2

驱逐舰岛风号 2024-12-03 23:28:23

Bash 脚本来救援。类似的东西

files=`find ../../path/my -name "*.js"`
for i in $files;
do
    java -jar bin/compiler.jar $i --js_output_file `dirname $i`../new/$i.js
done

(未测试)

Bash scripting to the rescue. Something like

files=`find ../../path/my -name "*.js"`
for i in $files;
do
    java -jar bin/compiler.jar $i --js_output_file `dirname $i`../new/$i.js
done

(not tested)

蓝戈者 2024-12-03 23:28:23

我在 gitub 上有一个 bash 脚本,https://github.com/fatlinesofcode/compile-js

工作方式类似于

compile-js build ../../path/new/output.min.js ../../path/my/*

I've got a bash script on gitub for this, https://github.com/fatlinesofcode/compile-js

works like this

compile-js build ../../path/new/output.min.js ../../path/my/*

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