我一直在尝试将依赖项写入 bower.json ,但每当我使用比较器(>
或<
)或通配符*
时,当我使用blah blah blah incompatible with *
时,我只收到消息bower list
或类似内容。
例如:
"requirejs": ">2.0.0"
我将requirejs#2.1.8 incompatible with >2.0.0
视为错误。
同样,如果我尝试:
"backbone": "*"
我得到backbone#1.0.0 incompatible with *
。
我不想在补丁号码上修复我的版本,只是在主要号码上。有没有办法做到这一点?我发现bower / semver文档明显无益。