From 4dc840332e35cbb2b1a49dae5656d22343d453c1 Mon Sep 17 00:00:00 2001 From: Brandon Evans Date: Tue, 10 Sep 2019 21:49:35 -0600 Subject: [PATCH] Update Package.swift with library product --- .gitignore | 1 + Package.swift | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a7c324c..3f82e40 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ **/xcuserdata *.pbxuser *.mode1v3 +.swiftpm diff --git a/Package.swift b/Package.swift index 9b01105..a936429 100644 --- a/Package.swift +++ b/Package.swift @@ -1,5 +1,13 @@ +// swift-tools-version:5.0 + import PackageDescription let package = Package( - name: "UIImageColors" + name: "UIImageColors", + products: [ + .library(name: "UIImageColors", targets: ["UIImageColors"]) + ], + targets: [ + .target(name: "UIImageColors", path: "UIImageColors") + ] )