无法 运行 从结帐中流星,因为 "No version of jquery satisfies all constraints: @1.11.10, @=3.0.0"
Cannot run meteor from a checkout because "No version of jquery satisfies all constraints: @1.11.10, @=3.0.0"
我的应用程序在正常的 Meteor 安装下运行良好。
但是当我 run from a git checkout 时,我得到 No version of jquery satisfies all constraints: @1.11.10, @=3.0.0
的错误。在 .meteor/packages
或 .meteor/versions
中都没有对版本 3.0.0
的引用。 运行 $ meteor list --tree
也没有显示任何引用。
我看到了 this forum thread,但是 none 提到的解决方案有效; jquery 某处仍然需要 3.0.0。
完整的错误是:
=> Errors prevented startup:
While selecting package versions:
error: No version of jquery satisfies all constraints: @1.11.10, @=3.0.0
Constraints on package "jquery":
* jquery@1.11.10 <- top level
* jquery@=3.0.0 <- top level
* jquery@1.0.1 <- blaze 2.0.3 <- blaze-html-templates 1.0.4
* jquery@1.11.4 <- msavin:mongol 7.0.1
* jquery@1.0.0 <- iron:dynamic-template 1.0.2 <- iron:controller 1.0.2 <- iron:router 1.1.2
* jquery@1.0.0 <- iron:location 1.0.2 <- iron:router 1.1.2
* jquery@1.0.0 <- peppelg:bootstrap-3-modal 1.0.0
* jquery@1.0.1 <- bartoftutormundi:tap-i18n 1.8.2
* jquery@1.0.1 <- chrismbeckett:toastr 2.1.2_1
* jquery@1.11.4 <- mdg:meteor-apm-agent 1.0.0
我发现在本地 Meteor 结帐中,packages/non-core/jquery/package.js
将其 version
列为 3.0.0
。只需将其更改为 1.11.10
即可解决问题。
这是无害的,因为这个版本号真的无关紧要。这个包所做的就是导出通过 npm
.
安装的任何 jquery
版本
接下来,我 运行 遇到了与 coffeescript
类似的问题,我用同样的方法解决了这个问题。 (我不太确定这是无害的,但就我而言,它没有引起明显的问题。)
我的应用程序在正常的 Meteor 安装下运行良好。
但是当我 run from a git checkout 时,我得到 No version of jquery satisfies all constraints: @1.11.10, @=3.0.0
的错误。在 .meteor/packages
或 .meteor/versions
中都没有对版本 3.0.0
的引用。 运行 $ meteor list --tree
也没有显示任何引用。
我看到了 this forum thread,但是 none 提到的解决方案有效; jquery 某处仍然需要 3.0.0。
完整的错误是:
=> Errors prevented startup:
While selecting package versions:
error: No version of jquery satisfies all constraints: @1.11.10, @=3.0.0
Constraints on package "jquery":
* jquery@1.11.10 <- top level
* jquery@=3.0.0 <- top level
* jquery@1.0.1 <- blaze 2.0.3 <- blaze-html-templates 1.0.4
* jquery@1.11.4 <- msavin:mongol 7.0.1
* jquery@1.0.0 <- iron:dynamic-template 1.0.2 <- iron:controller 1.0.2 <- iron:router 1.1.2
* jquery@1.0.0 <- iron:location 1.0.2 <- iron:router 1.1.2
* jquery@1.0.0 <- peppelg:bootstrap-3-modal 1.0.0
* jquery@1.0.1 <- bartoftutormundi:tap-i18n 1.8.2
* jquery@1.0.1 <- chrismbeckett:toastr 2.1.2_1
* jquery@1.11.4 <- mdg:meteor-apm-agent 1.0.0
我发现在本地 Meteor 结帐中,packages/non-core/jquery/package.js
将其 version
列为 3.0.0
。只需将其更改为 1.11.10
即可解决问题。
这是无害的,因为这个版本号真的无关紧要。这个包所做的就是导出通过 npm
.
jquery
版本
接下来,我 运行 遇到了与 coffeescript
类似的问题,我用同样的方法解决了这个问题。 (我不太确定这是无害的,但就我而言,它没有引起明显的问题。)