2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("js")
|
2020-10-12 04:58:28 +08:00
|
|
|
kotlin("plugin.serialization")
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {
|
|
|
|
runTask {
|
|
|
|
devServer = devServer!!.copy(
|
|
|
|
open = false,
|
|
|
|
port = 1623
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
binaries.executable()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-12 04:58:28 +08:00
|
|
|
val coroutinesVersion: String by project.ext
|
2020-10-11 05:48:38 +08:00
|
|
|
val kotlinLoggingVersion: String by project.extra
|
2020-10-12 04:58:28 +08:00
|
|
|
val ktorVersion: String by project.extra
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":lib"))
|
|
|
|
implementation(project(":webui"))
|
|
|
|
|
|
|
|
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
|
2020-10-12 04:58:28 +08:00
|
|
|
implementation("io.ktor:ktor-client-core-js:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core-js:1.0.0")
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
testImplementation(kotlin("test-js"))
|
|
|
|
}
|