Hi. I'm reading code of the kotlinconf-app and can...
# multiplatform
a
Hi. I'm reading code of the kotlinconf-app and can't understand one thing. The web client module contains this:
Copy code
afterEvaluate {
    copyKotlinJs.dependsOn copyDependenciesKotlinJs
}
But I can't find where does task
copyDependenciesKotlinJs
come from? Seems my project has the plugins applied, but there is no such task.
a
I might be wrong, but I think that's on of the tasks DCE plugin used to create. I think this intermediate task was removed roughly around 1.2.20
a
Ok, that answers..