# HG changeset patch # User rougeronj # Date 1427470410 -3600 # Node ID 5eab9718182b28f5fd23a150c294ea96935fc7aa # Parent 14dbcea2b54322ee1e1b383f07ac0e9c9cd4cc2c FIX and update the client dev environment - update bootstrap - ignore index.js files and every file from bootstrap beside the css diff -r 14dbcea2b543 -r 5eab9718182b client/bower.json --- a/client/bower.json Fri Mar 27 16:31:42 2015 +0100 +++ b/client/bower.json Fri Mar 27 16:33:30 2015 +0100 @@ -19,6 +19,6 @@ "angular-route": "~1.3", "angular-resource": "~1.3", "angular-bootstrap": "~0.11.0", - "bootstrap": "~3.1.1" + "bootstrap": "~ 3.3.4" } } diff -r 14dbcea2b543 -r 5eab9718182b client/gulpfile.js --- a/client/gulpfile.js Fri Mar 27 16:31:42 2015 +0100 +++ b/client/gulpfile.js Fri Mar 27 16:33:30 2015 +0100 @@ -54,12 +54,15 @@ var vendorJSsrc = [ '!./bower_components/**/*.min.js', - '!./bower_components/bootstrap/Gruntfile.js', - '!./bower_components/bootstrap/grunt/*', - '!./bower_components/bootstrap/js/*', + '!./bower_components/bootstrap/**/*', '!./bower_components/jquery/src/**/*', - '!./bower_components/angular-bootstrap/ui-bootstrap.js', + '!./bower_components/**/index.js', + './bower_components/bootstrap/dist/css/*', './bower_components/jquery/dist/jquery.js', + './bower_components/angular/angular.js', + './bower_components/angular-route/angular-route.js', + './bower_components/angular-resource/angular-resource.js', + './bower_components/angular-bootstrap/ui-bootstrap.js', './bower_components/**/*.js' ];