到目前为止,我已将"foundation": "^5.5.0"
放入我的bower.json中,但我现在想升级到第6版,当我用5.5.0替换5.5.0时,bower没有找到它(并启动bower安装)。
我该怎么做才能让它发挥作用?
答案 0 :(得分:1)
因为刚刚发布它们可能还没有在线更新bower包列表,现在就这样使用它(基础版本6.1.2) 添加到您的bower.json
"foundation": "~5.5.3",
"foundation6": "https://github.com/zurb/foundation-sites.git"
然后运行命令bower install
答案 1 :(得分:1)
Foundation 6在bower(foundation-sites
)
使用bower install foundation-sites --save-dev
安装Foundation 6并将其保存到bower.json
文件中。