Playing with settings
This commit is contained in:
@@ -28,6 +28,22 @@ kotlin {
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
@OptIn(ExperimentalWasmDsl::class)
|
||||
wasmJs {
|
||||
binaries.executable()
|
||||
browser{
|
||||
distribution {
|
||||
outputDirectory.set(File("$projectDir/web/"))
|
||||
}
|
||||
}
|
||||
|
||||
mavenPublication {
|
||||
groupId = group as String
|
||||
pom { name = "${project.name}-wasm-js" }
|
||||
}
|
||||
}
|
||||
*/
|
||||
jvm{
|
||||
withJava()
|
||||
}
|
||||
@@ -37,15 +53,14 @@ kotlin {
|
||||
dependencies {
|
||||
implementation(project(":common"))
|
||||
//base
|
||||
api("nl.astraeus:kotlin-css-generator:1.0.7")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
|
||||
api("nl.astraeus:kotlin-css-generator:1.0.9-SNAPSHOT")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0")
|
||||
}
|
||||
}
|
||||
val jsMain by getting {
|
||||
dependencies {
|
||||
//base
|
||||
implementation("nl.astraeus:kotlin-komponent-js:1.2.2")
|
||||
implementation("nl.astraeus:vst-ui-base:1.0.0-SNAPSHOT")
|
||||
implementation("nl.astraeus:kotlin-komponent:1.2.4-SNAPSHOT")
|
||||
implementation("nl.astraeus:vst-ui-base:1.0.1-SNAPSHOT")
|
||||
}
|
||||
}
|
||||
val jsTest by getting {
|
||||
@@ -53,6 +68,12 @@ kotlin {
|
||||
implementation(kotlin("test-js"))
|
||||
}
|
||||
}
|
||||
/* val wasmJsMain by getting {
|
||||
dependencies {
|
||||
implementation("nl.astraeus:kotlin-komponent:1.2.4-SNAPSHOT")
|
||||
implementation("nl.astraeus:vst-ui-base:1.0.1-SNAPSHOT")
|
||||
}
|
||||
}*/
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
//base
|
||||
|
||||
Reference in New Issue
Block a user