代码拉取完成,页面将自动刷新
同步操作将从 bui/bui 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。