使用谷歌闭包编译器将文件夹中的所有js压缩到新文件夹?
如何将文件夹中的所有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Bash 脚本来救援。类似的东西
(未测试)
Bash scripting to the rescue. Something like
(not tested)
我在 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/*