缩小多个文件夹和子文件夹中的 JS 代码结构
我正在寻找一个 JS 压缩器...我不需要混淆...该项目有超过 100 个 js 文件,排列成目录层次结构。
我用谷歌搜索过但找不到任何有用的东西。我尝试了 Dean Edwards JavaScript 的 Packer,但在缩小的脚本中出现错误。
我的要求很简单..我需要一个软件来缩小所有这些js文件。
css 文件怎么样?
im looking for a JS minifier... i dont need obfuscation... the project has over 100 js files, arranged into a directory hierarchy.
i've googled around but couldnt find anything useful. i tried Dean Edwards JavaScript's Packer but got errors in the minified script.
my requirement is simple.. i need a software to minify all these js files .
how about css files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们的应用程序中也有一堆
.js
文件和.css
。我们编写了一个在启动 YUI 压缩机的服务器上运行的 shell 脚本。
对于 HTML,我们在脚本中添加了一些正则表达式替换行来缩小它们。
所有这些都是我们用来一步将应用程序部署到服务器的高级脚本的一部分。
虽然听起来很困难,但 shell 脚本很容易管理,值得学习。
We have a bunch of
.js
files and.css
in our app too.We wrote a shell script that runs on the server that launch the YUI Compressor.
For the HTML we added some regexp replacements lines in the scripts to minify them too.
All this is part of a higher script that we use to deploy the app to the server in a single step.
Although it may sound difficult, the shell script are something easily manageable and worth learning.
PackScript 可以解决您的问题。它可以满足您的所有要求以及更多。
看看 - http://danderson00 .blogspot.com.au/2013/01/packscript-next- Generation-build-for-web.html
PackScript is the answer to your woes. It handles all of your requirements plus much more.
Check it out - http://danderson00.blogspot.com.au/2013/01/packscript-next-generation-build-for-web.html