feat: Removes cli-client
This commit is contained in:
@@ -7,12 +7,12 @@ let package = Package(
|
||||
platforms: [.macOS(.v14)],
|
||||
products: [
|
||||
.executable(name: "hpa", targets: ["hpa"]),
|
||||
.library(name: "CliClient", targets: ["CliClient"]),
|
||||
.library(name: "CodersClient", targets: ["CodersClient"]),
|
||||
.library(name: "CommandClient", targets: ["CommandClient"]),
|
||||
.library(name: "ConfigurationClient", targets: ["ConfigurationClient"]),
|
||||
.library(name: "FileClient", targets: ["FileClient"]),
|
||||
.library(name: "PlaybookClient", targets: ["PlaybookClient"]),
|
||||
.library(name: "PandocClient", targets: ["PandocClient"]),
|
||||
.library(name: "VaultClient", targets: ["VaultClient"])
|
||||
],
|
||||
dependencies: [
|
||||
@@ -27,9 +27,9 @@ let package = Package(
|
||||
.executableTarget(
|
||||
name: "hpa",
|
||||
dependencies: [
|
||||
"CliClient",
|
||||
"ConfigurationClient",
|
||||
"FileClient",
|
||||
"PandocClient",
|
||||
"PlaybookClient",
|
||||
"VaultClient",
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
@@ -38,25 +38,6 @@ let package = Package(
|
||||
.product(name: "ShellClient", package: "swift-shell-client")
|
||||
]
|
||||
),
|
||||
.target(
|
||||
name: "CliClient",
|
||||
dependencies: [
|
||||
"CommandClient",
|
||||
"CodersClient",
|
||||
"ConfigurationClient",
|
||||
"PlaybookClient",
|
||||
.product(name: "Dependencies", package: "swift-dependencies"),
|
||||
.product(name: "DependenciesMacros", package: "swift-dependencies"),
|
||||
.product(name: "ShellClient", package: "swift-shell-client")
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
name: "CliClientTests",
|
||||
dependencies: [
|
||||
"CliClient",
|
||||
"TestSupport"
|
||||
]
|
||||
),
|
||||
.target(
|
||||
name: "CodersClient",
|
||||
dependencies: [
|
||||
@@ -110,6 +91,20 @@ let package = Package(
|
||||
.product(name: "DependenciesMacros", package: "swift-dependencies")
|
||||
]
|
||||
),
|
||||
.target(
|
||||
name: "PandocClient",
|
||||
dependencies: [
|
||||
"CommandClient",
|
||||
"ConfigurationClient",
|
||||
"PlaybookClient",
|
||||
.product(name: "Dependencies", package: "swift-dependencies"),
|
||||
.product(name: "DependenciesMacros", package: "swift-dependencies")
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
name: "PandocClientTests",
|
||||
dependencies: ["PandocClient", "TestSupport"]
|
||||
),
|
||||
.target(
|
||||
name: "PlaybookClient",
|
||||
dependencies: [
|
||||
|
||||
Reference in New Issue
Block a user