diff --git a/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift b/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift index 56614316..a58cdfc2 100644 --- a/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift +++ b/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift @@ -15,5 +15,6 @@ public extension TargetDependency.SPM { static let RxMoya = TargetDependency.external(name: "RxMoya") static let Lottie = TargetDependency.external(name: "Lottie") static let kingfisher = TargetDependency.external(name: "Kingfisher") + static let MindGymKit = TargetDependency.external(name: "MindGymKit") } diff --git a/Projects/Modules/ThirdPartyLibs/Project.swift b/Projects/Modules/ThirdPartyLibs/Project.swift index 89f5a82d..11100759 100644 --- a/Projects/Modules/ThirdPartyLibs/Project.swift +++ b/Projects/Modules/ThirdPartyLibs/Project.swift @@ -15,6 +15,7 @@ let project = Project.makeModule( .SPM.Moya, .SPM.RxMoya, .SPM.Lottie, - .SPM.kingfisher + .SPM.kingfisher, + .SPM.MindGymKit ] ) diff --git a/Tuist/Dependencies.swift b/Tuist/Dependencies.swift index 8932c136..7089d67d 100644 --- a/Tuist/Dependencies.swift +++ b/Tuist/Dependencies.swift @@ -10,7 +10,8 @@ let dependencies = Dependencies( .remote(url: "https://github.com/Swinject/Swinject.git", requirement: .upToNextMajor(from: "2.8.3")), .remote(url: "https://github.com/Moya/Moya.git", requirement: .upToNextMajor(from: "15.0.0")), .remote(url: "https://github.com/airbnb/lottie-ios", requirement: .upToNextMajor(from: "4.3.3")), - .remote(url: "https://github.com/onevcat/Kingfisher", requirement: .upToNextMajor(from: "7.0.0")) + .remote(url: "https://github.com/onevcat/Kingfisher", requirement: .upToNextMajor(from: "7.0.0")), + .remote(url: "https://github.com/MaeumgaGym/MindGymKit", requirement: .upToNextMajor(from: "0.2.3")) ]), platforms: [.iOS] )