Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor - Error: no such package: 'blaze'

While working on meteor I suddenly found this error

            quackadmin@quack:~/quack$ sudo meteor
            [[[[[ ~/quack ]]]]]

            => Started proxy.
            => Meteor 0.8.3 is available. Update this project with 'meteor update'.
            => Started MongoDB.
            => Errors prevented startup:

            While building package `iron-dynamic-template`:
            error: no such package: 'blaze'

            => Your application has errors. Waiting for file change.

It seems someone suddenly did an update on the iron-package and broke it. Anyone know how to resolve this. I spent ages on this and now can't get through this error.

I tried setting a manual version but that doesn't seem to work as well. Meteor has so much undocumented magic going on.

like image 282
Yi-Wei Ang Avatar asked Dec 25 '22 06:12

Yi-Wei Ang


1 Answers

Iron Router 0.8.1 needs Meteor 0.8.3 to work.

To fix this just run:

meteor update

This updates the project to use Meteor 0.8.3 (the current release as at the time of this answer)

like image 139
Tarang Avatar answered Jan 19 '23 08:01

Tarang