Working with BowerCombining Bower scripts and CSS

→ grunt wiredep

→ inject Bower packages into your source code with Grunt

npm install --save-dev grunt-wiredep
// grunfile.js

(...)
  //nouvelle tâche
  wiredep: {
    task: {
      src: 'builds/development/**/*.html',
    },
  },

(...)
grunt.loadNpmTasks('grunt-wiredep');
(...)
grunt.registerTask('default', ['wiredep', 'concat', 'sass', 'connect', 'watch']);
// index.html par ex

// css
<!-- bower:css  -->
<!-- endbower -->

// js
<!-- bower:js -->
<!-- endbower -->