Skip to content

Commit bc31ab9

Browse files
committed
fix package dependency
1 parent b42061a commit bc31ab9

File tree

2 files changed

+68
-16
lines changed

2 files changed

+68
-16
lines changed

Package.resolved

Lines changed: 56 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ let package = Package(
1212
targets: ["ResponsiveTextField"]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.17.2"),
16-
.package(url: "https://github.com/pointfreeco/combine-schedulers.git", from: "1.0.2")
15+
.package(
16+
url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
17+
from: "1.17.2"
18+
),
19+
.package(
20+
url: "https://github.com/pointfreeco/combine-schedulers.git",
21+
from: "1.0.2"
22+
)
1723
],
1824
targets: [
1925
.target(
@@ -28,7 +34,10 @@ let package = Package(
2834
),
2935
.testTarget(
3036
name: "ResponsiveTextFieldTests",
31-
dependencies: ["ResponsiveTextField", "SnapshotTesting"],
37+
dependencies: [
38+
"ResponsiveTextField",
39+
.product(name: "SnapshotTesting", package: "swift-snapshot-testing")
40+
],
3241
exclude: ["__Snapshots__"],
3342
swiftSettings: [
3443
.enableExperimentalFeature("StrictConcurrency"),

0 commit comments

Comments
 (0)