Fix resources

This commit is contained in:
2025-09-17 19:33:01 +03:00
parent e0af36f9a6
commit daec0db688

View File

@@ -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")
]
)
] ]
) )