hfhbd
06/18/2021, 7:36 PMCannot run program "/root/.gradle/nodejs/node-v14.15.4-linux-x64/bin/node"
hfhbd
06/18/2021, 7:38 PMFROM docker:dind
RUN apk update
RUN apk add openjdk11-jre-headless
RUN apk add --update nodejs
RUN apk add yarn
RUN apk add chromium
build.gradle.kts
plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
(project.extensions["kotlinNodeJs"] as org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension).apply {
download = false
}
}
plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension>().apply {
}
}
I found this issue in the node-gradle plugin, but does MPP js use this plugin?
And iff, how can you include this workaround?
https://github.com/node-gradle/gradle-node-plugin/issues/51#issuecomment-623097695Big Chungus
06/18/2021, 7:58 PMhfhbd
06/18/2021, 8:05 PMCLOVIS
06/19/2021, 8:00 AM