Skip to content

Commit

Permalink
Suppress redefine warnings for locally loaded packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kidclamp committed Apr 18, 2019
1 parent aff2697 commit 0512f52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package CSS::Minifier;
use strict;
use warnings;

no warnings 'redefine';

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(minify);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package JavaScript::Minifier;
use strict;
use warnings;

no warnings 'redefine';

our $VERSION = '1.14'; # VERSION

require Exporter;
Expand Down

0 comments on commit 0512f52

Please sign in to comment.