-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPackage.swift
More file actions
59 lines (57 loc) · 1.95 KB
/
Copy pathPackage.swift
File metadata and controls
59 lines (57 loc) · 1.95 KB
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
// 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: "TextFieldsCatalog",
defaultLocalization: "en",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "TextFieldsCatalog",
targets: ["TextFieldsCatalog"])
],
dependencies: [
.package(
name: "InputMask",
url: "https://github.com/RedMadRobot/input-mask-ios.git",
.exact("6.0.0")
)
],
targets: [
.target(
name: "TextFieldsCatalog",
dependencies: ["InputMask"],
path: "TextFieldsCatalog",
exclude: [
"Info.plist"
],
resources: [
.process("Resources/Images/close.png"),
.process("Resources/Images/close@2x.png"),
.process("Resources/Images/close@3x.png"),
.process("Resources/Images/eyeOff.png"),
.process("Resources/Images/eyeOff@2x.png"),
.process("Resources/Images/eyeOff@3x.png"),
.process("Resources/Images/eyeOn.png"),
.process("Resources/Images/eyeOn@2x.png"),
.process("Resources/Images/eyeOn@3x.png"),
.process("Resources/Images/leftArrow.png"),
.process("Resources/Images/leftArrow@2x.png"),
.process("Resources/Images/leftArrow@3x.png"),
.process("Resources/Images/rightArrow.png"),
.process("Resources/Images/rightArrow@2x.png"),
.process("Resources/Images/rightArrow@3x.png")
]
),
.testTarget(
name: "TextFieldsCatalogTests",
dependencies: ["TextFieldsCatalog"],
path: "TextFieldsCatalogTests",
exclude: [
"Info.plist"
]
)
]
)