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
+5 -3
View File
@@ -227,8 +227,13 @@ artifacts {
archives javadocJar
}
task distJs(type: Copy) {
from(compileJs)
into "$distDir/js"
}
dist {
dependsOn distJs
[mergedJar, sourcesJar].forEach {
from(it)
// legacy
@@ -236,9 +241,6 @@ dist {
rename("kotlin-stdlib-js", 'kotlin-jslib')
}
}
from(compileJs) {
into '../../js'
}
}