Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 29f727c

Browse files
Initial version of Swift Package Manager
1 parent a7eba17 commit 29f727c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Package.swift

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// swift-tools-version:5.0
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "Shimmer",
6+
platforms: [
7+
.iOS(.v9),
8+
.tvOS(.v10)
9+
],
10+
products: [
11+
.library(
12+
name: "Shimmer",
13+
targets: ["FBShimmering"]
14+
)
15+
],
16+
targets: [
17+
.target(
18+
name: "FBShimmering",
19+
path: "FBShimmering",
20+
exclude: [
21+
"FBShimmering-Prefix.pch"
22+
]
23+
)
24+
]
25+
)

0 commit comments

Comments
 (0)