in gulpfile.js
gulp.watch(['app/styles/**/*.scss', 'app/styles/**/*.css'], ['styles', 'scripts', reload]);
should be
gulp.watch(['app/styles/**/*.scss', 'app/styles/**/*.css'], ['bundle', reload]);
otherwise everytime you change something in a CSS file, the bower scripts are missing.