Web::Library::SimpleAssets - Moose role for simple assets
package Web::Library::Bootstrap; use Moose; with qw(Web::Library::Provider Web::Library::SimpleAssets); sub version_map { +{ default => { css => ['/css/bootstrap.min.css'], javascript => ['/js/bootstrap.min.js'], } }; }
This Moose role is used by distributions that wrap a client-side library. If you just use Web::Library normally, you do not need it.