Reputation: 6462
So far I put "foundation": "^5.5.0"
in my bower.json, but I now want to upgrade to the 6th version and bower don't found it when I replace 5.5.0 by 6.0.0 (and start bower install).
What should I do in order to make it work?
Upvotes: 0
Views: 116
Reputation: 2142
Foundation 6 uses a new package on bower (foundation-sites
)
Use bower install foundation-sites --save-dev
to install Foundation 6 and save it to your bower.json
file.
Upvotes: 1
Reputation: 112
Because its just released they probably have not updated the bower package list online, For now use it like this (foundation version 6.1.2) add to your bower.json
"foundation": "~5.5.3",
"foundation6": "https://github.com/zurb/foundation-sites.git"
then run command bower install
Upvotes: 1