Skip to content

Commit

Permalink
add precompiled html5shiv sources (fixes Issue aFarkas#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed May 13, 2012
1 parent 00419da commit aaff13d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
23 changes: 23 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<project name="html5shiv" default="html5shiv" basedir=".">

<property name="dist" value="./dist/"/>
<property name="src" value="./src"/>

<target name="html5shiv">
<mkdir dir="${dist}" />
<apply executable="java" parallel="false" verbose="true" dest="${dist}">
<fileset dir="${src}">
<include name="*.js" />
</fileset>
<arg line="-jar" />
<arg path="build/compiler.jar" />
<arg value="--warning_level" />
<arg value="QUIET" />
<arg value="--js_output_file" />
<targetfile />
<arg value="--js" />
<mapper type="glob" from="*.js" to="*.js" />
</apply>
</target>

</project>
Binary file added build/compiler.jar
Binary file not shown.
7 changes: 7 additions & 0 deletions dist/html5shiv-printshiv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/html5shiv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit aaff13d

Please sign in to comment.