Meteor update to 0.8.3 breaks app

廉价感情. 提交于 2019-12-05 23:50:28
saimeunt

The problem is that running mrt update has updated iron:router to the latest version (0.9.1), which is only compatible with meteor 0.9 release candidates (see the explanation here : Installation issues with iron-router (newest) on Windows 7 x64 (Meteor 0.8.3)).

What you need to do is downgrading iron-router to 0.8.2 which is compatible with meteor 0.8.3.

To do so, you'll have to modify your smart.json like this :

{
  "packages": {
    "iron-router":{
      "version": "0.8.2"
    }
}

Then clean your project by removing smart.lock and run mrt install to make sure meteorite has accounted for the change.

If everything is OK the iron-router version symlinked in your project packages folder should point to iron-router@0.8.2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!