Skip to content

Commit

Permalink
chore: 종속성 수정(#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
sozohoy committed Sep 12, 2024
1 parent 8db3c58 commit 1437c5e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 16 deletions.
6 changes: 1 addition & 5 deletions App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
5 changes: 2 additions & 3 deletions Common/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
)
5 changes: 3 additions & 2 deletions Core/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
]
)
6 changes: 0 additions & 6 deletions Presentation/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
]
)

0 comments on commit 1437c5e

Please sign in to comment.