when i run grunt serve it will send msg below and server doesnt run
Running "wiredep:app" (wiredep) task Cannot find where you keep your Bower packages
I went through google found out solution to comment
wiredep: {
options: {
//cwd: '<%= yeoman.app %>'
},
app: {
src: ['<%= yeoman.app %>/index.html'],
ignorePath: /\.\.\//
},
sass: {
src: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
ignorePath: /(\.\.\/){1,2}bower_components\//
}
}
but still get same msg
thanks