Remove unused Julia class and related Kotlin/JS logic from the project.

This commit is contained in:
2025-10-18 12:08:13 +02:00
parent 2ae3a9ad8f
commit 50a765f4ae
17 changed files with 638 additions and 25011 deletions

43
build.gradle.kts Normal file
View File

@@ -0,0 +1,43 @@
@file:OptIn(ExperimentalDistributionDsl::class)
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalDistributionDsl
plugins {
kotlin("multiplatform") version "2.2.20"
}
group = "nl.astraeus"
version = "0.1.0"
repositories {
mavenCentral()
}
kotlin {
js {
browser {
commonWebpackConfig {
outputFileName = "fractal.js"
sourceMaps = true
devtool = "inline-source-map"
}
binaries.executable()
distribution {
outputDirectory.set(File("$projectDir/web/"))
}
}
}
sourceSets {
val commonMain by getting {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-html:0.12.0")
}
}
val jsMain by getting {
}
}
}