Is there a known issue with gradle not finding nod...
# javascript
u
Is there a known issue with gradle not finding node? I get
Could not find org.nodejs:node:12.14.0
with kotlin eap and `Could not find org.nodejsnode10.15.3.`with the stable release
i
It can be because nodejs distributions can be absent in official dist For 12.14.0 - https://nodejs.org/dist/v12.14.0/ You can install nodejs locally and turn off downloading of nodejs
u
thx
u
Do you have any hint at how to do that with the current kotlin-js or mpp plugin? My google foo seems not sufficient for that 🙂
I mean how to turn off downloading. I know how to install node locally.
i
You can configure
NodeJsRootExtension
Copy code
plugins.withType<NodeJsRootPlugin> {
    configure<NodeJsRootExtension> {
        download = false
    }
}
👍 1
u
Thx