Skip to content

Commit

Permalink
Update Makefile and run sourcedocs
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mattello <[email protected]>
  • Loading branch information
JoeMatt committed Feb 6, 2024
1 parent 2f3c7c7 commit a85993c
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jazzy:

#> Markdown API using sourcedocs; https://github.com/eneko/SourceDocs
sourcedocs:
@sourcedocs generate -clean --spm-module Hero --output-folder docs
@sourcedocs generate --clean --output-folder docs

#> Run tests
swift_test:
Expand Down
40 changes: 40 additions & 0 deletions Package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Package: **Hero**

## Products

List of products in this package:

| Product | Type | Targets |
| ------- | ---- | ------- |
| Hero | library | Hero |

_Libraries denoted 'automatic' can be both static or dynamic._

## Modules

### Program Modules

| Module | Type | Dependencies |
| ------ | ---- | ------------ |
| Hero | Regular | |

### Test Modules

| Module | Type | Dependencies |
| ------ | ---- | ------------ |
| HeroTests | Test | |

## External Dependencies

This package has zero dependencies 🎉

## Requirements

### Minimum Required Versions

| Platform | Version |
| -------- | ------- |
| tvOS | 10.0 |
| iOS | 10.0 |

This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2024-02-06 02:01:40 +0000
24 changes: 24 additions & 0 deletions PackageModules.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
digraph ModuleDependencyGraph {
rankdir = LR
graph [fontname="Helvetica-light", style = filled, color = "#eaeaea"]
node [shape=box, fontname="Helvetica", style=filled]
edge [color="#545454"]

subgraph clusterRegular {
label = "Program Modules"
node [color="#caecec"]
"Hero"
}
subgraph clusterTest {
label = "Test Modules"
node [color="#aaccee"]
"HeroTests"
}
subgraph clusterExternal {
label = "External Dependencies"
node [color="#eeccaa"]
""
}

"HeroTests" -> ""
}

0 comments on commit a85993c

Please sign in to comment.