Subject: | Dist::Zilla::Role::PluginBundle::Easy should silently ignore undef plugins |
A naive user might do
$self->add_plugins(
'Plugin',
'AnotherPlugin',
( $self->switch ? 'Switch' : 'FakeSwitch'), # Works as you'd expect
( $self->stop ? undef : 'Continue'), # DIEDIEDIE
);
You might have undef as a "plugin" -- that should simply be skipped.