diff --git a/Sources/Executable/CLI/Colibri.swift b/Executable/Sources/Colibri.swift similarity index 100% rename from Sources/Executable/CLI/Colibri.swift rename to Executable/Sources/Colibri.swift diff --git a/Sources/Executable/CLI/Commands/CreateCommand.swift b/Executable/Sources/Commands/CreateCommand.swift similarity index 100% rename from Sources/Executable/CLI/Commands/CreateCommand.swift rename to Executable/Sources/Commands/CreateCommand.swift diff --git a/Sources/Executable/CLI/Options/CreateOptions.swift b/Executable/Sources/Options/CreateOptions.swift similarity index 100% rename from Sources/Executable/CLI/Options/CreateOptions.swift rename to Executable/Sources/Options/CreateOptions.swift diff --git a/Package.swift b/Package.swift index e6333af..67c92d0 100644 --- a/Package.swift +++ b/Package.swift @@ -33,15 +33,15 @@ let package = Package( ), .target(name: "ColibriLibrary") ], - path: "Sources/Executable", - resources: [ - .copy("Resources/") - ] + path: "Executable" ), .target( name: "ColibriLibrary", dependencies: [], - path: "Sources/Library" + path: "Sources/Library", + resources: [ + .copy("Resources/Files/LICENSE") + ] ), .testTarget( name: "ColibriTests",