Skip to content

Commit

Permalink
πŸ”§ :: [#437] FaqDomain λͺ¨λ“ˆ 생성 및 λ””νŽœλ˜μ‹œ μ—°κ²°
Browse files Browse the repository at this point in the history
  • Loading branch information
KangTaeHoon committed Mar 10, 2024
1 parent f6ba6af commit ca3a81f
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 11 deletions.
3 changes: 2 additions & 1 deletion Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ let targets: [Target] = [
.domain(target: .AppDomain),
.domain(target: .ArtistDomain),
.domain(target: .AuthDomain),
.domain(target: .ChartDomain)
.domain(target: .ChartDomain),
.domain(target: .FaqDomain)
],
settings: .settings(
base: env.baseSetting,
Expand Down
1 change: 1 addition & 0 deletions Projects/Domains/FaqDomain/Interface/Interface.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This is for Tuist
21 changes: 21 additions & 0 deletions Projects/Domains/FaqDomain/Project.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import DependencyPlugin
import ProjectDescription
import ProjectDescriptionHelpers

let project = Project.module(
name: ModulePaths.Domain.FaqDomain.rawValue,
targets: [
.interface(module: .domain(.FaqDomain)),
.implements(
module: .domain(.FaqDomain),
dependencies: [
.domain(target: .BaseDomain),
.domain(target: .FaqDomain, type: .interface)
]
),
.tests(
module: .domain(.FaqDomain),
dependencies: [.domain(target: .FaqDomain)]
)
]
)
1 change: 1 addition & 0 deletions Projects/Domains/FaqDomain/Sources/Sources.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This is for Tuist
11 changes: 11 additions & 0 deletions Projects/Domains/FaqDomain/Tests/FaqDomainTest.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import XCTest

final class FaqDomainTests: XCTestCase {
override func setUpWithError() throws {}

override func tearDownWithError() throws {}

func testExample() {
XCTAssertEqual(1, 1)
}
}
25 changes: 15 additions & 10 deletions Projects/Features/StorageFeature/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ import DependencyPlugin
import ProjectDescription
import ProjectDescriptionHelpers

let project = Project.module(name: ModulePaths.Feature.StorageFeature.rawValue, targets: [
.implements(
module: .feature(.StorageFeature),
product: .staticFramework,
spec: .init(
resources: ["Resources/**"],
dependencies: [.feature(target: .SignInFeature)]
let project = Project.module(
name: ModulePaths.Feature.StorageFeature.rawValue,
targets: [
.implements(
module: .feature(.StorageFeature),
product: .staticFramework,
spec: .init(
resources: ["Resources/**"],
dependencies: [
.feature(target: .SignInFeature),
.domain(target: .FaqDomain, type: .interface)
]
)
)
)

])
]
)
Binary file modified graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ca3a81f

Please sign in to comment.