-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
41 lines (39 loc) · 1.34 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "IonicPortals",
platforms: [.iOS(.v13)],
products: [
.library(
name: "IonicPortals",
targets: ["IonicPortals"]
)
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm", .upToNextMajor(from: "6.0.0")),
.package(url: "https://github.com/ionic-team/ionic-live-updates-releases", "0.5.0"..<"0.6.0"),
.package(url: "https://github.com/pointfreeco/swift-clocks", .upToNextMajor(from: "1.0.2"))
],
targets: [
.target(
name: "IonicPortals",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm"),
.product(name: "IonicLiveUpdates", package: "ionic-live-updates-releases")
]
),
.testTarget(
name: "IonicPortalsTests",
dependencies: [ "IonicPortals" ]
),
.testTarget(
name: "IonicPortalsObjcTests",
dependencies: [ "IonicPortals" ]
),
.testTarget(
name: "ParallelAsyncSequenceTests",
dependencies: [ "IonicPortals", .product(name: "Clocks", package: "swift-clocks") ]
)
]
)