Fix resources
This commit is contained in:
@@ -8,15 +8,21 @@ let package = Package(
|
|||||||
defaultLocalization: "en",
|
defaultLocalization: "en",
|
||||||
platforms: [.macOS(.v12), .iOS(.v15)],
|
platforms: [.macOS(.v12), .iOS(.v15)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "KeychainKit", targets: ["KeychainKit"]),
|
.library(name: "KeychainKit", targets: ["KeychainKit"])
|
||||||
],
|
],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(url: "https://github.com/angd-dev/localizable.git", from: "1.0.0"),
|
.package(url: "https://github.com/angd-dev/localizable.git", from: "1.0.0"),
|
||||||
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
|
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
.target(name: "KeychainKit", dependencies: [
|
.target(
|
||||||
|
name: "KeychainKit",
|
||||||
|
dependencies: [
|
||||||
.product(name: "Localizable", package: "localizable")
|
.product(name: "Localizable", package: "localizable")
|
||||||
])
|
],
|
||||||
|
resources: [
|
||||||
|
.process("Resources/Localizable.xcstrings")
|
||||||
|
]
|
||||||
|
)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user