mirror of
https://github.com/littlektframework/littlekt-game-template.git
synced 2025-01-10 11:30:53 -07:00
fc0503d099
* update template to work with new WebGPU LittleKt 0.10.0 update * remove SNAPSHOT version of LittleKt * gradle: update to 8.5
20 lines
498 B
Text
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
|
|
}
|
|
}
|