Subject: | use-devel-checklib -- inc/ not added to META.yml no_index |
use-devel-checklib doesn't add 'inc/' to META.yml no_index and it really
should either do so or warn the user to do so.
For example, the following parameter to Module::Build::new() will do the
right thing:
meta_add => {
no_index => {
directory => [ qw/ inc /],
}
},
Of course, parsing Module::Build and trying to add this is hard, so
maybe just documenting it and also having it print out to screen and
telling the user to add it to Build.PL is the right thing to do.
For ExtUtils::MakeMaker, I'm not sure that there is any easy way to do
the same thing.