Skip to content

Commit

Permalink
Code for video sample
Browse files Browse the repository at this point in the history
  • Loading branch information
kirich1409 committed Sep 19, 2024
1 parent 84195d7 commit 94a142a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,18 @@
}
}%%
graph LR
graph RL
subgraph :core
:core:common["common"]
:core:uikit["uikit"]
end
subgraph :features:news-main
:features:news-main:ui["ui"]
end
:shared --> :compose-app
:compose-app --> :features:news-main:ui
:compose-app --> :core:common
:compose-app --> :core:uikit
:app --> :compose-app
:desktop --> :compose-app
classDef focus fill:#769566,stroke:#fff,stroke-width:2px,color:#fff;
class :compose-app focus
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import dev.iurysouza.modulegraph.Orientation
import io.gitlab.arturbosch.detekt.extensions.DetektExtension

// Top-level build file where you can add configuration options common to all sub-projects/modules.
Expand Down Expand Up @@ -58,13 +59,13 @@ moduleGraphConfig {
readmePath.set("./README.md")
heading = "### Module Graph"
// showFullPath.set(false) // optional
// orientation.set(Orientation.LEFT_TO_RIGHT) //optional
orientation.set(Orientation.RIGHT_TO_LEFT) //optional
// linkText.set(LinkText.NONE) // optional
// setStyleByModuleType.set(true) // optional
// excludedConfigurationsRegex.set(".*test.*") // optional
// excludedModulesRegex.set(".*moduleName.*") // optional
// focusedModulesRegex.set(".*(projectName).*") // optional
// rootModulesRegex.set(".*moduleName.*") // optional
rootModulesRegex.set(".*app.*") // optional
// theme.set(Theme.NEUTRAL) // optional
// or you can fully customize it by using the BASE theme:
// Theme.BASE(
Expand Down

0 comments on commit 94a142a

Please sign in to comment.