I'm trying to use a third party commercial JS library in my angular-meteor project The vendor just informed me, that they only support angular version 1.3.11
Is there a way to install urigu:angular-meteor with this specific version of angular?
I'm trying to use a third party commercial JS library in my angular-meteor project The vendor just informed me, that they only support angular version 1.3.11
Is there a way to install urigu:angular-meteor with this specific version of angular?
According to the meteor documentation you can set a version using
@=
so it should be like that:However, doing so you might have versions conflict like that:
So you have here few alternatives:
Since
angular
is much more mature thatangular-meteor
and 1.3.11 to 1.3.15 should not have breaking changes, this option have a clear advantage.If you do wish to use the first option, add
--allow-incompatible-update
to the command line.