Skip to content

Commit

Permalink
Fix danger-swift dependency declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
el-hoshino committed Nov 17, 2021
1 parent 2a0004a commit b72c28b
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 @@ -14,14 +14,14 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/danger/swift.git", from: "3.0.0"),
.package(name: "danger-swift", url: "https://github.com/danger/swift.git", from: "3.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 which this package depends on.
.target(
name: "DangerSwiftShoki",
dependencies: [.product(name: "Danger", package: "swift")]),
dependencies: [.product(name: "Danger", package: "danger-swift")]),
.testTarget(
name: "DangerSwiftShokiTests",
dependencies: ["DangerSwiftShoki"]),
Expand Down

0 comments on commit b72c28b

Please sign in to comment.