From 44438da292394fd2d0d64ae9d4e000352f7a603b Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 10 Aug 2023 03:09:47 +0530 Subject: [PATCH] chore: refresh module graph --- README.md | 5 +++-- build.gradle.kts | 7 ++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 36494a5a..f5809b59 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b ```mermaid %%{ init: { - 'theme': 'neutral' + 'theme': 'dark' } }%% -graph LR +graph TB benchmark --> android android --> api @@ -31,6 +31,7 @@ graph LR android --> core android --> database android --> model + android --> benchmark api --> model common --> core common --> database diff --git a/build.gradle.kts b/build.gradle.kts index a9479660..148f5561 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,6 +4,9 @@ * license that can be found in the LICENSE file or at * https://opensource.org/licenses/MIT. */ +import dev.iurysouza.modulegraph.Orientation +import dev.iurysouza.modulegraph.Theme + plugins { id("dev.msfjarvis.claw.spotless") id("dev.msfjarvis.claw.versions") @@ -12,6 +15,8 @@ plugins { } moduleGraphConfig { - readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath) heading.set("## Dependency Diagram") + orientation.set(Orientation.TOP_TO_BOTTOM) + readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath) + theme.set(Theme.DARK) }