Skip to content

Commit

Permalink
SPM warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-khashimov committed Jan 11, 2022
1 parent 2577bae commit 8836695
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "SwiftFortuneWheel",
dependencies: [],
exclude: ["Examples", "Documentation", "Images", "docs",]),
dependencies: []),
.testTarget(
name: "SwiftFortuneWheelTests",
dependencies: ["SwiftFortuneWheel"],
exclude: ["Examples", "Documentation", "Images", "docs",]),
dependencies: ["SwiftFortuneWheel"]),
]
)

0 comments on commit 8836695

Please sign in to comment.