Add command to generate Colors

This commit is contained in:
2021-12-20 16:28:23 +01:00
parent e2150059f7
commit e8545955f6
22 changed files with 1094 additions and 31 deletions

View File

@@ -14,13 +14,22 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "ResgenSwift",
dependencies: ["FontToolCore"]),
dependencies: ["FontToolCore", "ColorToolCore"]
),
.target(
name: "FontToolCore",
dependencies: [
"CLIToolCore",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
]
),
.target(
name: "ColorToolCore",
dependencies: [
"CLIToolCore",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
),
// Helper targets
.target(name: "CLIToolCore"),
// Test targets