Skip to content

Commit

Permalink
πŸ”§ :: [#425] AppDomainInterface λ””νŽœλ˜μ‹œ μΆ”κ°€
Browse files Browse the repository at this point in the history
  • Loading branch information
KangTaeHoon committed Mar 6, 2024
1 parent 5eb0b3d commit 155b8f6
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions Projects/Features/RootFeature/Project.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
import ProjectDescription
import ProjectDescriptionHelpers
import DependencyPlugin

let project = Project.makeModule(
name: "RootFeature",
product: .staticFramework,
dependencies: [
.Project.Features.BaseFeature,
.Project.Features.MainTabFeature
let project = Project.module(
name: ModulePaths.Feature.RootFeature.rawValue,
targets: [
.implements(
module: .feature(.RootFeature),
product: .staticFramework,
spec: .init(
resources: ["Resources/**"],
dependencies: [.feature(target: .BaseFeature),
.feature(target: .MainTabFeature),
.domain(target: .AppDomain, type: .interface)]
)
)
]
, resources: ["Resources/**"]
)

0 comments on commit 155b8f6

Please sign in to comment.