*************
* Setting name ``EXTRA_BUNDLES`` is deprecated and **will be removed in a futur release**. In project settings rename it to ``BUNDLES``;
* Remove ``optimus.builder.assets.COMMON_BUNDLES``, this was containing default bundles that was not really useful. If your project used them, you will have errors on page building about missing bundles, you can recover them in your ``settings.BUNDLES`` from : ::
COMMON_BUNDLES = {
'css_screen_common': Bundle(
'css/screen.css',
filters='yui_css',
output='css/screen.min.css'
),
'css_ie_common': Bundle(
'css/ie.css',
filters='yui_css',
output='css/ie.min.css'
),
'js_ie_common': Bundle(
'js/modernizr.custom.js',
'js/respond.src.js',
filters='yui_js',
output='js/ie.min.js'
),
'js_jquery': Bundle(
'js/jquery/jquery-1.7.1.js',
filters='yui_js',
output='js/jquery.min.js'
),
}