-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathPackage.swift
33 lines (30 loc) · 927 Bytes
/
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
// swift-tools-version:5.3
// Copyright © 2021 SpotHero, Inc. All rights reserved.
import PackageDescription
let package = Package(
name: "SpotHeroEmailValidator",
platforms: [
.iOS(.v9), // minimum supported version via SPM
.macOS(.v10_10), // minimum supported version via SPM
.tvOS(.v9), // minimum supported version via SPM
// watchOS is unsupported
],
products: [
.library(name: "SpotHeroEmailValidator", targets: ["SpotHeroEmailValidator"]),
],
targets: [
.target(
name: "SpotHeroEmailValidator",
dependencies: [],
resources: [
.copy("Data/DomainData.plist"),
]
),
.testTarget(
name: "SpotHeroEmailValidatorTests",
dependencies: [
.target(name: "SpotHeroEmailValidator"),
]
),
]
)