From 1437c5e1386f6404fad5377ae32fad0415824397 Mon Sep 17 00:00:00 2001 From: sozohoy Date: Fri, 13 Sep 2024 01:11:56 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=A2=85=EC=86=8D=EC=84=B1=20?= =?UTF-8?q?=EC=88=98=EC=A0=95(#144)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App/Project.swift | 6 +----- Common/Project.swift | 5 ++--- Core/Project.swift | 5 +++-- Presentation/Project.swift | 6 ------ 4 files changed, 6 insertions(+), 16 deletions(-) diff --git a/App/Project.swift b/App/Project.swift index 26cd217..284373b 100644 --- a/App/Project.swift +++ b/App/Project.swift @@ -65,11 +65,7 @@ let project = Project.makeModule( resources: ["Resources/**"], entitlements: .file(path: "App.entitlements"), dependencies: [ - .Project.Core, - .Project.Presentation, - .external(name: "KakaoSDKAuth", condition: .none), - .external(name: "KakaoSDKCommon", condition: .none), - .external(name: "KakaoSDKUser", condition: .none) + .Project.Presentation ], settings: settings ) diff --git a/Common/Project.swift b/Common/Project.swift index 72e083f..b25ae3a 100644 --- a/Common/Project.swift +++ b/Common/Project.swift @@ -19,8 +19,7 @@ let project = Project.makeModule( dependencies: [ .external(name: "SnapKit", condition: .none), .external(name: "Then", condition: .none), - .external(name: "RxSwift", condition: .none), - .external(name: "RxCocoa", condition: .none), - .external(name: "Kingfisher", condition: .none) + .external(name: "Kingfisher", condition: .none), + .Project.Core ] ) diff --git a/Core/Project.swift b/Core/Project.swift index 19c0993..b7cada1 100644 --- a/Core/Project.swift +++ b/Core/Project.swift @@ -22,7 +22,8 @@ let project = Project.makeModule( .external(name: "Moya", condition: .none), .external(name: "RxSwift", condition: .none), .external(name: "RxMoya", condition: .none), - .external(name: "AWSS3", condition: .none), - .Project.Common + .external(name: "RxSwift", condition: .none), + .external(name: "RxCocoa", condition: .none), + .external(name: "AWSS3", condition: .none) ] ) diff --git a/Presentation/Project.swift b/Presentation/Project.swift index 4dab7d1..8fb1103 100644 --- a/Presentation/Project.swift +++ b/Presentation/Project.swift @@ -16,13 +16,7 @@ let project = Project.makeModule( product: .staticFramework, bundleId: moduleName, dependencies: [ - .Project.Core, .Project.Common, - .external(name: "SnapKit", condition: .none), - .external(name: "Then", condition: .none), - .external(name: "RxSwift", condition: .none), - .external(name: "RxCocoa", condition: .none), .external(name: "Lottie", condition: .none), - .external(name: "Kingfisher", condition: .none) ] )