From c1b3861bef6bae8b7ef993457d109f60c4ccace1 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 22 Feb 2025 09:35:47 +0100 Subject: [PATCH] Moved the protocol conformances on extensions to the Conformances file in the library target. --- .../Conformances.swift} | 4 ++++ .../Sources/Internal/Extensions/Bundle+Conformances.swift | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) rename Library/Sources/Internal/{Extensions/Process+Conformances.swift => Definitions/Conformances.swift} (57%) delete mode 100644 Library/Sources/Internal/Extensions/Bundle+Conformances.swift diff --git a/Library/Sources/Internal/Extensions/Process+Conformances.swift b/Library/Sources/Internal/Definitions/Conformances.swift similarity index 57% rename from Library/Sources/Internal/Extensions/Process+Conformances.swift rename to Library/Sources/Internal/Definitions/Conformances.swift index d5dfa7b..ed7ae40 100644 --- a/Library/Sources/Internal/Extensions/Process+Conformances.swift +++ b/Library/Sources/Internal/Definitions/Conformances.swift @@ -1,5 +1,9 @@ import Foundation +// MARK: - Bundleable + +extension Bundle: Bundleable {} + // MARK: - Processable extension Process: Processable {} diff --git a/Library/Sources/Internal/Extensions/Bundle+Conformances.swift b/Library/Sources/Internal/Extensions/Bundle+Conformances.swift deleted file mode 100644 index d8b5fbc..0000000 --- a/Library/Sources/Internal/Extensions/Bundle+Conformances.swift +++ /dev/null @@ -1,5 +0,0 @@ -import Foundation - -// MARK: - Bundleable - -extension Bundle: Bundleable {}