Angular-meteor does not work with Meteor 1.3 update

I just upgraded the meteor app to Meteor 1.3, but now an error occurs, as shown below:

Uncaught Error: [$injector:modulerr] Failed to instantiate module angular-meteor

When breaking angular functions, below is the initialization code

angular.module('myApp',['angular-meteor','ui.router','ionic','ngCordova']);

I tried removing angular-meteor, but its error appears as angular twice.

+4
source share
3 answers

+ 1

So do I. It just took me 30 minutes to realize that it wasn’t me, going back to the previous version of my project. And workarounds at the moment?

+1
source

: "meteor add angular -meteor-auth@1.0.0" : "meteor update", angular.

+1

Please try the new version of angular-meteor 1.3.9_2and angular-meteor-auth 1.0.1. what should fix your problems.

0
source

All Articles