Properly configure knit.
This commit is contained in:
parent
3e86fa48d8
commit
f49a875c39
1 changed files with 21 additions and 0 deletions
|
|
@ -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 {
|
dependencies {
|
||||||
implementation(project(":libraries:designsystem"))
|
implementation(project(":libraries:designsystem"))
|
||||||
implementation(project(":libraries:matrix"))
|
implementation(project(":libraries:matrix"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue