phantasmal-world/web/assembly-worker/build.gradle.kts

27 lines
510 B
Plaintext
Raw Normal View History

plugins {
kotlin("js")
}
kotlin {
js {
browser {
testTask {
useKarma {
useChromeHeadless()
}
}
}
binaries.executable()
}
}
2021-04-20 22:34:48 +08:00
val kotlinLoggingVersion: String by project.extra
dependencies {
api(project(":web:shared"))
2021-04-20 22:34:48 +08:00
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
testImplementation(kotlin("test-js"))
testImplementation(project(":test-utils"))
}