feat: Adds generate commands that call to pandoc to generate pdf, latex, and html files from a project.

This commit is contained in:
2024-12-13 15:33:20 -05:00
parent d1b3379815
commit 3f56dda568
22 changed files with 606 additions and 57 deletions

View File

@@ -32,9 +32,6 @@ let package = Package(
.product(name: "CliDoc", package: "swift-cli-doc"),
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "ShellClient", package: "swift-shell-client")
],
plugins: [
.plugin(name: "BuildWithVersionPlugin", package: "swift-cli-version")
]
),
.target(
@@ -109,7 +106,10 @@ let package = Package(
),
.testTarget(
name: "PlaybookClientTests",
dependencies: ["PlaybookClient"]
dependencies: [
"PlaybookClient",
"TestSupport"
]
)
]
)