This PR contains the work done to implement the `Update` subcommand that clean the *Hummingbird* project. Reviewed-on: #8 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
21 lines
427 B
Swift
21 lines
427 B
Swift
import ArgumentParser
|
|
|
|
@main
|
|
struct Colibri: AsyncParsableCommand {
|
|
|
|
// MARK: Properties
|
|
|
|
static let configuration = CommandConfiguration(
|
|
abstract: "The utility to manage your Hummingbird apps",
|
|
subcommands: [
|
|
Build.self,
|
|
Clean.self,
|
|
Create.self,
|
|
Outdated.self,
|
|
Update.self
|
|
],
|
|
defaultSubcommand: Create.self
|
|
)
|
|
|
|
}
|