¿Por qué Yeoman construye sin / styles / fonts?

despues de corrergrunt build Me quedo sinfonts directorio dentrodist/styles. ¿Qué estoy haciendo mal?

Esto es lo que tengo en elGruntfile.js:

    compass: {
        options: {
            sassDir: '<%= yeoman.app %>/styles',
            cssDir: '.tmp/styles',
            imagesDir: '<%= yeoman.app %>/../images',
            javascriptsDir: '<%= yeoman.app %>/scripts',
            fontsDir: '<%= yeoman.app %>/../styles/fonts',
            importPath: 'app/bower_components',
            relativeAssets: true,
        },
        dist: {
            options: {
                imagesDir: '<%= yeoman.dist %>/images',
                fontsDir: '<%= yeoman.app %>/../styles/fonts'
            }
        },
        server: {
            options: {
                debugInfo: true
            }
        }
    },

Respuestas a la pregunta(1)

Su respuesta a la pregunta