Skip to content

Commit 52bf0c4

Browse files
author
Vance Will
committed
udpate package config
1 parent b05fe7a commit 52bf0c4

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import PackageDescription
66
let package = Package(
77
name: "Wormhole",
88
platforms: [
9-
.iOS(.v9),
9+
.iOS(.v10),
1010
.macOS(.v10_10),
11-
.watchOS(.v2),
11+
.watchOS(.v3),
1212
],
1313
products: [
1414
.library(

Wormhole.podspec

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,15 @@ Pod::Spec.new do |s|
1818

1919
s.default_subspec = 'Core'
2020

21-
s.ios.deployment_target = '9.0'
21+
s.ios.deployment_target = '10.0'
2222
s.osx.deployment_target = '10.10'
23-
s.watchos.deployment_target = '2.0'
23+
s.watchos.deployment_target = '3.0'
2424

2525
s.ios.frameworks = 'CoreServices', 'Foundation', 'WatchConnectivity'
2626
s.osx.frameworks = 'CoreServices', 'Foundation'
2727
s.watchos.frameworks = 'CoreServices', 'Foundation', 'WatchConnectivity'
2828

29-
s.dependency 'AnyCodable-FlightSchool', '~> 0.4.0'
30-
3129
s.subspec 'Core' do |core|
32-
core.ios.source_files = 'Sources/Wormhole/*.swift'
33-
core.watchos.source_files = 'Sources/Wormhole/*.swift'
34-
core.osx.source_files =
35-
'Sources/Wormhole/Wormhole.swift',
36-
'Sources/Wormhole/Helpers.swift',
37-
'Sources/Wormhole/TransitingType.swift',
38-
'Sources/Wormhole/Transiting.swift',
39-
'Sources/Wormhole/FileTransiting.swift',
40-
'Sources/Wormhole/CoordinatedFileTransiting.swift'
30+
core.source_files = 'Sources/Wormhole/**/*.swift'
4131
end
4232
end

0 commit comments

Comments
 (0)