app找不到Bower软件包

app找不到Bower软件包

本文介绍了Grunt wiredep:app找不到Bower软件包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

yo离子



来自



然后开始 grunt serve 我有这个:

运行wiredep:app(wiredep)任务


找不到您的Bower软件包的位置



我卡住了,无法预览应用程序。

解决方案

我更新grunt-wiredep
npm install --save-dev grunt-wiredep
然后运行bower install
bower install jquery --save

我调用Grunt任务
grunt wiredep
并且它没有完成任何错误,最后我可以运行 grunt serve


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.

解决方案

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

这篇关于Grunt wiredep:app找不到Bower软件包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 22:08