Subject: | Exclude dlib/ and demo/ from PAUSE indexing |
Hi Damian,
The dlib/ and demo/ should be excluded from indexing.
I've seen that you use the "package\n<name>" trick for that. But this trick doesn't stop MetaCPAN from indexing POD in the dlib/ directory. Check this: https://metacpan.org/release/Keyword-Declare
So it would be better to also add metadata to tell indexers (no just Perl code indexers such as PAUSE) to exclude dlib/ and demo/
Here is how to do that from Makefile.PL with EUMM 6.46+:
--
Olivier Mengué - http://perlresume.org/DOLMEN - https://gratipay.com/dolmen/
The dlib/ and demo/ should be excluded from indexing.
I've seen that you use the "package\n<name>" trick for that. But this trick doesn't stop MetaCPAN from indexing POD in the dlib/ directory. Check this: https://metacpan.org/release/Keyword-Declare
So it would be better to also add metadata to tell indexers (no just Perl code indexers such as PAUSE) to exclude dlib/ and demo/
Here is how to do that from Makefile.PL with EUMM 6.46+:
META_MERGE => { no_index => { directory => [qw/demo dlib/], } }Cheers,
--
Olivier Mengué - http://perlresume.org/DOLMEN - https://gratipay.com/dolmen/