I'm trying to make my wiredep work, (using grunt-wiredep)
But I am getting the following warning:
Warning: ENOENT: no such file or directory, open 'wrongpath/bower.json' Use --force to continue.
It seems like the task is looking for my bower.json at the wrong place,
grunt-wiredep version: "1.8.0",
Gruntfile config (used yeoman generator..) :
wiredep: {
app: {
src: ['<%= yeoman.app %>/index.html'],
ignorePath: /\.\.\//
},
sass: {
src: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
ignorePath: /(\.\.\/){1,2}bower_components\//
}
},
I followed following post while trying to solve my issue:
Grunt wiredep:app no such file or directory bower.json
tried downgrading to 1.7.0 - didn't work and upgrading to 1.9.0 - didn't work either.