Skip to content

Commit

Permalink
chore: Exclude resources file from SPM (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
royjit authored Apr 15, 2021
1 parent 16c2c3a commit 151e023
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ let package = Package(
.target(
name: "AppSyncRealTimeClient",
dependencies: ["Starscream"],
path: "AppSyncRealTimeClient"
path: "AppSyncRealTimeClient",
exclude: ["Info.plist"]
),
.testTarget(
name: "AppSyncRealTimeClientTests",
dependencies: ["AppSyncRealTimeClient"],
path: "AppSyncRealTimeClientTests"
path: "AppSyncRealTimeClientTests",
exclude: ["Info.plist"]
)
]
)

0 comments on commit 151e023

Please sign in to comment.