Skip to content

Commit 96f3e90

Browse files
committed
Add clikt-markdown to published modules
1 parent 88fd5ea commit 96f3e90

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

clikt-mordant-markdown/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import org.jetbrains.dokka.gradle.DokkaTaskPartial
12
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
23

34

45
plugins {
56
kotlin("multiplatform")
7+
alias(libs.plugins.publish)
68
}
79

810
kotlin {
@@ -48,3 +50,9 @@ kotlin {
4850
}
4951
}
5052
}
53+
54+
tasks.withType<DokkaTaskPartial> {
55+
dokkaSourceSets.configureEach {
56+
includes.from("README.md")
57+
}
58+
}

test/build.gradle.kts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
44

55
plugins {
66
kotlin("multiplatform")
7-
alias(libs.plugins.publish)
87
}
98

109
kotlin {
@@ -51,9 +50,3 @@ kotlin {
5150
}
5251
}
5352
}
54-
55-
tasks.withType<DokkaTaskPartial> {
56-
dokkaSourceSets.configureEach {
57-
includes.from("README.md")
58-
}
59-
}

0 commit comments

Comments
 (0)