Skip to content

Commit

Permalink
Merge pull request #15 from yumemi-inc/feature/packages
Browse files Browse the repository at this point in the history
fix: Update deprecated APIs in Package.swift
  • Loading branch information
novr authored Feb 29, 2024
2 parents 247695d + 2b63d76 commit 582d091
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ let package = Package(
targets: ["DangerSwiftKantoku"]),
],
dependencies: [
.package(name: "danger-swift", url: "https://github.com/danger/swift.git", .upToNextMajor(from: "3.0.0")),
.package(name: "XCResultKit", url: "https://github.com/davidahouse/XCResultKit", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/danger/swift", from: "3.0.0"),
.package(url: "https://github.com/davidahouse/XCResultKit", from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "DangerSwiftKantoku",
dependencies: [
.product(name: "Danger", package: "danger-swift"),
.product(name: "Danger", package: "swift"),
"XCResultKit",
]),
.testTarget(
Expand Down

0 comments on commit 582d091

Please sign in to comment.