NAME
Dist::Zilla::Plugin::PERLANCAR::CheckDepDists - Check for dists that depend on the dist you're building
VERSION
This document describes version 0.06 of Dist::Zilla::Plugin::PERLANCAR::CheckDepDists (from Perl distribution Dist-Zilla-Plugin-PERLANCAR-CheckDepDists), released on 2016-02-16.
SYNOPSIS
In dist.ini
:
[PERLANCAR::CheckDepDists]
DESCRIPTION
This plugin notifies you, in the after_build phase, of dists that might need to be rebuild too, because those dists depend on the dist you're building. Currently what it does:
Search your local installation for all lump dists (via searching all modules whose name ends with
::Lumped
). Inside each of these modules, there is a@LUMPED_DISTS
array which lists all the dists that the lump dist includes. When the current dist you're building is listed in@LUMPED_DISTS
, the plugin will issue a notification that you will also need to rebuild the associated lump dist.Search your local installation for all packed dists (via searching all modules whose name ends with
::Packed
,::Fatpacked
,::DataPacked
). Inside each of these modules, there is a@PACKED_DISTS
array which lists all the dists that the packed dist includes. When the current dist you're building is listed in@PACKED_DISTS
, the plugin will issue a notification that you will also need to rebuild the associated packed dist.Search
../
(XXX probably should be configurable) for all repos (dirs) that contains tag file.tag-requires-dist-DISTNAME
where DISTNAME is the current distribution's name.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Dist-Zilla-Plugin-PERLANCAR-CheckDepDists.
SOURCE
Source repository is at https://github.com/perlancar/perl-Dist-Zilla-Plugin-PERLANCAR-CheckDepDists.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-PERLANCAR-CheckDepDists
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
SEE ALSO
For more information about lump dists: Dist::Zilla::Plugin::Lump
For more information about packed dists: Dist::Zilla::Plugin::Depak
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.