I am trying to rebuild a cordova project from scratch and creating documentation along the way. I would like to be able to install consistent versions of plugins to avoid having to retest new code for the time being. Is there a way to specify a previous version of a plugin similar to the way you can specify a previous version of cordova? For example, I am familiar with the following syntax to install a specific version of cordova:
npm install -g [email protected]
And I'm able to install a plugin with the following syntax:
cordova plugin add org.apache.cordova.device
I would like to be able to so something like the following:
cordova plugin add [email protected]
Any insight including "not possible" would be helpful. Thanks!