mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
plugins {
|
|
kotlin("js")
|
|
kotlin("plugin.serialization")
|
|
id("world.phantasmal.gradle.js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {
|
|
commonWebpackConfig {
|
|
cssSupport.enabled = true
|
|
}
|
|
runTask {
|
|
devServer = devServer!!.copy(
|
|
open = false,
|
|
port = 1623
|
|
)
|
|
}
|
|
testTask {
|
|
useKarma {
|
|
useChromeHeadless()
|
|
}
|
|
}
|
|
}
|
|
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")
|
|
implementation(npm("golden-layout", "^1.5.9"))
|
|
implementation(npm("monaco-editor", "0.20.0"))
|
|
implementation(npm("three", "^0.126.0"))
|
|
implementation(npm("javascript-lp-solver", "0.4.17"))
|
|
|
|
implementation(devNpm("file-loader", "^6.0.0"))
|
|
implementation(devNpm("monaco-editor-webpack-plugin", "1.9.0"))
|
|
|
|
testImplementation(kotlin("test-js"))
|
|
testImplementation(project(":test-utils"))
|
|
}
|
|
|
|
val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
|
|
dependsOn(":web:assembly-worker:build")
|
|
|
|
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"))
|
|
}
|
|
|
|
// TODO: Figure out how to make this work with --continuous.
|
|
tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask)
|
|
|
|
tasks.register<Copy>("generateAssets") {
|
|
dependsOn(":web:assets-generation:generateAssets")
|
|
|
|
from("assets-generation/build/generatedAssets")
|
|
into("src/main/resources/assets")
|
|
}
|