-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
63 lines (52 loc) · 2.44 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "FacyReact",
products: [],
dependencies: [
// Handy Swift features that didn't make it into the Swift standard library.
.package(url: "https://github.com/Flinesoft/HandySwift.git", .upToNextMajor(from: "2.8.0")),
// Handy UI features that should have been part of UIKit in the first place.
.package(url: "https://github.com/Flinesoft/HandyUIKit.git", .upToNextMajor(from: "1.9.1")),
// Keep the screen flow and data handling logic out of your view controllers – let them handle view-stuff only.
.package(url: "https://github.com/Flinesoft/Imperio.git", .upToNextMajor(from: "3.0.2")),
// Error Handler based on localized & healable (recoverable) errors without the overhead of NSError.
.package(url: "https://github.com/JamitLabs/MungoHealer.git", .upToNextMajor(from: "0.3.2")),
// 📸 Delightful Swift snapshot testing.
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .upToNextMajor(from: "1.4.0")),
// Convenient logging during development & release in Swift
.package(url: "https://github.com/SwiftyBeaver/SwiftyBeaver.git", .upToNextMajor(from: "1.7.0")),
// Modern Swift API for NSUserDefaults
.package(url: "https://github.com/radex/SwiftyUserDefaults.git", .upToNextMajor(from: "4.0.0-beta.2")),
// SnapKit is a DSL to make Auto Layout easy on both iOS and OS X
.package(url: "https://github.com/SnapKit/SnapKit.git", .branch("develop")),
.package(url: "https://github.com/Flinesoft/AnyMenu.git", .branch("stable")),
.package(url: "https://github.com/HeroTransitions/Hero.git", .upToNextMajor(from: "1.4.0")),
.package(url: "https://github.com/rocklyve/SwiftEntryKit.git", .branch("master"))
],
targets: [
.target(
name: "App",
dependencies: [
"HandySwift",
"HandyUIKit",
"Imperio",
"MungoHealer",
"SwiftyBeaver",
"SwiftyUserDefaults",
"SnapKit",
"AnyMenu",
"Hero",
"SwiftEntryKit"
],
path: "App"
),
.testTarget(
name: "Tests",
dependencies: [
"SnapshotTesting",
],
path: "Tests"
),
]
)