Skip to content

Commit

Permalink
Update Package.swift to remove ".json" from deps (#570)
Browse files Browse the repository at this point in the history
Consistent package names avoid any SPM errors in CI/CD pipelines. https://stackoverflow.com/a/63079910/3077444
  • Loading branch information
takasurazeem authored Oct 21, 2023
1 parent 7e7dddf commit b4baa46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ let package = Package(

// UI
.package(url: "https://github.com/GenericDataSource/GenericDataSource", from: "3.1.1"),
.package(url: "https://github.com/SvenTiigi/WhatsNewKit.git", from: "1.3.7"),
.package(url: "https://github.com/SvenTiigi/WhatsNewKit", from: "1.3.7"),
.package(url: "https://github.com/mohamede1945/Popover", branch: "master"),
.package(url: "https://github.com/ninjaprox/NVActivityIndicatorView", from: "5.0.0"),

// Testing
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.9.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.9.0"),

], targets: validated(targets) + [testTargetLinkingAllPackageTargets(targets)]
)
Expand Down

0 comments on commit b4baa46

Please sign in to comment.