mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 17:37:05 +05:30
chore: refresh module graph
This commit is contained in:
parent
591c68a6e4
commit
44438da292
2 changed files with 9 additions and 3 deletions
|
@ -19,11 +19,11 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b
|
||||||
```mermaid
|
```mermaid
|
||||||
%%{
|
%%{
|
||||||
init: {
|
init: {
|
||||||
'theme': 'neutral'
|
'theme': 'dark'
|
||||||
}
|
}
|
||||||
}%%
|
}%%
|
||||||
|
|
||||||
graph LR
|
graph TB
|
||||||
|
|
||||||
benchmark --> android
|
benchmark --> android
|
||||||
android --> api
|
android --> api
|
||||||
|
@ -31,6 +31,7 @@ graph LR
|
||||||
android --> core
|
android --> core
|
||||||
android --> database
|
android --> database
|
||||||
android --> model
|
android --> model
|
||||||
|
android --> benchmark
|
||||||
api --> model
|
api --> model
|
||||||
common --> core
|
common --> core
|
||||||
common --> database
|
common --> database
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
* license that can be found in the LICENSE file or at
|
* license that can be found in the LICENSE file or at
|
||||||
* https://opensource.org/licenses/MIT.
|
* https://opensource.org/licenses/MIT.
|
||||||
*/
|
*/
|
||||||
|
import dev.iurysouza.modulegraph.Orientation
|
||||||
|
import dev.iurysouza.modulegraph.Theme
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("dev.msfjarvis.claw.spotless")
|
id("dev.msfjarvis.claw.spotless")
|
||||||
id("dev.msfjarvis.claw.versions")
|
id("dev.msfjarvis.claw.versions")
|
||||||
|
@ -12,6 +15,8 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
moduleGraphConfig {
|
moduleGraphConfig {
|
||||||
readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath)
|
|
||||||
heading.set("## Dependency Diagram")
|
heading.set("## Dependency Diagram")
|
||||||
|
orientation.set(Orientation.TOP_TO_BOTTOM)
|
||||||
|
readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath)
|
||||||
|
theme.set(Theme.DARK)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue