removed coffeescript target from build.xml

This commit is contained in:
walterhiggins 2013-12-30 21:52:58 +00:00
parent f88d1f0428
commit ab2b26dace
2 changed files with 10 additions and 8 deletions

View File

@ -72,17 +72,10 @@
</java>
</target>
<target name="coffeescript_setup" depends="init" description="Gets latest coffeescript compiler">
<echo>Retrieving Coffeescript compiler</echo>
<mkdir dir="${build}/coffeescript/lib" />
<get src="https://raw.github.com/jashkenas/coffee-script/master/extras/coffee-script.js"
dest="${build}/coffeescript/lib/coffeescript.js"/>
</target>
<target name="zip_js" depends="coffeescript_setup">
<target name="zip_js" depends="init">
<zip destfile="${build}/${js-plugins-dir}.zip">
<zipfileset dir="./src/main/javascript" />
<zipfileset dir="${build}/coffeescript" />
</zip>
</target>

View File

@ -1,3 +1,12 @@
# 2013 12 30
Removing coffeescript support because coffeescript.js will not
compile/evaluate (generated bytecode exceeds 64K limit).
Updated plugin to remove `self` variable once the `js` command
evaluation has completed (limits the scope of the `self` variable to
just command-prompt evaluation).
# 2013 12 29
Bug Fix: [Can't get Scriptcraft core libraries working][bug103].