首页 > 代码库 > bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案
bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案
将压缩级别由simple改成whitespace
问题就是这样之后压缩后的文件大了很多
<?xml version="1.0"?><project name="Javascript compress project" basedir="." default="compile"> <taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask" classpath="WebRoot/WEB-INF/lib/compiler.jar"/> <target name="compile" depends="clear"> <jscomp compilationLevel="whitespace" warning="quiet" debug="false" output="WebRoot/min/js-all.min.js"> <sources dir="${basedir}/WebRoot/js"> <file name="jquery.cookie.js"/> <file name="moment.min.js"/> <file name="modernizr.min.js"/> <file name="retina.min.js"/> <file name="theme.js"/> <file name="json2.js"/> <file name="jquery.md5.js"/> <file name="markdown.js"/> <file name="bootstrap-datetimepicker.min.js"/> <file name="bootstrap-datetimepicker.zh-CN.js"/> </sources> </jscomp> </target> <target name="clear"> <delete file="WebRoot/min/js-all.min.js"/> </target></project>
bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。