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

28 lines
610 B
Kotlin

plugins {
alias(libs.plugins.kotlin.multiplatform)
id("com.varabyte.kobweb.internal.publish")
}
group = "com.varabyte.kobwebx"
version = libs.versions.kobweb.get()
kotlin {
jvm()
js {
browser()
}
sourceSets {
commonTest.dependencies {
implementation(libs.truthish)
implementation(kotlin("test"))
}
}
}
kobwebPublication {
artifactName.set("Kobwebx Frontmatter")
artifactId.set("kobwebx-frontmatter")
description.set("Frontmatter support shared between the Markdown frontend artifact and the Kobweb Markdown plugin")
}