Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README references to extension's property #45

Merged
merged 1 commit into from
May 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ moduleGraphConfig {
// excludedModulesRegex = ".*moduleName.*" // optional
// focusedModulesRegex = ".*(projectName).*" // optional
// rootModulesRegex = ".*moduleName.*" // optional
// setStyleByPluginType = true // optional
// setStyleByModuleType = true // optional
// theme = Theme.NEUTRAL // optional
// Or you can fully customize it by using the BASE theme:
// theme = new Theme.BASE(
Expand Down Expand Up @@ -167,7 +167,7 @@ moduleGraphConfig {
// showFullPath.set(false) // optional
// orientation.set(Orientation.LEFT_TO_RIGHT) //optional
// linkText.set(LinkText.NONE) // optional
// setStyleByPluginType.set(true) // optional
// setStyleByModuleType.set(true) // optional
// excludedConfigurationsRegex.set(".*test.*") // optional
// excludedModulesRegex.set(".*moduleName.*") // optional
// focusedModulesRegex.set(".*(projectName).*") // optional
Expand Down Expand Up @@ -216,7 +216,7 @@ Required settings:

Optional settings:

- **setStyleByPluginType**: Whether to style the modules based on their type (KotlinMultiplatform, Android Library, etc). Default is `false`. [Read more](#module-type-based-styling).
- **setStyleByModuleType**: Whether to style the modules based on their type (KotlinMultiplatform, Android Library, etc). Default is `false`. [Read more](#module-type-based-styling).
- **focusedModulesRegex**: The regex to match nodes in the graph (project names) that should be focused. By
default, no nodes are focused.
If set, the matching nodes will be highlighted and only related nodes will be shown. The color can be customized via the `focusColor` property
Expand Down Expand Up @@ -413,7 +413,7 @@ Just toggle this option on:
```kotlin
moduleGraphConfig {
//..
setStyleByPluginType.set(true)
setStyleByModuleType.set(true)
}
```

Expand Down
Loading