Skip to content

Commit

Permalink
fix: ignore engine compatibility during node install
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Jan 27, 2024
1 parent 6da02e4 commit b879f65
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,9 @@ rootProject.plugins.withType(YarnPlugin::class.java) {
rootProject.the<YarnRootExtension>().reportNewYarnLock = false
rootProject.the<YarnRootExtension>().yarnLockAutoReplace = true
}
tasks.withType(org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask::class.java).configureEach {
args.add("--ignore-engines")
}

val javadocsJar: TaskProvider<Jar> by tasks.registering(Jar::class) {
dependsOn(tasks.dokkaHtml)
Expand Down

0 comments on commit b879f65

Please sign in to comment.