removed coffeescript target from build.xml
This commit is contained in:
parent
f88d1f0428
commit
ab2b26dace
2 changed files with 10 additions and 8 deletions
|
@ -72,17 +72,10 @@
|
||||||
</java>
|
</java>
|
||||||
</target>
|
</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">
|
<zip destfile="${build}/${js-plugins-dir}.zip">
|
||||||
<zipfileset dir="./src/main/javascript" />
|
<zipfileset dir="./src/main/javascript" />
|
||||||
<zipfileset dir="${build}/coffeescript" />
|
|
||||||
</zip>
|
</zip>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
@ -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
|
# 2013 12 29
|
||||||
|
|
||||||
Bug Fix: [Can't get Scriptcraft core libraries working][bug103].
|
Bug Fix: [Can't get Scriptcraft core libraries working][bug103].
|
||||||
|
|
Reference in a new issue