9

After running

yo ionic

from https://github.com/diegonetto/generator-ionic

Then lauching grunt serve i've got this :

Running "wiredep:app" (wiredep) task
Cannot find where you keep your Bower packages.

I'm stuck and I can't get a preview of the app.

arnaudlrx
  • 488
  • 1
  • 5
  • 12

2 Answers2

26

I update grunt-wiredep
npm install --save-dev grunt-wiredep
and then run a bower install
bower install jquery --save
I call the Grunt task
grunt wiredep
and it was done without any errors, finally i could run grunt serve

arnaudlrx
  • 488
  • 1
  • 5
  • 12
1

@arnaudlrx 's answer is correct but check if you instal git in your machine , because if you run

bower install jquery --save

but you don't have git installed there nothing will work

Ashraf Atef
  • 169
  • 1
  • 1
  • 8