Ember : downgrading ember with bower install

偶尔善良 提交于 2019-12-10 14:59:29

问题


I've been switching to the 1.13.2 version of ember on a git branch, and now I want to come back to 1.11.1 when going back to an other branch.

I've been running npm install and bower install without failure.

But when I run ember server I run into the following error :

Missing bower packages: 
Package: ember
  * Specified: 1.11.1
  * Installed: 1.13.2

Run `bower install` to install missing dependencies.

Running bower install again does not solve the problem, neither does bower cache clean.


回答1:


Do

$ rm -rf bower_components
$ bower cache clean
$ bower install


来源:https://stackoverflow.com/questions/31167671/ember-downgrading-ember-with-bower-install

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!