Skip to content

Commit 0910f80

Browse files
committed
refactor: WidgetCore의 외부 레이어 의존성 제거
1 parent 1161937 commit 0910f80

5 files changed

Lines changed: 0 additions & 16 deletions

File tree

Widget/DevLogWidgetCore/DevLogWidgetCore.xcodeproj/project.pbxproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88

99
/* Begin PBXBuildFile section */
1010
75C99AB35C6DF930E824185E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBD260F923A87C1577DBFF0F /* Foundation.framework */; };
11-
7E979130578F4839B3C640C1 /* DevLogData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C18996E00A69C4BCB0F63AE /* DevLogData.framework */; };
12-
80423C5F6B880409E39FD20F /* DevLogData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C18996E00A69C4BCB0F63AE /* DevLogData.framework */; };
1311
8EF4007864D24A1F9074C80A /* DevLogWidgetCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6AF1B307A7E7CC03AA2BABB1 /* DevLogWidgetCore.framework */; };
14-
A1DEB84CF3B18EC2005382C5 /* DevLogDomain.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B108898FD3650BE0C116BD3C /* DevLogDomain.framework */; };
1512
B11111111111111111111111 /* DevLogCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B55555555555555555555555 /* DevLogCore.framework */; };
1613
B69F5362A64E4C8FAA88393A /* DevLogCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B55555555555555555555555 /* DevLogCore.framework */; };
17-
CE64C1569E684FD7BF6E21E7 /* DevLogDomain.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B108898FD3650BE0C116BD3C /* DevLogDomain.framework */; };
1814
/* End PBXBuildFile section */
1915

2016
/* Begin PBXContainerItemProxy section */
@@ -30,8 +26,6 @@
3026
/* Begin PBXFileReference section */
3127
099A7D56A0E544A28733E668 /* DevLogWidgetCoreTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DevLogWidgetCoreTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3228
6AF1B307A7E7CC03AA2BABB1 /* DevLogWidgetCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DevLogWidgetCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33-
7C18996E00A69C4BCB0F63AE /* DevLogData.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DevLogData.framework; sourceTree = BUILT_PRODUCTS_DIR; };
34-
B108898FD3650BE0C116BD3C /* DevLogDomain.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DevLogDomain.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3529
B55555555555555555555555 /* DevLogCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DevLogCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3630
FBD260F923A87C1577DBFF0F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
3731
/* End PBXFileReference section */
@@ -65,8 +59,6 @@
6559
files = (
6660
8EF4007864D24A1F9074C80A /* DevLogWidgetCore.framework in Frameworks */,
6761
B69F5362A64E4C8FAA88393A /* DevLogCore.framework in Frameworks */,
68-
CE64C1569E684FD7BF6E21E7 /* DevLogDomain.framework in Frameworks */,
69-
7E979130578F4839B3C640C1 /* DevLogData.framework in Frameworks */,
7062
);
7163
runOnlyForDeploymentPostprocessing = 0;
7264
};
@@ -76,8 +68,6 @@
7668
files = (
7769
75C99AB35C6DF930E824185E /* Foundation.framework in Frameworks */,
7870
B11111111111111111111111 /* DevLogCore.framework in Frameworks */,
79-
A1DEB84CF3B18EC2005382C5 /* DevLogDomain.framework in Frameworks */,
80-
80423C5F6B880409E39FD20F /* DevLogData.framework in Frameworks */,
8171
);
8272
runOnlyForDeploymentPostprocessing = 0;
8373
};
@@ -108,8 +98,6 @@
10898
6AF1B307A7E7CC03AA2BABB1 /* DevLogWidgetCore.framework */,
10999
099A7D56A0E544A28733E668 /* DevLogWidgetCoreTests.xctest */,
110100
B55555555555555555555555 /* DevLogCore.framework */,
111-
B108898FD3650BE0C116BD3C /* DevLogDomain.framework */,
112-
7C18996E00A69C4BCB0F63AE /* DevLogData.framework */,
113101
);
114102
name = Products;
115103
sourceTree = "<group>";

Widget/DevLogWidgetCore/Sources/Heatmap/HeatmapWidgetSnapshotFactory.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
import Foundation
99
import DevLogCore
10-
import DevLogData
1110

1211
public struct HeatmapWidgetSnapshotFactory {
1312
fileprivate struct DailyCounts {

Widget/DevLogWidgetCore/Sources/Today/TodayWidgetSnapshotFactory.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
import Foundation
99
import DevLogCore
10-
import DevLogData
1110

1211
public struct TodayWidgetSnapshotFactory {
1312
private enum SectionCategory: String, CaseIterable {

Widget/DevLogWidgetCore/Tests/Heatmap/HeatmapWidgetSnapshotFactoryTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import Foundation
99
import Testing
1010
import DevLogCore
11-
import DevLogData
1211
@testable import DevLogWidgetCore
1312

1413
struct HeatmapWidgetSnapshotFactoryTests {

Widget/DevLogWidgetCore/Tests/Today/TodayWidgetSnapshotFactoryTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import Foundation
99
import Testing
1010
import DevLogCore
11-
import DevLogData
1211
@testable import DevLogWidgetCore
1312

1413
struct TodayWidgetSnapshotFactoryTests {

0 commit comments

Comments
 (0)