add Cordova plugin to Meteor from local path

Viewed 1248

I have created a Cordova plugin, which I need to add to my Meteor project. I've tried various forms of:

meteor add cordova:/local/path/to/plugin

I've also tried committing this plugin to git, so that I could try things like:

meteor add cordova:https://marcadonis@bitbucket.org/project/pluginname.git@1.0.0

to which Meteor replies:

Meteor requires either an exact version (e.g. https://marcadonis@1.0.0), a Git URL with a SHA reference, or a local path.

Of course, I'd be happy to use a local path, if I only knew how.

Is this "meteor add" command documented somewhere?

1 Answers
Related