forked from jquery/jquery-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
24 lines (19 loc) · 683 Bytes
/
build.xml
File metadata and controls
24 lines (19 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
jQuery UI Tasks
@author Eduardo Lundgren (eduardolundgren@gmail.com)
-->
<project name="jquery-ui" default="remove-spaces" basedir=".">
<target name="load.properties">
<property file="ant.properties" />
<property name="ui.dir" value="." />
<property name="src.dir" value="${ui.dir}/" />
</target>
<target name="remove-spaces" depends="load.properties">
<replaceregexp match="[\t ]+$" replace="" flags="g" byline="true">
<fileset dir="${src.dir}" includes="*.js"/>
<fileset dir="${src.dir}/i18n/" includes="*.js"/>
</replaceregexp>
<echo message="All trailing spaces removed." />
</target>
</project>