1 Star 0 Fork 12

amazesam/bui

forked from bui/bui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 4.01 KB
一键复制 编辑 原始数据 按行查看 历史
索丘 提交于 2014-05-23 16:34 . iconfont文件换成相对路径
<?xml version="1.0" encoding="utf-8"?>
<project name="lplib.build" default="build" basedir=".">
<property name="tools.dir" location="tools/"/>
<property name="build.dir" location="./"/>
<property name="base.dir" location="./"/>
<property name="des.dir" location="./build"/>
<property name="component.files" value="*"/>
<property name="charset" value="UTF-8"/>
<target name="build" depends="prepare,build-all,copy-extensions,combine.js,seed.js,compress.js,native2ascii,copy">
</target>
<target name="prepare">
<delete>
<fileset dir="${des.dir}" includes="**/*-min.js,**/*.js"/>
</delete>
<copy todir="${des.dir}">
<fileset dir="${base.dir}/src/common/" includes="adapter.js">
</fileset>
</copy>
</target>
<target name="build-all">
<!--
各个组件构建
-->
<subant target="" failonerror="false" inheritall="false">
<fileset dir="${build.dir}/src" includes="**/build.xml"/>
</subant>
<subant target="" failonerror="false" inheritall="false">
<fileset dir="${build.dir}/assets/css" includes="**/build.xml"/>
</subant>
</target>
<target name="copy-extensions">
<copy todir="${des.dir}/extensions">
<fileset dir="${base.dir}/src/extensions" includes="**/*.js">
</fileset>
</copy>
</target>
<!-- 合并js -->
<target name="combine.js" depends="prepare">
<concat destfile="${des.dir}/bui.js" encoding="${charset}" outputencoding="${charset}">
<path path="${des.dir}/loader.js"/>
<path path="${des.dir}/common.js"/>
<path path="${des.dir}/cookie.js"/>
<path path="${des.dir}/data.js"/>
<path path="${des.dir}/overlay.js"/>
<path path="${des.dir}/list.js"/>
<path path="${des.dir}/picker.js"/>
<path path="${des.dir}/form.js"/>
<path path="${des.dir}/select.js"/>
<path path="${des.dir}/mask.js"/>
<path path="${des.dir}/menu.js"/>
<path path="${des.dir}/tab.js"/>
<path path="${des.dir}/toolbar.js"/>
<path path="${des.dir}/progressbar.js"/>
<path path="${des.dir}/calendar.js"/>
<path path="${des.dir}/editor.js"/>
<path path="${des.dir}/grid.js"/>
<path path="${des.dir}/tree.js"/>
<path path="${des.dir}/tooltip.js"/>
<path path="${build.dir}/src/all.js"/>
</concat>
</target>
<!-- 合并js -->
<target name="seed.js" depends="prepare">
<concat destfile="${des.dir}/seed.js" encoding="${charset}" outputencoding="${charset}">
<path path="${des.dir}/loader.js"/>
<path path="${des.dir}/common.js"/>
<path path="${des.dir}/cookie.js"/>
<path path="${build.dir}/src/seed.js"/>
</concat>
</target>
<!-- 使用uglify 压缩js -->
<target name="compress.js">
<apply executable="node" verbose="true" dest="${des.dir}">
<fileset dir="${des.dir}" includes="**/*.js"/>
<arg path="${tools.dir}/uglify/bin/uglifyjs"/>
<arg line="-o"/>
<targetfile/>
<srcfile/>
<mapper type="regexp" from="^(.*)\.(js)$" to="\1-min.\2"/>
</apply>
</target>
<!-- 对 JS 文件 ASCII 化 -->
<target name="native2ascii" depends="compress.js">
<mkdir dir="${build.dir}/tmp"/>
<move todir="${build.dir}/tmp">
<fileset dir="${des.dir}" includes="**/*-min.js, bui.js"/>
</move>
<native2ascii encoding="${charset}"
src="${build.dir}/tmp"
dest="${des.dir}"
includes="**/*.js"/>
<delete dir="${build.dir}/tmp"/>
</target>
<target name="copy" depends="native2ascii">
<copy todir="${des.dir}/css">
<fileset dir="${base.dir}/assets/css" includes="*.css">
</fileset>
</copy>
<copy todir="${des.dir}/img">
<fileset dir="${base.dir}/assets/img" includes="**/*.*">
</fileset>
</copy>
<copy todir="${des.dir}/css/bs3">
<fileset dir="${base.dir}/assets/css/bs3" includes="*.css">
</fileset>
</copy>
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/asam/bui.git
git@gitee.com:asam/bui.git
asam
bui
bui
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385