Heads up! "Contacts" example/tutorial fails when r...
# doodle
j
Heads up! "Contacts" example/tutorial fails when running "build" target....
n
hmm. works for me w/ a clean copy from master. the only thing i ran into is that Node doesn't download (due to a flag in the build script). but removing it allows everything to build as expected. build.gradle.kts
Copy code
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
//    rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download                    = false <--- This line prevents Node download
    rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().nodeVersion                 = "16.0.0"
    rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().versions.webpackCli.version = "4.10.0"
    rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().versions.webpack.version    = "5.74.0"
}
nonetheless, that issue results in
Resolving NPM dependencies using yarn' returns 139
. so not what you're seeing.