有没有办法用 bower 安装 fundation 6
Is there a way to install fundation 6 with bower
到目前为止,我将 "foundation": "^5.5.0"
放入我的 bower.json,但我现在想升级到第 6 版,当我将 5.5.0 替换为 6.0.0 时,bower 没有找到它(并开始安装凉亭)。
我应该怎么做才能让它发挥作用?
因为刚刚发布他们可能还没有在线更新bower包列表,现在这样使用它(基础版本6.1.2)
添加到您的 bower.json
"foundation": "~5.5.3",
"foundation6": "https://github.com/zurb/foundation-sites.git"
然后运行命令bower install
Foundation 6 在 bower (foundation-sites
) 上使用了一个新包
使用 bower install foundation-sites --save-dev
安装 Foundation 6 并将其保存到您的 bower.json
文件中。
到目前为止,我将 "foundation": "^5.5.0"
放入我的 bower.json,但我现在想升级到第 6 版,当我将 5.5.0 替换为 6.0.0 时,bower 没有找到它(并开始安装凉亭)。
我应该怎么做才能让它发挥作用?
因为刚刚发布他们可能还没有在线更新bower包列表,现在这样使用它(基础版本6.1.2) 添加到您的 bower.json
"foundation": "~5.5.3",
"foundation6": "https://github.com/zurb/foundation-sites.git"
然后运行命令bower install
Foundation 6 在 bower (foundation-sites
) 上使用了一个新包
使用 bower install foundation-sites --save-dev
安装 Foundation 6 并将其保存到您的 bower.json
文件中。