Mojolicious-Plugin-AssetPack
view release on metacpan or search on metacpan
lib/Mojolicious/Plugin/AssetPack/Guides/Developing.pod view on Meta::CPAN
It is possible to set environment variables to change the behavior of AssetPack:
=over 2
=item * MOJO_ASSETPACK_DEBUG
Set this environment variable to get more debug to STDERR. Currently you can
set it to a value between 0 and 3, where 3 provides the most debug.
=item * MOJO_ASSETPACK_LAZY
Set this environment variable if you want to delay processing the assets until
they are requested. This can be very useful while developing when the assets
are changed frequently.
=back
=head2 Faster development cycle
For a faster development cycle, you can use L<MOJO_ASSETPACK_LAZY>. This
environment variable will make AssetPack only rebuild the asset that is in use
on the current web page.
$ MOJO_ASSETPACK_LAZY=1 morbo myapp.pl
=head2 Enforcing production assets
To be sure that production assets are built correctly, you can add a unit test
like the one below. This is especially important if you are using
L</MOJO_ASSETPACK_LAZY>.
use Test::Mojo;
use Test::More;
$ENV{MOJO_MODE} = "production";
my $t = Test::Mojo->new("MyApp");
$t->get_ok("/")
->element_exists(q(head link[href$="/app.css"]))
->element_exists(q(body script[src$="/app.js"]));
done_testing;
The C<element_exists()> tests should match the topics defined when defining the
different assets.
=head1 Optional modules
There are some optional modules you might want to install:
=over 2
=item * L<CSS::Minifier::XS>
Used by L<Mojolicious::Plugin::AssetPack::Pipe::Css>.
=item * L<CSS::Sass>
Used by L<Mojolicious::Plugin::AssetPack::Pipe::Sass>.
=item * L<IO::Socket::SSL>
Required if you want to download assets served over SSL.
=item * L<JavaScript::Minifier::XS>
Used by L<Mojolicious::Plugin::AssetPack::Pipe::JavaScript>.
=back
=head1 SEE ALSO
L<Mojolicious::Plugin::AssetPack>,
L<Mojolicious::Plugin::AssetPack::Guides::Cookbook> and
L<Mojolicious::Plugin::AssetPack::Guides::Tutorial>.
=cut
( run in 0.659 second using v1.01-cache-2.11-cpan-39bf76dae61 )