meteor 中的不兼容包(autoform-file 和 velocity)

Incompatible packages in meteor (autoform-file and velocity)

这可能是一个相当笼统的问题:如何处理流星中的不兼容包? 在我的例子中,我使用的是测试套件 velocity and jasmine, which is not compatible with the current version of autoform-file 包。 由于以下错误,我的 html-reporter 将继续执行测试而不会实际获得结果:

错误阻止启动:

While selecting package versions:
error: Potentially incompatible change required to top-level dependency: yogiben:autoform-file 0.3.0, was 0.4.2.
Constraints on package "yogiben:autoform-file":

To allow potentially incompatible changes to top-level dependencies, you must pass --allow-incompatible-update on the command line.

Your application has errors. Waiting for file change.

我正在考虑将 autoform-file 包降级到 0.3.0,但是,我没有找到有关如何操作的任何信息。

我能够使用以下方法安装特定版本的软件包:

meteor add yogiben:autoform-file@=0.3.0

这对我有用。