Meteor - many bugs after updating to v0.9.1

I have been working on the Meteor project for a month and then yesterday I was asked to update Meteor v0.9.1. After that, when I run my application with meteor

, it throws a lot of errors in the client console. Here they are:

Uncaught TypeError: undefined is not a function iron-dynamic-template.js:416
Uncaught TypeError: Cannot read property 'prototype' of undefined helpers.js:139
Uncaught TypeError: undefined is not a function router.js:61
Uncaught TypeError: Cannot read property 'RouteController' of undefined global-imports.js:3
Uncaught ReferenceError: Template is not defined template.layout.js:2
Uncaught ReferenceError: Template is not defined template.header.js:2
Uncaught ReferenceError: Template is not defined template.404.js:2
Uncaught ReferenceError: Meteor is not defined meteor-streams.js:1
Uncaught ReferenceError: Router is not defined route.js:1
Uncaught ReferenceError: Template is not defined layout.js:1
Uncaught ReferenceError: Template is not defined header.js:1
Uncaught TypeError: undefined is not a function about.js:2
Uncaught ReferenceError: Template is not defined chat_box.js:1
Uncaught ReferenceError: Template is not defined chat_rooms.js:1
Uncaught ReferenceError: Template is not defined user_profile.js:1
Uncaught ReferenceError: Meteor is not defined messages.js:1
Uncaught ReferenceError: Meteor is not defined rooms.js:1
Uncaught ReferenceError: Meteor is not defined utilities.js:1
Uncaught ReferenceError: TypingUsersStream is not defined main.js?ddb2df78e0fe11ef747b14020685864d14f8bd03:5
Uncaught ReferenceError: Spacebars is not defined login_buttons_dialogs.html:4

      

I have tried many ways, but none of them work :( Hope you guys can help! I will be very grateful for that. Thanks in advanced!

+3


source to share


2 answers


UPDATE I just solved the problem by uninstalling the package iron-router

, then installing the package iron:router

. Hope this helps others, I have the same problem as I do :)



+8


source


that's the problem with issue 0.9.1 and the fix released by the Meteor team. Upgrading to 0.9.1.1 should resolve this.



https://groups.google.com/forum/#!topic/meteor-talk/nYw4Vyae9rw

0


source







All Articles