File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11Revision history for Perl extension JavaScript::Minifier::XS.
22
3+ 0.01_04 Wed Oct 17 15:56 PDT 2007
4+ - fix t/02-minify.t, so it doesn't try to "use_ok()" before issuing a test
5+ plan
6+
370.01_03 Tue Oct 16 19:47 PDT 2007
48 - don't use "strndup()"; not available on all systems
59 - we require Perl 5.006; update Build.PL and XS.pm to denote this
Original file line number Diff line number Diff line change 11---
22name : JavaScript-Minifier-XS
3- version : 0.01_03
3+ version : 0.01_04
44author :
55 - Graham TerMarsch (cpan@howlingfrog.com)
66abstract : XS based JavaScript minifier
@@ -14,7 +14,7 @@ build_requires:
1414provides :
1515 JavaScript::Minifier::XS :
1616 file : lib/JavaScript/Minifier/XS.pm
17- version : 0.01_03
17+ version : 0.01_04
1818generated_by : Module::Build version 0.2805
1919meta-spec :
2020 url : http://module-build.sourceforge.net/META-spec-v1.2.html
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require DynaLoader;
99our @ISA = qw( Exporter DynaLoader) ;
1010our @EXPORT_OK = qw( minify) ;
1111
12- our $VERSION = ' 0.01_03 ' ;
12+ our $VERSION = ' 0.01_04 ' ;
1313
1414bootstrap JavaScript::Minifier::XS $VERSION ;
1515
Original file line number Diff line number Diff line change @@ -2,9 +2,7 @@ use strict;
22use warnings;
33use IO::File;
44use Test::More;
5- BEGIN {
6- use_ok(' JavaScript::Minifier::XS' , qw( minify) );
7- };
5+ use JavaScript::Minifier::XS qw( minify) ;
86
97# ##############################################################################
108# figure out how many JS files we're going to run through for testing
You can’t perform that action at this time.
0 commit comments