I have a custom loader for my css and javascript functions.
as such.
when I am ready I have a list of css and another of javascript files.
I am looking for a way that I can then call a function and it will output a path to a compressed and combined css and js file.
so.
something like
load::css('master');
load::css('links');
load::css('buttons');
load::css();
(calling load:css() without any params should generate the minified css link)
What classes do you suggest for doing this?