Skip to content

Commit 6aa3b17

Browse files
committed
Update Package.swift
1 parent bb2d7d1 commit 6aa3b17

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

Package.swift

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@ import PackageDescription
44

55
let package = Package(
66
name: "appendAttributedStringWithEase",
7+
platforms: [.iOS(.v8)],
78
products: [
89
.library(
9-
name: "appendAttributedStringWithEase",
10-
targets: ["appendAttributedStringWithEase"]),
10+
name: "appendAttributedString",
11+
targets: ["appendAttributedString"]),
1112
],
12-
dependencies: [ ],
13+
dependencies: [],
1314
targets: [
1415
.target(
15-
name: "appendAttributedStringWithEase",
16-
dependencies: []),
16+
name: "appendAttributedString",
17+
dependencies: [],
18+
path: "appendAttributedString/appendAttributedString"),
1719
.testTarget(
18-
name: "appendAttributedStringWithEaseTests",
19-
dependencies: ["appendAttributedStringWithEase"]),
20+
name: "appendAttributedStringTests",
21+
dependencies: ["appendAttributedString"],
22+
path: "appendAttributedString/appendAttributedStringTests")
2023
]
2124
)

0 commit comments

Comments
 (0)