I\'m using Gulp and the main-bower-files to bundle my bower dependencies.
I need to ensure that jQuery is included before AngularJS, but since the Angular bower pack
You can override angulars dependencies in your project bower.json:
bower.json
https://github.com/ck86/main-bower-files#overrides-options
{ ... "overrides": { "angular": { "dependencies": { "jquery": "~1.8" } } } }