1 Star 0 Fork 0

beef-liu/easy-graph-3.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.xml 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
Jack Liu 提交于 2014-11-26 21:27 . did some
<?xml version="1.0" encoding="UTF-8"?>
<project name="js-build" default="clean" basedir="./">
<property name="jsall" value="easy-graph-3.js"/>
<property name="jsmin" value="easy-graph-3.min.js"/>
<property name="src.dir" value="src"/>
<property name="build.dir" value="build"/>
<property name="charset" value="utf-8"/>
<target name="init">
<!--
<mkdir dir="${build.dir}"/>
-->
</target>
<target name="concat" depends="init">
<concat destfile="${build.dir}/${jsall}" encoding="${charset}" outputencoding="${charset}">
<path path="${src.dir}/EasyGraph3.js" />
<path path="${src.dir}/JsUtils.js" />
<path path="${src.dir}/NetworkGraph.js" />
</concat>
<!-- http://ant.apache.org/manual/Tasks/replaceregexp.html -->
<replaceregexp match="DEBUG" replace="" flags="g" byline="true" file="${build.dir}/${jsall}" encoding="${charset}" />
</target>
<target name="compress" depends="concat">
<echo message="start compress" />
<java jar="./yuicompressor-2.4.8.jar" fork="true" failonerror="false">
<arg line="--type js --charset ${charset} --nomunge ${build.dir}/${jsall} -o ${build.dir}/${jsmin}" />
</java>
<echo message="end compress" />
</target>
<target name="clean" depends="compress">
<!--
<delete dir="${tmp.dir}"/>
-->
</target>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/beef-liu/easy-graph-3.js.git
git@gitee.com:beef-liu/easy-graph-3.js.git
beef-liu
easy-graph-3.js
easy-graph-3.js
master

搜索帮助