Skip to content

Commit 50670b0

Browse files
committed
minor fixes
1 parent 28214ef commit 50670b0

File tree

8 files changed

+22
-3
lines changed

8 files changed

+22
-3
lines changed

Chapter 16/myProject/Package.resolved

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Chapter 16/myProject/Package.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ let package = Package(
1313
.package(url: "https://github.com/vapor/fluent.git", from: "4.0.0-rc"),
1414
.package(url: "https://github.com/vapor/fluent-sqlite-driver.git", from: "4.0.0-rc"),
1515
.package(url: "https://github.com/vapor/fluent-postgres-driver", from: "2.0.0-rc"),
16+
.package(url: "https://github.com/vapor/jwt.git", from: "4.0.0-rc"),
17+
//...
18+
.package(url: "https://github.com/vapor/apns", from: "1.0.0-rc"),
1619
.package(url: "https://github.com/binarybirds/liquid.git", from: "1.0.0"),
1720
.package(url: "https://github.com/binarybirds/liquid-local-driver.git", from: "1.0.0"),
1821
.package(url: "https://github.com/binarybirds/liquid-aws-s3-driver.git", from: "1.0.0"),
1922
.package(url: "https://github.com/binarybirds/view-kit.git", from: "1.0.0"),
20-
//...
21-
.package(url: "https://github.com/vapor/jwt.git", from: "4.0.0-rc"),
2223
.package(url: "https://github.com/binarybirds/content-api.git", from: "1.0.0"),
2324
.package(url: "https://github.com/binarybirds/viper-kit.git", from: "1.0.0"),
2425
.package(url: "https://github.com/binarybirds/spec.git", from: "1.0.0"),
25-
2626
.package(name: "MyProjectApi", path: "../MyProjectApi"),
2727
],
2828
targets: [
@@ -37,6 +37,7 @@ let package = Package(
3737
.product(name: "ViperKit", package: "viper-kit"),
3838
.product(name: "Vapor", package: "vapor"),
3939
//...
40+
.product(name: "APNS", package: "apns"),
4041
.product(name: "JWT", package: "jwt"),
4142
.product(name: "MyProjectApi", package: "MyProjectApi"),
4243
]),

0 commit comments

Comments
 (0)