make main changelord an alias for 'print'
This commit is contained in:
parent
ae29ae0ebf
commit
dcc2f7192c
@ -7,11 +7,9 @@ releases:
|
||||
changes:
|
||||
- Initial release
|
||||
change_types:
|
||||
- feat:
|
||||
level: minor
|
||||
title: Features
|
||||
keywords: []
|
||||
- fix:
|
||||
level: patch
|
||||
title: Bug fixes
|
||||
keywords: []
|
||||
- level: minor
|
||||
title: Features
|
||||
keywords: [ feat ]
|
||||
- level: patch
|
||||
title: Bug fixes
|
||||
keywords: [ fix ]
|
||||
|
@ -15,6 +15,12 @@ use List::AllUtils qw/ pairmap partition_by /;
|
||||
|
||||
use App::Changelord::Role::ChangeTypes;
|
||||
|
||||
sub run($self) {
|
||||
App::Changelord::Command::Print->new(
|
||||
parent_command => $self,
|
||||
)->run;
|
||||
}
|
||||
|
||||
subcommand $_ => 'App::Changelord::Command::' . ucfirst $_ =~ s/-(.)/uc $1/er
|
||||
for qw/ schema validate version bump init add git-gather print /;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user