Properly configure knit.

This commit is contained in:
Benoit Marty 2022-12-12 18:03:43 +01:00
parent c8b344644b
commit 9366bfc105

View file

@ -110,6 +110,27 @@ android {
}
}
// Knit
apply {
plugin("kotlinx-knit")
}
knit {
files = fileTree(project.rootDir) {
include(
"**/*.md",
"**/*.kt",
"*/*.kts",
)
exclude(
"**/build/**",
"*/.gradle/**",
"*/towncrier/template.md",
"**/CHANGES.md",
)
}
}
dependencies {
implementation(project(":libraries:designsystem"))
implementation(project(":libraries:matrix"))