From f2a017f99580072b56b24eb9c27fd583407966cb Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 17:08:29 +0900 Subject: [PATCH 1/4] =?UTF-8?q?feat(tuist):=20Project=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project.swift | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Project.swift diff --git a/Project.swift b/Project.swift new file mode 100644 index 0000000..941875f --- /dev/null +++ b/Project.swift @@ -0,0 +1,33 @@ +import ProjectDescription + +// MARK: Constants +let projectName = "Box42" +let organizationName = "Box42" +let bundleID = "com.box42" +let targetVersion = "10.15" + +// MARK: Struct +let project = Project( + name: projectName, + organizationName: organizationName, + packages: [], + settings: nil, + targets: [ + Target(name: projectName, + platform: .macOS, + product: .app, // unitTests, .appExtension, .framework, dynamicLibrary, staticFramework + bundleId: bundleID, + deploymentTarget: .macOS(targetVersion: targetVersion), + infoPlist: .file(path: "\(projectName)/Resources/Info.plist"), + sources: ["\(projectName)/**"], + resources: ["\(projectName)/Resources/Assets.xcassets"], + entitlements: "\(projectName)/Resources/Box42.entitlements", + dependencies: [] // tuist generate할 경우 pod install이 자동으로 실행 + ) + ], + schemes: [ + ], + fileHeaderTemplate: nil, + additionalFiles: [], + resourceSynthesizers: [] +) From ab40f314db01e807ceb1215e954e4079c3343d6a Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 17:19:32 +0900 Subject: [PATCH 2/4] =?UTF-8?q?fix(tuist):=20Main.storyboard=EB=A5=BC=20?= =?UTF-8?q?=EB=A6=AC=EC=86=8C=EC=8A=A4=EC=97=90=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=98=EC=98=80=EC=8A=B5=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.swift b/Project.swift index 941875f..7ab74f9 100644 --- a/Project.swift +++ b/Project.swift @@ -20,13 +20,13 @@ let project = Project( deploymentTarget: .macOS(targetVersion: targetVersion), infoPlist: .file(path: "\(projectName)/Resources/Info.plist"), sources: ["\(projectName)/**"], - resources: ["\(projectName)/Resources/Assets.xcassets"], + resources: ["\(projectName)/Resources/Assets.xcassets", + "\(projectName)/Resources/Main.storyboard",], entitlements: "\(projectName)/Resources/Box42.entitlements", dependencies: [] // tuist generate할 경우 pod install이 자동으로 실행 ) ], - schemes: [ - ], + schemes: [], fileHeaderTemplate: nil, additionalFiles: [], resourceSynthesizers: [] From 6bdc5dbf6ee2f40f81e66ee09199dddf5de2cac6 Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 17:42:51 +0900 Subject: [PATCH 3/4] =?UTF-8?q?feat(tuist):=20=EB=B2=84=EC=A0=84=EC=9D=84?= =?UTF-8?q?=20=EA=B3=A0=EC=A0=95=ED=95=A9=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .tuist-version | 1 + 1 file changed, 1 insertion(+) create mode 100644 .tuist-version diff --git a/.tuist-version b/.tuist-version new file mode 100644 index 0000000..512d523 --- /dev/null +++ b/.tuist-version @@ -0,0 +1 @@ +3.12.1 \ No newline at end of file From a6b3241798946babb3365de859b07306986050b2 Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 23:10:28 +0900 Subject: [PATCH 4/4] =?UTF-8?q?feat(tuist):=20tuist-versioning=2023/08/15?= =?UTF-8?q?=20=EA=B8=B0=EC=A4=80=20=EC=B5=9C=EC=8B=A0=EB=B2=84=EC=A0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .tuist-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tuist-version b/.tuist-version index 512d523..8912835 100644 --- a/.tuist-version +++ b/.tuist-version @@ -1 +1 @@ -3.12.1 \ No newline at end of file +3.22.0 \ No newline at end of file