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?
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!
meteor remove meteor-platform
meteor-platform
templating
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.
blaze-html-templates
ecmascript
meteor remove blaze-html-templatesmeteor remove extern
meteor remove blaze-html-templates
meteor remove extern
Run the command above to remove these conflicting packages and your application should work fine.
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.
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 .