Skip to content

Commit

Permalink
Fix bower directory name.
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneys committed Jan 28, 2015
1 parent 1c8c766 commit 47cdab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/common/Gruntfile.js
Expand Up @@ -176,7 +176,7 @@ module.exports = function (grunt) {
imagesDir: '<%%= yeoman.app %>/<%%= yeoman.images %>',
javascriptsDir: '<%%= yeoman.app %>/<%%= yeoman.scripts %>',
fontsDir: '<%%= yeoman.app %>/<%%= yeoman.styles %>/fonts',
importPath: '<%%= yeoman.app %>/lib',
importPath: '<%%= yeoman.app %>/bower_components',
httpImagesPath: '/<%%= yeoman.images %>',
httpGeneratedImagesPath: '/<%%= yeoman.images %>/generated',
httpFontsPath: '/<%%= yeoman.styles %>/fonts',
Expand Down

1 comment on commit 47cdab3

@dschi
Copy link

@dschi dschi commented on 47cdab3 Jan 30, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This breaks the bower css insert here https://github.com/SidneyS/generator-ionic/blob/master/app/index.js#L210.
I also needed to make this change in order to get the correct font folder replacement

cssmin: {
      options: {
        //root: '<%= yeoman.app %>',
        noRebase: true
      }
    },

I found this hint here yeoman/yeoman#824 (comment)

Please sign in to comment.