Make Gruntmaster::Page::Base::variants not need overriding
[gruntmaster-page.git] / lib / Gruntmaster / Page / JS.pm
1 package Gruntmaster::Page::JS;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use Gruntmaster::Page::Base;
7 our @ISA = qw/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
9
10 use File::Slurp qw/read_file/;
11 use JavaScript::Minifier::XS qw/minify/;
12
13 sub generate{
14 my ($self, $format, $env) = @_;
15 debug $env => "";
16 my $js;
17 $js .= read_file $_ for <js/*.js>;
18 [200, ['Content-Type' => 'application/javascript', 'Cache-Control' => 'public, max-age=604800', 'X-Forever' => 1], [minify $js] ]
19 }
20
21 1
This page took 0.022451 seconds and 4 git commands to generate.