Skip to content

Commit e97dd18

Browse files
author
Daniel Browne
committed
Rename targets in 'Package.swift'
1 parent d3db73f commit e97dd18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ let package = Package(
66
name: "PusherSwift",
77
platforms: [.iOS("13.0"), .macOS("10.15"), .tvOS("13.0")],
88
products: [
9-
.library(name: "PusherSwift", targets: ["PusherSwiftWithEncryption"])
9+
.library(name: "PusherSwift", targets: ["PusherSwift"])
1010
],
1111
dependencies: [
1212
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.0")),
1313
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.0.0")),
1414
],
1515
targets: [
1616
.target(
17-
name: "PusherSwiftWithEncryption",
17+
name: "PusherSwift",
1818
dependencies: [
1919
"NWWebSocket",
2020
"TweetNacl",
2121
],
2222
path: "Sources"
2323
),
2424
.testTarget(
25-
name: "PusherSwiftWithEncryptionTests",
26-
dependencies: ["PusherSwiftWithEncryption"],
25+
name: "PusherSwiftTests",
26+
dependencies: ["PusherSwift"],
2727
path: "Tests",
2828
swiftSettings: [.define("WITH_ENCRYPTION")]
2929
)

0 commit comments

Comments
 (0)