Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

26 lines
565 B
Kotlin

plugins {
alias(libs.plugins.kotlin.multiplatform)
id("com.varabyte.kobweb.internal.publish")
}
group = "com.varabyte.kobweb"
version = libs.versions.kobweb.get()
kotlin {
js {
browser()
}
sourceSets {
jsMain.dependencies {
api(projects.common.frameworkAnnotations) // api or else opt-in message won't be shown
}
}
}
kobwebPublication {
artifactName.set("Kobweb Worker Interface")
artifactId.set("kobweb-worker-interface")
description.set("Common interface for worker implementations.")
}