Skip to content

Commit 61cae81

Browse files
Merge pull request #10 from appunite/chore/spm-support
SPM Support
2 parents fb2c63e + 1725ecd commit 61cae81

29 files changed

+48
-0
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// swift-tools-version: 5.9
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "Stefan",
8+
products: [
9+
.library(
10+
name: "Stefan",
11+
targets: ["Stefan"]
12+
),
13+
],
14+
dependencies: [
15+
.package(url: "https://github.com/appunite/Differ", exact: "1.4.6")
16+
],
17+
targets: [
18+
.target(
19+
name: "Stefan",
20+
dependencies: ["Differ"]
21+
),
22+
.testTarget(
23+
name: "StefanTests",
24+
dependencies: ["Stefan"]
25+
),
26+
]
27+
)
File renamed without changes.
File renamed without changes.

Stefan/Extensions/UICollectionView + ReloadableView.swift renamed to Sources/Stefan/Extensions/UICollectionView + ReloadableView.swift

File renamed without changes.

Stefan/Extensions/UITableView + ReloadableView.swift renamed to Sources/Stefan/Extensions/UITableView + ReloadableView.swift

File renamed without changes.

Stefan/Extensions/UIView + LoadableStatePlaceholderPresentable.swift renamed to Sources/Stefan/Extensions/UIView + LoadableStatePlaceholderPresentable.swift

File renamed without changes.

Stefan/Extensions/UIViewController + LoadableStatePlaceholderPresentable.swift renamed to Sources/Stefan/Extensions/UIViewController + LoadableStatePlaceholderPresentable.swift

File renamed without changes.

0 commit comments

Comments
 (0)