Skip to content

Commit 29a21f0

Browse files
committed
Update SD Nav package
1 parent 827fb9f commit 29a21f0

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

Package.swift

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ let package = Package(
1313
// Products define the executables and libraries a package produces, and make them visible to other packages.
1414
.library(
1515
name: "ScreenDataUI",
16-
targets: ["ScreenDataUI"]),
16+
targets: ["ScreenDataUI"]
17+
)
1718
],
1819
dependencies: [
1920
// Dependencies declare other packages that this package depends on.
20-
// .package(url: /* package url */, from: "1.0.0"),
21-
.package(name: "ScreenData", url: "https://github.com/ServerDriven/ScreenData-swift", from: "0.4.1"),
22-
.package(name: "ScreenDataNavigation", url: "https://github.com/ServerDriven/ScreenDataNavigation-swift", .branch("develop")),
21+
.package(url: "https://github.com/ServerDriven/ScreenData-swift", from: "0.4.1"),
22+
.package(url: "https://github.com/ServerDriven/ScreenDataNavigation-swift", from: "1.1.0"),
2323
.package(url: "https://github.com/0xLeif/Chronicle", from: "0.2.3")
2424
],
2525
targets: [
@@ -28,12 +28,14 @@ let package = Package(
2828
.target(
2929
name: "ScreenDataUI",
3030
dependencies: [
31-
"ScreenData",
32-
"ScreenDataNavigation",
33-
"Chronicle"
34-
]),
31+
.product(name: "ScreenData", package: "ScreenData-swift"),
32+
.product(name: "ScreenDataNavigation", package: "ScreenDataNavigation-swift"),
33+
.product(name: "Chronicle", package: "Chronicle")
34+
]
35+
),
3536
.testTarget(
3637
name: "ScreenDataUITests",
37-
dependencies: ["ScreenDataUI"]),
38+
dependencies: ["ScreenDataUI"]
39+
)
3840
]
3941
)

0 commit comments

Comments
 (0)