Angular Meteor 1.2 Template Conflict

I just upgraded to angular-meteor 1.2. I also updated the angular package. The application does not start. I get the following error message:

**error: conflict: two packages included in the app (angular-templates and templating) are both trying to handle *.html** 

I could not find a package named "templating" when I tried to remove it. Any ideas?

+6
source share
4 answers

I also ran into this problem today and meteor remove meteor-platform solved the problem for me. Removing the meteor-platform causes templating also be removed from the project that resolved the conflict. Hope this helps!

EDIT

There are two others that may require removal according to Step 0 of the Angular-Meteor tutorial ; these are blaze-html-templates and ecmascript if they occur in your package list. Angular-Meteor 1.2 has some important changes regarding template handling.

+11
source

meteor remove blaze-html-templates

meteor remove extern

Run the command above to remove these conflicting packages and your application should work fine.

+2
source

Meteor 1.2.x

find out what packages you have

 meteor list 

it will display all the packages and then find the template package

e.g. blaze-html-templates etc.

 meteor remove blaze-html-templates 
+2
source

I had to remove angular -with-blaze to fix this problem.

 meteor remove angular-with-blaze 

It would be nice to be able to list package dependencies as described in this query enhancement .

+1
source

All Articles