Skip to content

Commit

Permalink
Update package description
Browse files Browse the repository at this point in the history
  • Loading branch information
eFagerman committed Feb 27, 2021
1 parent 08288b1 commit 43e6cee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import PackageDescription

let package = Package(
name: "MerchantKit",
platforms: [
.iOS(.v10), .macOS(.v11)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand All @@ -20,9 +23,11 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "MerchantKit",
dependencies: []),
dependencies: [],
path: "Source"),
.testTarget(
name: "MerchantKitTests",
dependencies: ["MerchantKit"]),
dependencies: ["MerchantKit"],
path: "Tests")
]
)

0 comments on commit 43e6cee

Please sign in to comment.