Kenneth Andersson
02/24/2020, 11:12 AMtask myTask {
dependsOn(tasks.named("jsMainClasses").get())
println("A task running after jsMainClasses is done.")
}
Our use-case is that I want to copy the js-build artifacts to a different location after they are builttapchicoma
02/25/2020, 7:15 PMtasks.register("copyJsBuild", Copy::class.java) {
from tasks.named("jsMainClasses")
into file("target-dir")
}
tapchicoma
02/25/2020, 7:16 PMKenneth Andersson
02/26/2020, 1:45 PM