Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add private packages to no_index metadata #1380

Merged
merged 1 commit into from
Jul 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add private packages to no_index metadata
  • Loading branch information
Grinnz committed Jul 9, 2019
commit 1d52c98b683a0ef5c199b7282a993587ea719c9e
9 changes: 6 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ WriteMakefile(
META_MERGE => {
dynamic_config => 0,
'meta-spec' => {version => 2},
no_index => {directory => ['examples', 't']},
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
no_index => {
directory => [qw(examples t)],
package => [qw(Mojo::Exception::_Guard Mojo::Server::PSGI::_IO)],
},
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
bugtracker => {web => 'https://github.com/mojolicious/mojo/issues'},
homepage => 'https://mojolicious.org',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
Expand Down