Quantcast
Channel: IT社区推荐资讯 - ITIndex.net
Viewing all articles
Browse latest Browse all 15843

uglifyjs批量压缩js

$
0
0
jquery官方使用uglifyjs进行压缩的,压缩比较高

需要安装软件
1、node.js
2、uglifyjs
3、java
4、ant

uglifyjs的安装方法

npm install uglify-js -g



新建build.xml
<project name="前端js压缩" default="compress" basedir="."><description>前端js压缩,使用uglifyjs压缩当前目录里的所有js文件,
      压缩后,会将原文件替换为压缩过的文件。
    </description><!-- set global properties for this build --><!-- 项目根目录 --><property name="root" location="../public_html/js/" /><!-- js文件压缩后的前缀,比如prefix=.min.js,生成*.min.js --><property name="suffix"  value=".js"/><!-- node.js npm的路径 用npm root -g 命令查看 --><property name="npm"  value="C:\Users\consumer\AppData\Roaming\npm"/><target name="compress" description="压缩" ><echo>开始压缩js文件</echo><apply executable="${npm}\uglifyjs.cmd" dest="${root}" force="true" verbose="true"><srcfile/><arg value="-m"/><arg value="-c"/><arg line="-o"/><targetfile/><fileset dir="${root}"><filename name="**/*.js"/></fileset><mapper type="glob" from="*.js" to="*${suffix}"/></apply><echo>压缩结束</echo></target></project>


执行命令
ant  -d -v -f c:\build.xml

结果:
     [echo] 压缩结束

BUILD SUCCESSFUL
Total time: 31 seconds

已有 0人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐




Viewing all articles
Browse latest Browse all 15843

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>