Skip to content

Commit ef40eed

Browse files
committed
Added .plugin files for all tool commands in the compiler-js project (ceylon/ceylon-common#52)
1 parent f1efe49 commit ef40eed

4 files changed

+20
-0
lines changed

bin/ceylon-compile-js.plugin

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
; Plugin definition for the "ceylon compile-js" tool
2+
summary=Compiles Ceylon source code to JavaScript and directly produces module and source archives in a module repository
3+
module=com.redhat.ceylon.compiler.js/@ceylon-version@
4+
class=com.redhat.ceylon.compiler.js.CeylonCompileJsTool
5+

bin/ceylon-run-js.plugin

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
; Plugin definition for the "ceylon run-js" tool
2+
summary=Executes a Ceylon program
3+
module=com.redhat.ceylon.compiler.js/@ceylon-version@
4+
class=com.redhat.ceylon.compiler.js.CeylonRunJsTool
5+

bin/ceylon-test-js.plugin

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
; Plugin definition for the "ceylon test-js" tool
2+
summary=Executes tests
3+
module=com.redhat.ceylon.compiler.js/@ceylon-version@
4+
class=com.redhat.ceylon.compiler.js.CeylonTestJsTool
5+

build.xml

+5
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@
204204
<target name="publish"
205205
depends="dist,clean.repo,init.repo,publish-internal"
206206
description="Publish Ceylon JS compiler module to default repo">
207+
<mkdir dir="${build.bin}" />
208+
<copy todir="${build.bin}">
209+
<fileset dir="${basedir}/bin">
210+
</fileset>
211+
</copy>
207212
</target>
208213

209214
<target name="publish-internal" depends="init.repo">

0 commit comments

Comments
 (0)