-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathPackage.swift
127 lines (122 loc) · 3.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CurrencyText",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "CurrencyTextSwiftUI",
targets: [
"CurrencyFormatter",
"CurrencyTextField"
]
),
.library(
name: "CurrencyText",
targets: [
"CurrencyFormatter",
"CurrencyUITextFieldDelegate"
]
),
.library(
name: "CurrencyFormatter",
targets: [
"CurrencyFormatter"
]
)
],
dependencies: [
.package(
name: "SnapshotTesting",
url: "https://github.com/pointfreeco/swift-snapshot-testing",
.upToNextMinor(
from: .init(1, 9, 0)
)
),
.package(
name: "ConcurrencyExtras",
url: "https://github.com/pointfreeco/swift-concurrency-extras",
.upToNextMinor(
from: .init(1, 3, 1)
)
)
],
targets: [
/// Can be imported and used to have access to `CurrencyFormatter`.
/// Useful to `format and represent currency values`.
.target(
name: "CurrencyFormatter",
dependencies: [],
path: "Sources/Formatter"
),
.testTarget(
name: "CurrencyFormatterTests",
dependencies: [
.target(name: "CurrencyFormatter")
],
path: "Tests/Formatter"
),
/// Can be imported and used to have access to `CurrencyUITextFieldDelegate`.
/// Useful to `format text field inputs as currency`, based on a the settings of a CurrencyFormatter.
.target(
name: "CurrencyUITextFieldDelegate",
dependencies: [
.target(name: "CurrencyFormatter")
],
path: "Sources/UITextFieldDelegate"
),
.testTarget(
name: "CurrencyUITextFieldDelegateTests",
dependencies: [
.target(name: "CurrencyUITextFieldDelegate")
],
path: "Tests/UITextFieldDelegate"
),
/// Can be imported and used to have access to `CurrencyTextField`, a `SwiftUI` text field that
/// sanitizes user input based on a given `CurrencyFormatter`.
.target(
name: "CurrencyTextField",
dependencies: [
.target(name: "CurrencyFormatter"),
.target(name: "CurrencyUITextFieldDelegate")
],
path: "Sources/SwiftUI"
),
.testTarget(
name: "CurrencyTextFieldTests",
dependencies: [
.target(name: "CurrencyTextField"),
.target(name: "CurrencyTextFieldTestSupport"),
.product(name: "ConcurrencyExtras", package: "ConcurrencyExtras")
],
path: "Tests/SwiftUI"
),
.testTarget(
name: "CurrencyTextFieldSnapshotTests",
dependencies: [
.target(name: "CurrencyTextField"),
.target(name: "CurrencyTextFieldTestSupport"),
.product(
name: "SnapshotTesting",
package: "SnapshotTesting"
)
],
path: "Tests/SwiftUISnapshotTests",
resources: [
.copy("__Snapshots__")
]
),
/// Common `CurrencyTextField test helpers` that can be imported by all CurrencyText test targets.
.target(
name: "CurrencyTextFieldTestSupport",
dependencies: [
.target(name: "CurrencyTextField"),
.target(name: "CurrencyFormatter")
],
path: "Sources/CurrencyTextFieldTestSupport"
)
]
)