Skip to content

Commit

Permalink
Update Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
narek-sv committed Mar 3, 2024
1 parent 06a4314 commit 4ae0c09
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ let package = Package(
name: "KeyValueStorage",
targets: ["KeyValueStorage"]),

.library(
name: "KeyValueStorageLegacy",
targets: ["KeyValueStorageLegacy"]),
.library(
name: "KeyValueStorageLegacyWrapper",
targets: ["KeyValueStorageLegacyWrapper"]),
.library(
name: "KeyValueStorageLegacySwiftUI",
targets: ["KeyValueStorageLegacySwiftUI"]),
// .library(
// name: "KeyValueStorageLegacy",
// targets: ["KeyValueStorageLegacy"]),
// .library(
// name: "KeyValueStorageLegacyWrapper",
// targets: ["KeyValueStorageLegacyWrapper"]),
// .library(
// name: "KeyValueStorageLegacySwiftUI",
// targets: ["KeyValueStorageLegacySwiftUI"]),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -39,17 +39,17 @@ let package = Package(
name: "KeyValueStorageTests",
dependencies: ["KeyValueStorage"]),

.target(
name: "KeyValueStorageLegacy",
dependencies: []),
.target(
name: "KeyValueStorageLegacyWrapper",
dependencies: [.target(name: "KeyValueStorageLegacy")]),
.target(
name: "KeyValueStorageLegacySwiftUI",
dependencies: [.target(name: "KeyValueStorageLegacyWrapper")]),
.testTarget(
name: "KeyValueStorageLegacyTests",
dependencies: ["KeyValueStorageLegacy", "KeyValueStorageLegacyWrapper", "KeyValueStorageLegacySwiftUI"]),
// .target(
// name: "KeyValueStorageLegacy",
// dependencies: []),
// .target(
// name: "KeyValueStorageLegacyWrapper",
// dependencies: [.target(name: "KeyValueStorageLegacy")]),
// .target(
// name: "KeyValueStorageLegacySwiftUI",
// dependencies: [.target(name: "KeyValueStorageLegacyWrapper")]),
// .testTarget(
// name: "KeyValueStorageLegacyTests",
// dependencies: ["KeyValueStorageLegacy", "KeyValueStorageLegacyWrapper", "KeyValueStorageLegacySwiftUI"]),
]
)

0 comments on commit 4ae0c09

Please sign in to comment.