diff --git a/.spi.yml b/.spi.yml index a393f57..76e81bf 100644 --- a/.spi.yml +++ b/.spi.yml @@ -8,5 +8,6 @@ builder: PADProjectBuilder, PADPackageFileAnalyzer, PADSwiftInterfaceDiff, - PADOutputGenerator + PADOutputGenerator, + PADSwiftInterfaceFileLocator ] diff --git a/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md b/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md index eea682e..b6970fb 100644 --- a/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md +++ b/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md @@ -6,12 +6,11 @@ Allows generation of human readable output from the provided information ```swift // Generated in previous steps -let warnings: [String] = ... let changes: [String: [Change]] = ... +let allTargets: [String] = ... let oldVersionName: String = ... let newVersionName: String = ... -let allTargets: [String] = ... -let swiftInterfaceFiles: [SwiftInterfaceFile] = ... +let warnings: [String] = ... let outputGenerator: any OutputGenerating = MarkdownOutputGenerator()