Skip to content

Commit

Permalink
2024-05-16 - Fix package exclusion (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
markbattistella authored May 16, 2024
1 parent 3724a4d commit 1482958
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ let package = Package(
name: "BezelKit",
platforms: [.iOS(.v11)],
products: [
.library(name: "BezelKit", targets: ["BezelKit"])
.library(
name: "BezelKit",
targets: ["BezelKit"]
)
],
dependencies: [],
targets: [
.target(
name: "BezelKit",
exclude: ["../../Generator"],
resources: [.process("Resources/bezel.min.json")]
)
]
Expand Down

0 comments on commit 1482958

Please sign in to comment.