littlekt-game-template/build.gradle.kts
Colt Daily fc0503d099
Update template to work with LittleKt 0.10.0 WebGPU update (#6)
* update template to work with new WebGPU LittleKt 0.10.0 update

* remove SNAPSHOT version of LittleKt

* gradle: update to 8.5
2024-07-16 10:27:33 -04:00

20 lines
498 B
Text

plugins {
alias(libs.plugins.kotlin.multiplatform) apply false
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
group = "com.game.template"
version = "1.0"
}
plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin> {
the<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension>().apply {
yarnLockMismatchReport = org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport.WARNING
}
}