Extracted the in-app notifications from the Sample app target into its own Notifying package target.
This commit is contained in:
@@ -13,14 +13,26 @@ let package = Package(
|
||||
products: [
|
||||
.library(
|
||||
name: "Features",
|
||||
targets: ["Recording"]
|
||||
targets: [
|
||||
"Notifying",
|
||||
"Recording",
|
||||
]
|
||||
),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "Notifying",
|
||||
path: "Sources/Notifying"
|
||||
),
|
||||
.target(
|
||||
name: "Recording",
|
||||
path: "Sources/Recording"
|
||||
),
|
||||
.testTarget(
|
||||
name: "NotifyingTests",
|
||||
dependencies: ["Notifying"],
|
||||
path: "Tests/Notifying"
|
||||
),
|
||||
.testTarget(
|
||||
name: "RecordingTests",
|
||||
dependencies: ["Recording"],
|
||||
|
||||
Reference in New Issue
Block a user