File tree Expand file tree Collapse file tree 6 files changed +11
-4
lines changed
Expand file tree Collapse file tree 6 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ Module::Build->new(
77 ' license' => ' perl' ,
88 ' dist_author' => ' Graham TerMarsch (cpan@howlingfrog.com)' ,
99 ' create_makefile_pl' => ' traditional' ,
10+ ' xs_files' => {
11+ ' XS.xs' => ' lib/JavaScript/Minifier/XS.xs' ,
12+ },
1013 ' build_requires' => {
1114 ' Test::More' => 0,
1215 },
Original file line number Diff line number Diff line change 11Revision history for Perl extension JavaScript::Minifier::XS.
22
3+ 0.01_02 Tue Oct 16 12:22 PDT 2007
4+ - relocate the XS file so that its picked up properly by EU::MM when
5+ running "perl Makefile.PL" to do a build.
6+
370.01_01 Mon Oct 15 22:11 PDT 2007
48 - initial public version
Original file line number Diff line number Diff line change 55MANIFEST.SKIP
66META.yml
77README
8+ XS.xs
89lib/JavaScript/Minifier/XS.pm
9- lib/JavaScript/Minifier/XS.xs
1010t/01-loads.t
1111t/02-minify.t
1212t/99-benchmark.t
Original file line number Diff line number Diff line change 11---
22name : JavaScript-Minifier-XS
3- version : 0.01_01
3+ version : 0.01_02
44author :
55 - Graham TerMarsch (cpan@howlingfrog.com)
66abstract : XS based JavaScript minifier
@@ -12,7 +12,7 @@ build_requires:
1212provides :
1313 JavaScript::Minifier::XS :
1414 file : lib/JavaScript/Minifier/XS.pm
15- version : 0.01_01
15+ version : 0.01_02
1616generated_by : Module::Build version 0.2805
1717meta-spec :
1818 url : http://module-build.sourceforge.net/META-spec-v1.2.html
File renamed without changes.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ require DynaLoader;
88our @ISA = qw( Exporter DynaLoader) ;
99our @EXPORT_OK = qw( minify) ;
1010
11- our $VERSION = ' 0.01_01 ' ;
11+ our $VERSION = ' 0.01_02 ' ;
1212
1313bootstrap JavaScript::Minifier::XS $VERSION ;
1414
You can’t perform that action at this time.
0 commit comments