这可能是一个相当笼统的问题:如何处理流星中不兼容的包? 在我的情况下,我使用了测试套件velocity和jasmine,它与当前版本的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但是,我没有找到任何关于如何操作的信息。
答案 0 :(得分:0)
我可以使用以下方法在特定版本上安装软件包:
meteor add yogiben:autoform-file@=0.3.0
这对我有用。