Provide shortcuts for producing quick compiler for maven and rebuilding stdlib-js from ant.

This commit is contained in:
Ilya Gorbunov
2017-04-10 14:57:23 +03:00
parent afba967fcf
commit 37e046f6cd
4 changed files with 53 additions and 34 deletions
+6 -3
View File
@@ -42,9 +42,12 @@ artifacts {
archives javadocJar
}
task distJs(type: Copy) {
from(compileKotlin2Js.kotlinOptions.outputFile)
into "$distDir/js"
}
dist {
dependsOn distJs
from (jar, sourcesJar)
from(compileKotlin2Js.kotlinOptions.outputFile) {
into '../../js'
}
}