Skip to content

Commit bbc0bd1

Browse files
committed
Rename package
1 parent 7c3b8df commit bbc0bd1

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

Development/Development.xcodeproj/project.pbxproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
4B26A67D2A33239500B75FB4 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B26A67C2A33239500B75FB4 /* ContentView.swift */; };
1212
4B26A67F2A33239600B75FB4 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4B26A67E2A33239600B75FB4 /* Assets.xcassets */; };
1313
4B26A6822A33239600B75FB4 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4B26A6812A33239600B75FB4 /* Preview Assets.xcassets */; };
14-
4B26A68D2A3323E900B75FB4 /* swift-dynamic-list in Frameworks */ = {isa = PBXBuildFile; productRef = 4B26A68C2A3323E900B75FB4 /* swift-dynamic-list */; };
1514
4B3722682A33C701005FF24A /* UIKitBased.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3722672A33C701005FF24A /* UIKitBased.swift */; };
1615
4B9981D32A33D7C100840751 /* RevealServer.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B9981D12A33D51400840751 /* RevealServer.xcframework */; };
1716
4B9981D42A33D7C100840751 /* RevealServer.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 4B9981D12A33D51400840751 /* RevealServer.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
1817
4B9981D82A34F9B500840751 /* CompositionKit in Frameworks */ = {isa = PBXBuildFile; productRef = 4B9981D72A34F9B500840751 /* CompositionKit */; };
18+
4BD542E92A362B40006261B9 /* DynamicList in Frameworks */ = {isa = PBXBuildFile; productRef = 4BD542E82A362B40006261B9 /* DynamicList */; };
1919
/* End PBXBuildFile section */
2020

2121
/* Begin PBXCopyFilesBuildPhase section */
@@ -48,8 +48,8 @@
4848
isa = PBXFrameworksBuildPhase;
4949
buildActionMask = 2147483647;
5050
files = (
51-
4B26A68D2A3323E900B75FB4 /* swift-dynamic-list in Frameworks */,
5251
4B9981D82A34F9B500840751 /* CompositionKit in Frameworks */,
52+
4BD542E92A362B40006261B9 /* DynamicList in Frameworks */,
5353
4B9981D32A33D7C100840751 /* RevealServer.xcframework in Frameworks */,
5454
);
5555
runOnlyForDeploymentPostprocessing = 0;
@@ -121,8 +121,8 @@
121121
);
122122
name = Development;
123123
packageProductDependencies = (
124-
4B26A68C2A3323E900B75FB4 /* swift-dynamic-list */,
125124
4B9981D72A34F9B500840751 /* CompositionKit */,
125+
4BD542E82A362B40006261B9 /* DynamicList */,
126126
);
127127
productName = Development;
128128
productReference = 4B26A6772A33239500B75FB4 /* Development.app */;
@@ -399,15 +399,15 @@
399399
/* End XCRemoteSwiftPackageReference section */
400400

401401
/* Begin XCSwiftPackageProductDependency section */
402-
4B26A68C2A3323E900B75FB4 /* swift-dynamic-list */ = {
403-
isa = XCSwiftPackageProductDependency;
404-
productName = "swift-dynamic-list";
405-
};
406402
4B9981D72A34F9B500840751 /* CompositionKit */ = {
407403
isa = XCSwiftPackageProductDependency;
408404
package = 4B9981D62A34F9B500840751 /* XCRemoteSwiftPackageReference "CompositionKit" */;
409405
productName = CompositionKit;
410406
};
407+
4BD542E82A362B40006261B9 /* DynamicList */ = {
408+
isa = XCSwiftPackageProductDependency;
409+
productName = DynamicList;
410+
};
411411
/* End XCSwiftPackageProductDependency section */
412412
};
413413
rootObject = 4B26A66F2A33239500B75FB4 /* Project object */;

Development/Development/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import SwiftUI
9-
@testable import swift_dynamic_list
9+
@testable import DynamicList
1010

1111
struct ContentView: View {
1212
var body: some View {

Development/Development/UIKitBased.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SwiftUI
22
import UIKit
3-
import swift_dynamic_list
3+
import DynamicList
44
import os
55

66
struct BookUIKitBased: View, PreviewProvider {

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ let package = Package(
99
products: [
1010
// Products define the executables and libraries a package produces, making them visible to other packages.
1111
.library(
12-
name: "swift-dynamic-list",
13-
targets: ["swift-dynamic-list"]
12+
name: "DynamicList",
13+
targets: ["DynamicList"]
1414
)
1515
],
1616
dependencies: [
@@ -20,14 +20,14 @@ let package = Package(
2020
// Targets are the basic building blocks of a package, defining a module or a test suite.
2121
// Targets can depend on other targets in this package and products from dependencies.
2222
.target(
23-
name: "swift-dynamic-list",
23+
name: "DynamicList",
2424
dependencies: [
2525
.product(name: "SwiftUISupport", package: "swiftui-support")
2626
]
2727
),
2828
.testTarget(
29-
name: "swift-dynamic-listTests",
30-
dependencies: ["swift-dynamic-list"]
29+
name: "DynamicListTests",
30+
dependencies: ["DynamicList"]
3131
),
3232
]
3333
)

Sources/swift-dynamic-list/CustomContentConfiguration.swift renamed to Sources/DynamicList/CustomContentConfiguration.swift

File renamed without changes.
File renamed without changes.
File renamed without changes.

Tests/swift-dynamic-listTests/swift_dynamic_listTests.swift renamed to Tests/DynamicListTests/swift_dynamic_listTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import XCTest
2-
@testable import swift_dynamic_list
2+
@testable import DynamicList
33

44
final class swift_dynamic_listTests: XCTestCase {
55
func testExample() throws {

0 commit comments

Comments
 (0)