phantasmal-world/web/build.gradle.kts

65 lines
2.1 KiB
Plaintext
Raw Normal View History

plugins {
kotlin("js")
kotlin("plugin.serialization")
id("world.phantasmal.gradle.js")
}
kotlin {
js {
browser {
webpackTask {
cssSupport.enabled = true
}
runTask {
devServer = devServer!!.copy(
open = false,
port = 1623
)
cssSupport.enabled = true
}
testTask {
useKarma {
useChromeHeadless()
webpackConfig.cssSupport.enabled = true
}
}
}
binaries.executable()
}
}
val kotlinLoggingVersion: String by project.extra
val ktorVersion: String by project.extra
val serializationVersion: String by project.extra
dependencies {
implementation(project(":lib"))
implementation(project(":webui"))
implementation(project(":web:shared"))
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
implementation("io.ktor:ktor-client-core-js:$ktorVersion")
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
2020-11-15 05:18:10 +08:00
implementation(npm("golden-layout", "^1.5.9"))
2020-12-06 04:48:26 +08:00
implementation(npm("monaco-editor", "0.20.0"))
implementation(npm("three", "^0.122.0"))
2020-11-15 05:18:10 +08:00
implementation(devNpm("file-loader", "^6.0.0"))
2020-12-06 04:48:26 +08:00
implementation(devNpm("monaco-editor-webpack-plugin", "1.9.0"))
testImplementation(kotlin("test-js"))
testImplementation(project(":test-utils"))
}
val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
val workerDist = project(":web:assembly-worker").buildDir.resolve("distributions")
from(workerDist.resolve("assembly-worker.js"), workerDist.resolve("assembly-worker.js.map"))
into(buildDir.resolve("processedResources/js/main"))
dependsOn(":web:assembly-worker:build")
}
// TODO: Figure out how to make this work with --continuous.
tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask)