File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
build-logic/src/main/kotlin/kotlinx/io/conventions Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension
7
7
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
8
8
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
9
+ import org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask
9
10
import kotlin.jvm.optionals.getOrNull
10
11
11
12
plugins {
@@ -198,5 +199,10 @@ fun androidTargets() = listOf(
198
199
)
199
200
200
201
rootProject.the<NodeJsRootExtension >().apply {
201
- nodeVersion = " 21.0.0"
202
+ nodeVersion = " 21.0.0-v8-canary202310177990572111"
203
+ nodeDownloadBaseUrl = " https://nodejs.org/download/v8-canary"
204
+ }
205
+
206
+ rootProject.tasks.withType<KotlinNpmInstallTask >().configureEach {
207
+ args.add(" --ignore-engines" )
202
208
}
You can’t perform that action at this time.
0 commit comments