Why does bower not seem to install the missing dependencies with `bower install`? -


i'm trying install ember-cli-foundation-sass in new ember-cli app. error:

$ ember server --proxy http://localhost:3000  missing bower packages: package: jquery   * specified: ^1.11.1   * installed: 2.1.4  run `bower install` install missing dependencies. 

i run bower install recommends, when start server, see same error message.

what can install jquery 1.11.1?

you can use bower install jquery!

bower install jquery 

...or if need install version, use

bower install http://code.jquery.com/jquery-<version>.min.js 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -