diff --git a/Makefile b/Makefile index 659e900d..e2e4f354 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/Package.md b/Package.md new file mode 100644 index 00000000..cda49c8f --- /dev/null +++ b/Package.md @@ -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 \ No newline at end of file diff --git a/PackageModules.dot b/PackageModules.dot new file mode 100644 index 00000000..e149229c --- /dev/null +++ b/PackageModules.dot @@ -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" -> "" +} \ No newline at end of file