- Split BuildIOS command into build_ios_archive and build_ios_build - Split Git command into git_branch, git_remote, git_revision, git_stash - Add cli_style.dart and printer.dart for consistent CLI output - Add macos_signing.dart for macOS/iOS code signing - Refactor pipeline system (pipeline, pipeline_condition, pipeline_contain, etc.) - Update tag_system, defined_data, pipeline_data - Update application and command files for new structure - Add tests for new command catalog and core functionality - Update README with new features
20 lines
245 B
Dart
20 lines
245 B
Dart
enum Color {
|
|
black,
|
|
red,
|
|
green,
|
|
yellow,
|
|
blue,
|
|
magenta,
|
|
cyan,
|
|
lightGray,
|
|
darkGray,
|
|
redStrong,
|
|
greenStrong,
|
|
yellowStrong,
|
|
blueStrong,
|
|
magentaStrong,
|
|
cyanStrong,
|
|
white
|
|
}
|
|
|
|
enum Style { bold, underline, dim, reverse }
|