Skip to content

[#3] 라이브러리 프로젝트를 생성한다#4

Merged
opficdev merged 1 commit into
developfrom
chore/#3-library
Apr 11, 2026
Merged

[#3] 라이브러리 프로젝트를 생성한다#4
opficdev merged 1 commit into
developfrom
chore/#3-library

Conversation

@opficdev
Copy link
Copy Markdown
Owner

🔗 연관된 이슈

📝 작업 내용

📌 요약 && 🔍 상세

  • Xcode로 Library 프로젝트를 생성

@opficdev opficdev self-assigned this Apr 11, 2026
@opficdev opficdev merged commit 82fc4b2 into develop Apr 11, 2026
@opficdev opficdev deleted the chore/#3-library branch April 11, 2026 12:01
Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이 풀 리퀘스트는 Nexa Swift 패키지의 기본 구조와 테스트 환경을 구축합니다. 리뷰를 통해 존재하지 않는 swift-tools-version(6.3)을 안정 버전인 6.0으로 수정하여 빌드 오류를 방지할 것과, 패키지 표준 구조에 맞춰 Package.swift 파일을 루트 디렉토리로 이동할 것이 권장되었습니다.

Comment thread Nexa/Package.swift
@@ -0,0 +1,27 @@
// swift-tools-version: 6.3
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

현재 swift-tools-version6.3으로 설정되어 있습니다. Swift 6.0이 최신 안정 버전이며, 존재하지 않는 버전을 명시할 경우 패키지 매니저가 이를 인식하지 못해 빌드가 실패합니다. 이를 6.0으로 수정해야 합니다.

Suggested change
// swift-tools-version: 6.3
// swift-tools-version: 6.0

Comment thread Nexa/Package.swift

import PackageDescription

let package = Package(
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

현재 Package.swiftNexa/ 서브 디렉토리에 위치해 있습니다. 일반적인 Swift 패키지 저장소에서는 Package.swift를 저장소 루트(Root)에 배치합니다. 특별한 이유가 없다면 파일들을 루트로 이동하여 사용자가 패키지를 더 쉽게 가져올 수 있도록 하는 것이 좋습니다.

@opficdev opficdev restored the chore/#3-library branch April 12, 2026 04:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

라이브러리 프로젝트를 생성한다

1 participant