The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package Dist::Zilla::App 6.032;
# ABSTRACT: Dist::Zilla's App::Cmd
use App::Cmd::Setup 0.330 -app; # better compilation error detection
use Carp ();
$Carp::Internal{'Module::Runtime'} = 1;
sub global_opt_spec {
my ($self) = @_;
return (
[ "verbose|v", "log additional output" ],
[ "verbose-plugin|V=s@", "log additional output from some plugins only" ],
[ "lib-inc|I=s@", "additional \@INC dirs", {
callbacks => { 'always fine' => sub { unshift @INC, @{$_[0]}; } }
} ],
$self->SUPER::global_opt_spec,
);
}
sub _build_global_stashes {
my ($self) = @_;
return $self->{__global_stashes__} if $self->{__global_stashes__};
# tests shouldn't depend on the user's configuration
return {} if $ENV{DZIL_TESTING};
my $stash_registry = $self->{__global_stashes__} = {};
my $config_dir = Dist::Zilla::Util->_global_config_root;
my $config_base = $config_dir->child('config');
my $assembler = Dist::Zilla::MVP::Assembler::GlobalConfig->new({
chrome => $self->chrome,
stash_registry => $stash_registry,
section_class => 'Dist::Zilla::MVP::Section', # make this DZMA default
});
try {
my $reader = Dist::Zilla::MVP::Reader::Finder->new({
if_none => sub {
# warn <<'END_WARN';
# WARNING: No global configuration file was found in ~/.dzil -- this limits the
# ability of Dist::Zilla to perform some tasks. You can run "dzil setup" to
# create a simple first-pass configuration file, or you can touch the file
# ~/.dzil/config.ini to suppress this message in the future.
# END_WARN
return $_[2]->{assembler}->sequence
},
});
my $seq = $reader->read_config($config_base, { assembler => $assembler });
} catch {
my $e = $_;
if (eval { $e->isa('Config::MVP::Error') and $e->ident eq 'package not installed' }) {
my $package = $e->package;
my $bundle = $package =~ /^@/ ? ' bundle' : '';
die <<"END_DIE";
Required plugin$bundle $package isn't installed. Remedy with:
cpanm $package
END_DIE
}
else {
die <<'END_DIE';
Your global configuration file couldn't be loaded. It's a file matching
~/.dzil/config.*
You can try deleting the file or you might need to upgrade from pre-version 4
format. In most cases, this will just mean replacing [!release] with [%PAUSE]
and deleting any [!new] stanza. You can also delete the existing file and run
"dzil setup"
END_DIE
}
};
return $stash_registry;
}
#pod =method zilla
#pod
#pod This returns the Dist::Zilla object in use by the command. If none has yet
#pod been constructed, one will be by calling C<< Dist::Zilla->from_config >>.
#pod
#pod =cut
sub chrome {
my ($self) = @_;
return $self->{__chrome__} if $self->{__chrome__};
$self->{__chrome__} = Dist::Zilla::Chrome::Term->new;
my @v_plugins = $self->global_options->verbose_plugin
? grep { length } @{ $self->global_options->verbose_plugin }
: ();
my $verbose = $self->global_options->verbose;
$self->{__chrome__}->logger->set_debug($verbose ? 1 : 0);
return $self->{__chrome__};
}
sub zilla {
my ($self) = @_;
return $self->{'' . __PACKAGE__}{zilla} ||= do {
my @v_plugins = $self->global_options->verbose_plugin
? grep { length } @{ $self->global_options->verbose_plugin }
: ();
my $verbose = $self->global_options->verbose;
$self->chrome->logger->set_debug($verbose ? 1 : 0);
my $core_debug = grep { m/\A[-_]\z/ } @v_plugins;
my $zilla;
try {
$zilla = Dist::Zilla::Dist::Builder->from_config({
chrome => $self->chrome,
_global_stashes => $self->_build_global_stashes,
});
} catch {
die $_ unless try { $_->isa('Config::MVP::Error') }
&& $_->ident =~ /no viable config/;
$self->chrome->logger->log_fatal("no configuration (e.g, dist.ini) found");
};
$zilla->logger->set_debug($verbose ? 1 : 0);
VERBOSE_PLUGIN: for my $plugin_name (grep { ! m{\A[-_]\z} } @v_plugins) {
my @plugins = grep { $_->plugin_name =~ /\b\Q$plugin_name\E\b/ }
@{ $zilla->plugins };
$zilla->log_fatal("can't find plugins matching $plugin_name to set debug")
unless @plugins;
$_->logger->set_debug(1) for @plugins;
}
$zilla;
}
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dist::Zilla::App - Dist::Zilla's App::Cmd
=head1 VERSION
version 6.032
=head1 PERL VERSION
This module should work on any version of perl still receiving updates from
the Perl 5 Porters. This means it should work on any version of perl
released in the last two to three years. (That is, if the most recently
released version is v5.40, then this module should work on both v5.40 and
v5.38.)
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 METHODS
=head2 zilla
This returns the Dist::Zilla object in use by the command. If none has yet
been constructed, one will be by calling C<< Dist::Zilla->from_config >>.
=head1 AUTHOR
Ricardo SIGNES 😏 <cpan@semiotic.systems>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut