Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルタイプを混在させ、単一のバンドルでフィルターを追加することは可能ですか?
css = Bundle( 'css/reset.css', 'css/style.css', 'css/fancybox.css', 'css/custom.less', output='gen/packed.css', filters=['less'] )
すべての css と以下を同じファイルに出力したい、つまりgen/packed.css
gen/packed.css
次のようにバンドルをセットアップする必要があります。
css = Bundle( 'css/reset.css', 'css/style.css', 'css/fancybox.css', Bundle('css/*.less', filters='less', debug=False) output='gen/packed.css' )
http://elsdoerfer.name/docs/webassets/css_compilers.html