Is it possible to mix file types and add filters with a single bundle e.g.
css = Bundle(
'css/reset.css',
'css/style.css',
'css/fancybox.css',
'css/custom.less',
output='gen/packed.css',
filters=['less']
)
I want all css and less outputed to the same file i.e. gen/packed.css
You need to setup the bundle like this:
http://elsdoerfer.name/docs/webassets/css_compilers.html