From 7d3938cf9882ff6fb0ef2c74a98ce3124afa444f 2013-04-29 04:09:32 From: Brian E. Granger Date: 2013-04-29 04:09:32 Subject: [PATCH] Put back the components fab function as we can still use it. --- diff --git a/IPython/frontend/html/notebook/fabfile.py b/IPython/frontend/html/notebook/fabfile.py index 8f332f5..3285ac8 100644 --- a/IPython/frontend/html/notebook/fabfile.py +++ b/IPython/frontend/html/notebook/fabfile.py @@ -8,6 +8,11 @@ static_dir = 'static' components_dir = os.path.join(static_dir,'components') +def components(): + """install components with bower""" + with lcd(static_dir): + local('bower install') + def css(minify=True): """generate the css from less files""" if minify not in ['True', 'False', True, False]: