How to add newest fixes in a cordova plugin

Hi!
In my Meteor project I’m using the cordova-plugin-geofence as a package. Since its latest release version is 0.5.0, I added it using “meteor add cordova:cordova-plugin-geofence@0.5.0”. This works fine.

However, the plugin has some bugs which were fixed in later commits. Is there a way to update the plugin to be at HEAD (as in, to include those latest commits)?

If not, is there a right way for me to change the plugin locally and use that local version?

Many thanks!

You can use the Github URL syntax to point to a specific commit, as explained here:

Thanks! This seems to have worked :).

1 Like
meteor add cordova:cordova-plugin-geofence@https://github.com/cowbell/cordova-plugin-geofence/tarball/861bc13687f73eb0e5c77077b5fde91b4ef5df91
1 Like