|
|
|
import org.jetbrains.compose.compose
|
|
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
// __KOTLIN_COMPOSE_VERSION__
|
|
|
|
kotlin("multiplatform") version "1.5.31"
|
|
|
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
|
|
|
id("org.jetbrains.compose") version ("1.0.0")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js(IR) {
|
|
|
|
browser()
|
|
|
|
binaries.executable()
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
|
|
val jsMain by getting {
|
|
|
|
kotlin.srcDir("src/main/kotlin")
|
|
|
|
resources.srcDir("src/main/resources")
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(compose.web.core)
|
|
|
|
implementation(compose.runtime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// a temporary workaround for a bug in jsRun invocation - see https://youtrack.jetbrains.com/issue/KT-48273
|
|
|
|
afterEvaluate {
|
|
|
|
rootProject.extensions.configure<NodeJsRootExtension> {
|
|
|
|
versions.webpackDevServer.version = "4.0.0"
|
|
|
|
versions.webpackCli.version = "4.9.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|