Skip to content

Commit

Permalink
[Comment] PlugIn 폴더 파일들 주석 완료 #18
Browse files Browse the repository at this point in the history
  • Loading branch information
HELLOHIDI committed Jul 4, 2024
1 parent 953cf4a commit b0caf56
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
import Foundation
import ProjectDescription

/// 빌드할 환경에 대한 설정

/// Target 분리 (The Modular Architecture 기반으로 분리했습니다)


/// DEV : 실제 프로덕트 BaseURL을 사용하는 debug scheme
/// TEST : 테스트 BaseURL을 사용하는 debug scheme
/// QA : 테스트 BaseURL을 사용하는 release scheme
/// RELEASE : 실제 프로덕트 BaseURL을 사용하는 release scheme


public struct XCConfig {
private struct Path {
static var framework: ProjectDescription.Path { .relativeToRoot("Configurations/Targets/iOS-Framework.xcconfig") }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import ProjectDescription

/// 프로젝트 환경 관련 파일입니다

public struct ProjectEnvironment {
public let workspaceName: String
Expand Down
2 changes: 2 additions & 0 deletions Plugins/EnvPlugin/ProjectDescriptionHelpers/InfoPlist.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

import ProjectDescription

/// InfoPList를 정리해둔 파일이빈다
///
public extension Project {
static let appInfoPlist: [String: Plist.Value] = [
"BASE_URL": "https://api.openweathermap.org/data/2.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,8 @@

import ProjectDescription

/**
comment

/// Sumarry
///
/// Discussion/Overview
///
/// - Parameters:
/// - [param]: [description]
/// - Returns: [description]
/// - Warning: [description]
/// - Author: [name]
/// - Version: [version number]
/// - Note: [note message]
/// - Tip: [tip message]
/// - Todo: [todo message]

*/
// 아직 여기의 필요성은 못 느끼는중 무슨 역할을 하게 될지 궁금하다!

public extension SettingsDictionary {
// allLoadSettings와 baseSettings는 빌드 설정 딕셔너리의 기본값을 정의
static let allLoadSettings: Self = [
Expand Down

0 comments on commit b0caf56

Please sign in to comment.