Skip to content

Commit

Permalink
chore: Clean up package file
Browse files Browse the repository at this point in the history
  • Loading branch information
surpher committed Jul 29, 2021
1 parent 8d3a33b commit 703bb15
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ import PackageDescription
let package = Package(
name: "PactSwiftToolbox",

// MARK: - Platforms

platforms: [
.macOS(.v11),
.iOS(.v12),
.tvOS(.v12)
],

// MARK: - Products

products: [
Expand All @@ -20,8 +28,17 @@ let package = Package(
// MARK: - Targets

targets: [
.target(name: "PactSwiftToolbox", dependencies: []),
.testTarget(name: "PactSwiftToolboxTests", dependencies: ["PactSwiftToolbox"]),
.target(
name: "PactSwiftToolbox",
dependencies: []
),

.testTarget(
name: "PactSwiftToolboxTests",
dependencies: [
"PactSwiftToolbox"
]
),
]

// MARK: - Other Settings
Expand Down

0 comments on commit 703bb15

Please sign in to comment.