You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension |
|
|
|
plugins { |
|
kotlin("multiplatform") |
|
kotlin("plugin.compose") |
|
id("org.jetbrains.compose") |
|
} |
|
group = "com.theapache64.composebird" |
|
version = "1.0.0-alpha01" |
|
|
|
// Add maven repositories |
|
repositories { |
|
mavenCentral() |
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") |
|
google() |
|
} |
|
|
|
kotlin { |
|
js(IR) { |
|
browser() |
|
binaries.executable() |
|
} |
|
sourceSets { |
|
val jsMain by getting { |
|
dependencies { |
|
implementation(compose.html.core) |
|
implementation(compose.runtime) |
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0-RC") |
|
} |
|
} |
|
} |
|
} |
|
|
|
// 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.10.0" |
|
} |
|
}
|
|
|