Files
letro-ios/Tools/Sources/Tools.swift
Doug ea4f1ba9f3 Automatically open a PR to bump the calver (#4167)
* Update our tools package to Swift 6.1

Also improves the package layout with subdirectories 📁

* Update GenerateSDKMocks to be an Async command.

* Add a tool to bump the project CalVer every month.

* Add a workflow to automatically bump the calendar version.

Note: This only does year & month, the patch is handled by the release script.
2025-06-03 17:52:16 +01:00

18 lines
1.0 KiB
Swift

import ArgumentParser
import Foundation
@main
struct Tools: AsyncParsableCommand {
static let configuration = CommandConfiguration(abstract: "A collection of command line tools for ElementX",
subcommands: [BuildSDK.self,
SetupProject.self,
OutdatedPackages.self,
DownloadStrings.self,
Locheck.self,
GenerateSDKMocks.self,
GenerateSAS.self,
AppIconBanner.self,
UnusedStrings.self,
BumpCalendarVersion.self])
}