Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] #313- 콕 찌르기 모듈 생성 #315

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public extension Dep {
public struct Notice {}
public struct AppMyPage {}
public struct Notification {}
public struct Poke {}
}

struct Modules {}
Expand Down Expand Up @@ -109,3 +110,10 @@ public extension Dep.Features.Notification {
static let Feature = Dep.Features.project(name: "Feature", group: group)
static let Interface = Dep.project(target: "\(group)FeatureInterface", path: .relativeToFeature("\(group)Feature"))
}

public extension Dep.Features.Poke {
static let group = "Poke"

static let Feature = Dep.Features.project(name: "Feature", group: group)
static let Interface = Dep.project(target: "\(group)FeatureInterface", path: .relativeToFeature("\(group)Feature"))
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// PokeDemoTemp.swift
// ProjectDescriptionHelpers
//
// Created by sejin on 12/3/23.
//

import Foundation
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// InterfaceTemp.swift
// ProjectDescriptionHelpers
//
// Created by sejin on 12/3/23.
//

import Foundation
18 changes: 18 additions & 0 deletions SOPT-iOS/Projects/Features/PokeFeature/Project.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// Project.swift
// ProjectDescriptionHelpers
//
// Created by sejin on 12/3/23.
//

import ProjectDescription
import ProjectDescriptionHelpers
import DependencyPlugin

let project = Project.makeModule(
name: "PokeFeature",
targets: [.unitTest, .staticFramework, .demo, .interface],
interfaceDependencies: [
.Features.BaseFeatureDependency
]
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//
// SampleView.swift
// PokeFeature
//
// Created by sejin on 12/3/23.
// Copyright © 2023 SOPT-iOS. All rights reserved.
//

import Foundation
8 changes: 8 additions & 0 deletions SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeTemp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// PokeTemp.swift
// ProjectDescriptionHelpers
//
// Created by sejin on 12/3/23.
//

import Foundation
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// UnitTest.swift
// ProjectDescriptionHelpers
//
// Created by sejin on 12/3/23.
//

import Foundation
3 changes: 2 additions & 1 deletion SOPT-iOS/Projects/Features/RootFeature/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ let project = Project.makeModule(
.Features.Attendance.Feature,
.Features.Notice.Feature,
.Features.AppMyPage.Feature,
.Features.Notification.Feature
.Features.Notification.Feature,
.Features.Poke.Feature
]
)