2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
2021-07-25 02:13:02 +08:00
|
|
|
id("world.phantasmal.js")
|
2020-10-12 04:58:28 +08:00
|
|
|
kotlin("plugin.serialization")
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
2021-09-06 20:17:20 +08:00
|
|
|
compilations.configureEach {
|
|
|
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
browser {
|
2021-02-14 03:30:56 +08:00
|
|
|
commonWebpackConfig {
|
2020-10-13 05:06:56 +08:00
|
|
|
cssSupport.enabled = true
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
runTask {
|
|
|
|
devServer = devServer!!.copy(
|
|
|
|
open = false,
|
2021-07-25 02:13:02 +08:00
|
|
|
port = 1623,
|
2020-10-11 05:48:38 +08:00
|
|
|
)
|
2020-10-13 05:06:56 +08:00
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
binaries.executable()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-12 04:58:28 +08:00
|
|
|
val ktorVersion: String by project.extra
|
2020-11-16 03:41:30 +08:00
|
|
|
val serializationVersion: String by project.extra
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
dependencies {
|
2021-07-25 23:24:42 +08:00
|
|
|
implementation(project(":psolib"))
|
2020-10-11 05:48:38 +08:00
|
|
|
implementation(project(":webui"))
|
2020-12-15 01:39:26 +08:00
|
|
|
implementation(project(":web:shared"))
|
2020-10-11 05:48:38 +08:00
|
|
|
|
2021-05-11 23:51:26 +08:00
|
|
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-client-serialization:$ktorVersion")
|
2020-12-15 01:39:26 +08:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
2021-07-25 03:19:07 +08:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.2.1")
|
2020-11-15 05:18:10 +08:00
|
|
|
implementation(npm("golden-layout", "^1.5.9"))
|
2021-07-25 06:05:45 +08:00
|
|
|
implementation(npm("monaco-editor", "0.26.1"))
|
2021-05-12 00:19:27 +08:00
|
|
|
implementation(npm("three", "^0.128.0"))
|
2021-03-15 05:52:30 +08:00
|
|
|
implementation(npm("javascript-lp-solver", "0.4.17"))
|
2020-11-15 05:18:10 +08:00
|
|
|
|
2021-05-12 00:19:27 +08:00
|
|
|
implementation(devNpm("file-loader", "^6.2.0"))
|
2021-07-25 06:05:45 +08:00
|
|
|
implementation(devNpm("monaco-editor-webpack-plugin", "4.1.1"))
|
2020-10-11 05:48:38 +08:00
|
|
|
|
2020-10-15 07:19:12 +08:00
|
|
|
testImplementation(project(":test-utils"))
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
2020-12-15 01:39:26 +08:00
|
|
|
|
2020-12-16 04:29:58 +08:00
|
|
|
val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
|
2021-03-06 20:33:04 +08:00
|
|
|
dependsOn(":web:assembly-worker:build")
|
|
|
|
|
2020-12-15 01:39:26 +08:00
|
|
|
val workerDist = project(":web:assembly-worker").buildDir.resolve("distributions")
|
2021-03-06 20:33:04 +08:00
|
|
|
|
2020-12-15 01:39:26 +08:00
|
|
|
from(workerDist.resolve("assembly-worker.js"), workerDist.resolve("assembly-worker.js.map"))
|
|
|
|
into(buildDir.resolve("processedResources/js/main"))
|
|
|
|
}
|
2020-12-16 04:29:58 +08:00
|
|
|
|
|
|
|
// TODO: Figure out how to make this work with --continuous.
|
2021-08-15 21:36:35 +08:00
|
|
|
tasks.named("processResources").configure { dependsOn(copyAssemblyWorkerJsTask) }
|
2021-02-14 03:30:56 +08:00
|
|
|
|
2021-03-06 20:33:04 +08:00
|
|
|
tasks.register<Copy>("generateAssets") {
|
|
|
|
dependsOn(":web:assets-generation:generateAssets")
|
|
|
|
|
|
|
|
from("assets-generation/build/generatedAssets")
|
|
|
|
into("src/main/resources/assets")
|
2021-02-14 03:30:56 +08:00
|
|
|
}
|