From ee99efc81cd44024b12f0281e794aa8a4d8ccc9b Mon Sep 17 00:00:00 2001 From: Sean Najera Date: Thu, 14 Mar 2024 11:30:47 -0700 Subject: [PATCH] remove trailing comma in Package.swift Fixes a syntax error, which is preventing SkeletonView from being added as a dependency in client projects --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index aa7200de..83079270 100644 --- a/Package.swift +++ b/Package.swift @@ -18,7 +18,7 @@ let package = Package( .target( name: "SkeletonView", path: "SkeletonViewCore/Sources", - resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")], + resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")] ), .testTarget( name: "SkeletonViewTests",