Ionicons font miss after grunt

Hello,

I installed with bower ionicons to my project (Web), however after running grunt the folder fonts with ionicons.eot, svg, ttf and wof are missed. Do I need to add something to Gruntfile.js?

image

Thanks

ok, fixed,

added to Gruntfile.js:

// Copies remaining files to places other tasks can use
    copy: {
      dist: {
        files: [{
          expand: true,
          cwd: 'bower_components/ionicons',
          src: 'fonts/*',
          dest: '<%= yeoman.dist %>'
        }]
       ...
    },