I have installed all my cordova plugins using the following syntax:
cordova plugin add <plugin-name>
I know (now) that if you add the --save flag to your install command, it will add your plugins to config.xml
cordova plugin add <plugin-name> --save
But, is there a lazy way to automatically add my already installed plugins to config.xml with something like this:
cordova plugin save-installed
If I am missing something obvious here, don't be shy to point me in the right direction.