> bower list
momentjs#2.2.1 (2.5.1 now available)
我去改变我的bower.json到
{
"version": "0.0.0",
"dependencies": {
"momentjs": "~2.5.1",
...
然后运行
> bower cache clean
> bower update momentjs
bower installing momentjs#2.2.1
为什么我得到2.2.1而不是2.5.1?我在这里误解了一些基础吗?
答案 0 :(得分:1)
帮助页面指出update
命令:
根据bower.json
将已安装的软件包更新到最新版本
~
将only lookup patch versions in the current minor version range("预发布"),例如1.2.3 => 1.2.7
。
更新次要版本,例如1.2.3 = > 1.3.5
,请改用bower install <package>
。