Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWDG committed Sep 21, 2024
1 parent c1a8e02 commit 9693fee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import PackageDescription

let package = Package(
name: "OnboardingKit",
defaultLocalization: "en",
platforms: [
.iOS(.v15),
.macOS(.v12),
Expand All @@ -21,7 +22,11 @@ let package = Package(
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "OnboardingKit"),
name: "OnboardingKit",
resources: [
.process("Localizable.xcstrings")
]
),
.testTarget(
name: "OnboardingKitTests",
dependencies: ["OnboardingKit"])
Expand Down

0 comments on commit 9693fee

Please sign in to comment.